DEEIX Chat 是一款全新的高性能、高颜值、低占用的 AI 对话平台,可自托管部署,最低仅需 64MB 内存!
配置的位置在 管理员页面-模型-编辑模型,支持可视化和高级 JSON,下面会直接给到我的高级 JSON,粘贴进去后,可以进入可视化配置二次编辑



Claude 系列
增加输出长度、思考、缓存和工具调用的配置;用户界面预览如下

配置JSON内容
{
"defaultOptions": {
"max_tokens": 64000,
"thinking": {
"type": "adaptive",
"display": "summarized"
},
"output_config": {
"effort": "high"
},
"cache_control": {
"type": "ephemeral",
"ttl": "5m"
}
},
"optionControls": [
{
"path": "max_tokens",
"type": "number",
"label": "Max Tokens"
},
{
"path": "thinking.type",
"type": "select",
"label": "Thinking Type",
"options": [
"adaptive"
]
},
{
"path": "thinking.display",
"type": "select",
"label": "Thinking Display",
"options": [
"summarized",
"omitted"
]
},
{
"path": "output_config.effort",
"type": "select",
"label": "Output Config Effort",
"options": [
"low",
"medium",
"high",
"xhigh",
"max"
]
},
{
"path": "cache_control.type",
"type": "select",
"label": "Cache Control Type",
"options": [
"ephemeral"
]
},
{
"path": "cache_control.ttl",
"type": "select",
"label": "Cache Control TTL",
"options": [
"5m",
"1h"
]
}
],
"nativeTools": [
{
"key": "anthropic.web_fetch_20260209",
"protocols": [
"anthropic_messages"
],
"label": "Web Fetch",
"enabled": true,
"defaultEnabled": true,
"payload": {
"allowed_callers": [
"direct"
],
"name": "web_fetch",
"type": "web_fetch_20260209"
},
"provider": "Anthropic",
"type": "web_fetch_20260209",
"description": "Anthropic hosted web fetch tool."
},
{
"key": "anthropic.web_search_20260209",
"protocols": [
"anthropic_messages"
],
"label": "Web Search",
"enabled": true,
"defaultEnabled": true,
"payload": {
"allowed_callers": [
"direct"
],
"name": "web_search",
"type": "web_search_20260209"
},
"provider": "Anthropic",
"type": "web_search_20260209",
"description": "Anthropic hosted web search tool."
}
]
}
OpenAI 系列
增加思考、输出详细程度、数据存储、工具调用的配置;用户界面预览如下

配置JSON内容
{
"defaultOptions": {
"reasoning": {
"effort": "high",
"summary": "auto"
},
"text": {
"verbosity": "medium"
},
"store": false
},
"optionControls": [
{
"path": "reasoning.effort",
"type": "select",
"label": "Reasoning Effort",
"options": [
"minimal",
"low",
"medium",
"high",
"xhigh"
]
},
{
"path": "reasoning.summary",
"type": "select",
"label": "Reasoning Summary",
"options": [
"auto",
"concise",
"detailed"
]
},
{
"path": "text.verbosity",
"type": "select",
"label": "Text Verbosity",
"options": [
"low",
"medium",
"high"
]
},
{
"path": "store",
"type": "boolean",
"label": "Store"
}
],
"nativeTools": [
{
"key": "openai.code_interpreter",
"protocols": [
"openai_responses"
],
"label": "Code Interpreter",
"enabled": true,
"defaultEnabled": true,
"payload": {
"container": {
"type": "auto"
},
"type": "code_interpreter"
},
"provider": "OpenAI",
"type": "code_interpreter",
"description": "OpenAI hosted code interpreter with an automatic container."
},
{
"key": "openai.web_search",
"protocols": [
"openai_chat_completions",
"openai_responses"
],
"label": "Web Search",
"enabled": true,
"defaultEnabled": true,
"payload": {
"type": "web_search"
},
"provider": "OpenAI",
"type": "web_search",
"description": "OpenAI hosted web search."
}
]
}
Gemini 系列
增加思考、工具调用的配置;用户界面预览如下

配置JSON内容
{
"defaultOptions": {
"generationConfig": {
"thinkingConfig": {
"includeThoughts": true,
"thinkingLevel": "high"
}
}
},
"optionControls": [
{
"path": "generationConfig.thinkingConfig.includeThoughts",
"type": "boolean"
},
{
"path": "generationConfig.thinkingConfig.thinkingLevel",
"type": "select",
"label": "Thinking Level",
"options": [
"low",
"medium",
"high"
]
}
],
"nativeTools": [
{
"key": "google.code_execution",
"protocols": [
"google_generate_content",
"gemini_generate_content"
],
"label": "Code Execution",
"enabled": true,
"defaultEnabled": true,
"payload": {
"code_execution": {}
},
"type": "code_execution"
},
{
"key": "google.google_search",
"protocols": [
"google_generate_content",
"gemini_generate_content"
],
"label": "Google Search",
"enabled": true,
"defaultEnabled": true,
"payload": {
"google_search": {}
},
"provider": "Google",
"type": "google_search",
"description": "Google hosted search grounding tool."
},
{
"key": "google.url_context",
"protocols": [
"google_generate_content",
"gemini_generate_content"
],
"label": "URL Context",
"enabled": true,
"defaultEnabled": true,
"payload": {
"url_context": {}
},
"type": "url_context"
}
]
}
Grok 系列
增加工具调用的配置;用户界面预览如下

配置JSON内容
{
"defaultOptions": {
"store": false
},
"optionControls": [
{
"path": "store",
"type": "boolean",
"label": "Store"
}
],
"nativeTools": [
{
"key": "xai.code_interpreter",
"protocols": [
"xai_responses"
],
"label": "Code Interpreter",
"enabled": true,
"defaultEnabled": true,
"payload": {
"type": "code_interpreter"
},
"provider": "xAI",
"type": "code_interpreter",
"description": "xAI hosted code interpreter."
},
{
"key": "xai.web_search",
"protocols": [
"xai_responses"
],
"label": "Web Search",
"enabled": true,
"defaultEnabled": true,
"payload": {
"type": "web_search",
"enable_image_understanding": true
},
"provider": "xAI",
"type": "web_search",
"description": "xAI hosted web search."
},
{
"key": "xai.x_search",
"protocols": [
"xai_responses"
],
"label": "X Search",
"enabled": true,
"defaultEnabled": true,
"payload": {
"type": "x_search",
"enable_image_understanding": true
},
"provider": "xAI",
"type": "x_search",
"description": "xAI hosted X search."
}
]
}