diff --git a/pages/docs/features/model-integration/page.tsx b/pages/docs/features/model-integration/page.tsx
index 724bbc5..49497e1 100644
--- a/pages/docs/features/model-integration/page.tsx
+++ b/pages/docs/features/model-integration/page.tsx
@@ -56,12 +56,12 @@ export default function ModelIntegration() {
- 🛡️ qwen-plus (qwen3)
+ 🛡️ qwen3
合规,低成本
- - • 安全合规,便宜,速度快
- - • ToolCall 有出错率,不出错时效果尚可
+ - • 安全合规
+ - • ToolCall 有出错率,自动重试
-
• 适合能给出详细步骤的场景
@@ -77,28 +77,22 @@ export default function ModelIntegration() {
- gpt-4.1-mini
-
-
- gpt-4.1
+ gpt-4.1-mini/4.1
gpt-5
- gpt-5-mini
+ grok-4/grok-code-fast
- qwen-plus
+ qwen3
- deepseek-v3.1
+ deepseek-v3.1/3.2
- claude-4-sonnet
-
-
- claude-3.7-sonnet
+ claude-4-sonnet/4.5/3.7/haiku-4.5
@@ -118,7 +112,7 @@ export default function ModelIntegration() {
有概率出错,需要频繁重试
小模型、nano 模型,效果不佳
- Gemini 官方提供的 OpenAI 接口 tool call 部分不兼容
+ TODO: Gemini 官方提供的 OpenAI 接口 tool call 部分不兼容
@@ -130,33 +124,16 @@ export default function ModelIntegration() {
const pageAgent = new PageAgent({
baseURL: 'https://dashscope.aliyuncs.com/compatible-mode/v1',
apiKey: 'your-api-key',
- modelName: 'qwen-plus'
+ model: 'qwen-plus'
});
// 私有部署模型
const pageAgent = new PageAgent({
baseURL: 'http://localhost:11434/v1',
- apiKey: 'ollama', // Ollama 通常使用任意值
- modelName: 'qwen3:latest'
+ apiKey: 'N/A', // Ollama 通常使用任意值
+ model: 'qwen3:latest'
});`}
/>
-
-
-
- 💡 配置说明
-
-
- -
- baseURL: API 服务地址,默认为 OpenAI 官方地址
-
- -
- apiKey: API 密钥,必填参数
-
- -
- modelName: 模型名称,默认为 gpt-4.1-mini
-
-
-
)
}