-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsettings.example.json
More file actions
46 lines (46 loc) · 955 Bytes
/
settings.example.json
File metadata and controls
46 lines (46 loc) · 955 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
{
"assistantId": "assistant-1",
"chatModelId": "model-1",
"assistants": [
{
"id": "assistant-1",
"name": "Default",
"systemPrompt": "",
"chatModelId": "model-1",
"temperature": 0.7,
"topP": null,
"maxTokens": 4096,
"thinkingBudget": null,
"mcpServers": [],
"localTools": [
"time_info",
"javascript_engine",
"clipboard"
],
"modeInjectionIds": [],
"lorebookIds": []
}
],
"providers": [
{
"id": "provider-openai",
"type": "openai",
"enabled": true,
"name": "OpenAI",
"apiKey": [
""
],
"baseUrl": "https://api.openai.com/v1",
"chatCompletionsPath": "/chat/completions",
"models": [
{
"id": "model-1",
"enabled": true,
"modelId": "gpt-4.1-mini",
"displayName": "GPT-4.1 mini"
}
]
}
],
"mcpServers": []
}