跳至主要內容

Zhipu AI 標誌Zhipu AI

透過 Mastra 的模型路由器存取 13 個 Zhipu AI 模型。系統會自動使用 ZHIPU_API_KEY 環境變數進行驗證。

詳情請參閱Zhipu AI 文件

.env
ZHIPU_API_KEY=your-api-key
src/mastra/agents/my-agent.ts
import { Agent } from '@mastra/core/agent'

const agent = new Agent({
id: 'my-agent',
name: 'My Agent',
instructions: 'You are a helpful assistant',
model: 'zhipuai/glm-4.5',
})

// Generate a response
const response = await agent.generate('Hello!')

// Stream a response
const stream = await agent.stream('Tell me a story')
for await (const chunk of stream) {
console.log(chunk)
}
資訊

Mastra 使用與 OpenAI 相容的 /chat/completions 端點。部分 Provider 專屬功能可能無法使用,詳情請參閱Zhipu AI 文件

模型
模型 的直接連結

ModelContextToolsReasoningImageAudioVideoInput $/1MOutput $/1M
zhipuai/glm-4.5131K$0.60$2
zhipuai/glm-4.5-air131K$0.20$1
zhipuai/glm-4.5-flash131K
zhipuai/glm-4.5v64K$0.60$2
zhipuai/glm-4.6205K$0.60$2
zhipuai/glm-4.6v128K$0.30$0.90
zhipuai/glm-4.7205K$0.60$2
zhipuai/glm-4.7-flash200K
zhipuai/glm-4.7-flashx200K$0.07$0.40
zhipuai/glm-5205K$1$3
zhipuai/glm-5.1200K$1$4
zhipuai/glm-5.21.0M$1$4
zhipuai/glm-5v-turbo200K$5$22
13 available models

進階設定
進階設定 的直接連結

自訂標頭
自訂標頭 的直接連結

src/mastra/agents/my-agent.ts
const agent = new Agent({
id: 'custom-agent',
name: 'custom-agent',
model: {
url: 'https://open.bigmodel.cn/api/paas/v4',
id: 'zhipuai/glm-4.5',
apiKey: process.env.ZHIPU_API_KEY,
headers: {
'X-Custom-Header': 'value',
},
},
})

動態選擇模型
動態選擇模型 的直接連結

src/mastra/agents/my-agent.ts
const agent = new Agent({
id: 'dynamic-agent',
name: 'Dynamic Agent',
model: ({ requestContext }) => {
const useAdvanced = requestContext.task === 'complex'
return useAdvanced ? 'zhipuai/glm-5v-turbo' : 'zhipuai/glm-4.5'
},
})