-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.default.json
More file actions
27 lines (27 loc) · 860 Bytes
/
config.default.json
File metadata and controls
27 lines (27 loc) · 860 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
/*
* Marcus Copilot by FJRG2007.
* All default settings are the most optimal for Marcus.
*/
{
"ai": {
"default_provider": "ollama",
"providers": {
"anthropic": {
"models": {
"main_model": "claude-3-5-sonnet-20240620",
"tool_checker_model": "claude-3-5-sonnet-20240620",
"code_editor_model": "claude-3-5-sonnet-20240620",
"code_execution_model": "claude-3-5-sonnet-20240620"
}
},
"ollama": {
"models": {
"main_model": "mistral-nemo",
"tool_checker_model": "mistral-nemo",
"code_editor_model": "mistral-nemo",
"code_execution_model": "mistral-nemo"
}
}
}
}
}