跳至主要內容

SiliconFlow 標誌SiliconFlow

透過 Mastra 的模型路由器存取 49 個 SiliconFlow 模型。系統會自動使用 SILICONFLOW_API_KEY 環境變數完成身分驗證。

如需進一步了解,請參閱SiliconFlow 文件

.env
SILICONFLOW_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: 'siliconflow/ByteDance-Seed/Seed-OSS-36B-Instruct',
})

// 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 endpoint。部分 Provider 特有功能可能無法使用,詳情請參閱SiliconFlow 文件

模型
「模型」的直接連結

ModelContextToolsReasoningImageAudioVideoInput $/1MOutput $/1M
siliconflow/baidu/ERNIE-4.5-300B-A47B131K$0.28$1
siliconflow/ByteDance-Seed/Seed-OSS-36B-Instruct262K$0.21$0.57
siliconflow/deepseek-ai/DeepSeek-R1164K$0.50$2
siliconflow/deepseek-ai/DeepSeek-V3164K$0.25$1
siliconflow/deepseek-ai/DeepSeek-V3.1164K$0.27$1
siliconflow/deepseek-ai/DeepSeek-V3.1-Terminus164K$0.27$1
siliconflow/deepseek-ai/DeepSeek-V3.2164K$0.27$0.42
siliconflow/deepseek-ai/DeepSeek-V3.2-Exp164K$0.27$0.41
siliconflow/deepseek-ai/DeepSeek-V4-Flash1.0M$0.14$0.28
siliconflow/deepseek-ai/DeepSeek-V4-Pro1.0M$2$3
siliconflow/google/gemma-4-26B-A4B-it262K$0.12$0.40
siliconflow/google/gemma-4-31B-it262K$0.13$0.40
siliconflow/inclusionAI/Ling-flash-2.0131K$0.14$0.57
siliconflow/MiniMaxAI/MiniMax-M2.5197K$0.30$1
siliconflow/moonshotai/Kimi-K2.5262K$0.45$2
siliconflow/moonshotai/Kimi-K2.6262K$0.77$4
siliconflow/openai/gpt-oss-120b131K$0.05$0.45
siliconflow/openai/gpt-oss-20b131K$0.04$0.18
siliconflow/Qwen/Qwen2.5-72B-Instruct33K$0.59$0.59
siliconflow/Qwen/Qwen2.5-7B-Instruct33K$0.05$0.05
siliconflow/Qwen/Qwen3-14B131K$0.07$0.28
siliconflow/Qwen/Qwen3-235B-A22B-Thinking-2507262K$0.13$0.60
siliconflow/Qwen/Qwen3-30B-A3B-Instruct-2507262K$0.09$0.30
siliconflow/Qwen/Qwen3-32B131K$0.14$0.57
siliconflow/Qwen/Qwen3-8B131K$0.06$0.06
siliconflow/Qwen/Qwen3-Coder-30B-A3B-Instruct262K$0.07$0.28
siliconflow/Qwen/Qwen3-Coder-480B-A35B-Instruct262K$0.25$1
siliconflow/Qwen/Qwen3-VL-235B-A22B-Instruct262K$0.30$2
siliconflow/Qwen/Qwen3-VL-235B-A22B-Thinking262K$0.45$4
siliconflow/Qwen/Qwen3-VL-30B-A3B-Instruct262K$0.29$1
siliconflow/Qwen/Qwen3-VL-30B-A3B-Thinking262K$0.29$1
siliconflow/Qwen/Qwen3-VL-32B-Instruct262K$0.20$0.60
siliconflow/Qwen/Qwen3-VL-32B-Thinking262K$0.20$2
siliconflow/Qwen/Qwen3-VL-8B-Instruct262K$0.18$0.68
siliconflow/Qwen/Qwen3.5-122B-A10B262K$0.26$2
siliconflow/Qwen/Qwen3.5-27B262K$0.25$2
siliconflow/Qwen/Qwen3.5-35B-A3B262K$0.24$2
siliconflow/Qwen/Qwen3.5-397B-A17B262K$0.39$2
siliconflow/Qwen/Qwen3.5-9B262K$0.10$0.15
siliconflow/Qwen/Qwen3.6-27B262K$0.30$3
siliconflow/Qwen/Qwen3.6-35B-A3B262K$0.20$2
siliconflow/stepfun-ai/Step-3.5-Flash262K$0.10$0.30
siliconflow/tencent/Hunyuan-A13B-Instruct131K$0.14$0.57
siliconflow/tencent/Hy3-preview262K$0.07$0.26
siliconflow/zai-org/GLM-4.5-Air131K$0.14$0.86
siliconflow/zai-org/GLM-5205K$0.95$3
siliconflow/zai-org/GLM-5.1205K$1$4
siliconflow/zai-org/GLM-5.21.0M$1$4
siliconflow/zai-org/GLM-5V-Turbo200K$1$4
49 available models

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

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

src/mastra/agents/my-agent.ts
const agent = new Agent({
id: 'custom-agent',
name: 'custom-agent',
model: {
url: 'https://api.siliconflow.com/v1',
id: 'siliconflow/ByteDance-Seed/Seed-OSS-36B-Instruct',
apiKey: process.env.SILICONFLOW_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
? 'siliconflow/zai-org/GLM-5V-Turbo'
: 'siliconflow/ByteDance-Seed/Seed-OSS-36B-Instruct'
},
})