Makers Models 服务不为用户提供智谱厂商密钥和商业化计费能力,您必须在控制台页面绑定该厂商的 API Key 后才能调用其模型。
如下为模型以及 model 传参示例:
模型 | 传入 model 参数 |
glm-5.1 | zai/glm-5-1 |
glm-5 | zai/glm-5 |
glm-4.7 | zai/glm-4-7 |
glm-4.7-flashx | zai/glm-4-7-flashx |
glm-4.6 | zai/glm-4-6 |
调用示例
SDK
使用 AI SDK
// Node.js 18+import { createAiGateway } from "@edgeone/makers-models-provider";import { generateText } from "ai";const aiGateway = createAiGateway({apiKey: process.env.MAKERS_MODELS_KEY,});const { text } = await generateText({model: aiGateway("zai/glm-5-1"),prompt: "What can you do?",});
使用 OpenAI JS SDK
import OpenAI from "openai";const client = new OpenAI({apiKey: process.env.MAKERS_MODELS_KEY,baseURL: "https://ai-gateway.edgeone.link/v1",});const completion = await client.chat.completions.create({model: "zai/glm-5-1",messages: [{ role: "user", content: "What can you do?" }],});
使用 Anthropic JS SDK
// Node.js 18+import Anthropic from "@anthropic-ai/sdk";const client = new Anthropic({apiKey: process.env.MAKERS_MODELS_KEY,baseURL: "https://ai-gateway.edgeone.link",});const message = await client.messages.create({model: "zai/glm-5-1",messages: [{ role: "user", content: "What can you do?" }],});console.log(message.content[0].text);
cURL
使用 OpenAI Chat Completions API 请求
curl -i -X POST "https://ai-gateway.edgeone.link/v1/chat/completions" \\-H "Authorization: Bearer {MAKERS_MODELS_KEY}" \\-H "Content-Type: application/json" \\-d '{"model": "zai/glm-5-1","messages": [{"role": "user","content": "What can you do?"}]}'
使用 Anthropic Messages API 请求
curl -i -X POST "https://ai-gateway.edgeone.link/v1/messages" \\-H "X-Api-Key: {MAKERS_MODELS_KEY}" \\-H "Content-Type: application/json" \\-d '{"model": "zai/glm-5-1","messages": [{"role":"user","content":"What can you do?"}]}'