data-collector fixed
This commit is contained in:
59
docs/dist/config/ai.json
vendored
Normal file
59
docs/dist/config/ai.json
vendored
Normal file
@@ -0,0 +1,59 @@
|
||||
{
|
||||
"enabled": true,
|
||||
"provider": "openai",
|
||||
"models": {
|
||||
"openai": {
|
||||
"modelId": "gpt-3.5-turbo",
|
||||
"apiKey": "",
|
||||
"baseUrl": "https://api.openai.com/v1",
|
||||
"maxTokens": 4000,
|
||||
"temperature": 0.7
|
||||
},
|
||||
"claude": {
|
||||
"modelId": "claude-3-sonnet-20240229",
|
||||
"apiKey": "",
|
||||
"baseUrl": "https://api.anthropic.com",
|
||||
"maxTokens": 4000,
|
||||
"temperature": 0.7
|
||||
},
|
||||
"gemini": {
|
||||
"modelId": "gemini-pro",
|
||||
"apiKey": "",
|
||||
"baseUrl": "https://generativelanguage.googleapis.com/v1",
|
||||
"maxTokens": 4000,
|
||||
"temperature": 0.7
|
||||
},
|
||||
"deepseek-v3": {
|
||||
"modelId": "deepseek-chat",
|
||||
"apiKey": "",
|
||||
"baseUrl": "https://api.deepseek.com",
|
||||
"maxTokens": 4000,
|
||||
"temperature": 0.7
|
||||
},
|
||||
"deepseek-r1": {
|
||||
"modelId": "deepseek-reasoner",
|
||||
"apiKey": "",
|
||||
"baseUrl": "https://api.deepseek.com",
|
||||
"maxTokens": 4000,
|
||||
"temperature": 0.7
|
||||
},
|
||||
"custom": {
|
||||
"modelId": "",
|
||||
"apiKey": "",
|
||||
"baseUrl": "",
|
||||
"maxTokens": 4000,
|
||||
"temperature": 0.7
|
||||
}
|
||||
},
|
||||
"features": {
|
||||
"chatAssistant": true,
|
||||
"documentSummary": true,
|
||||
"codeExplanation": true,
|
||||
"searchEnhancement": false
|
||||
},
|
||||
"ui": {
|
||||
"position": "bottom-right",
|
||||
"theme": "auto",
|
||||
"size": "medium"
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user