fix(config): erroneous 256k token limit.

This commit is contained in:
Eyal Toledano
2025-04-21 22:52:11 -04:00
parent da50a92a1c
commit 8adc4bdc1e

View File

@@ -3,7 +3,7 @@
"main": {
"provider": "anthropic",
"modelId": "claude-3-7-sonnet-20250219",
"maxTokens": 256000,
"maxTokens": 120000,
"temperature": 0.2
},
"research": {
@@ -15,8 +15,8 @@
"fallback": {
"provider": "anthropic",
"modelId": "claude-3.5-sonnet-20240620",
"maxTokens": 128000,
"temperature": 0.2
"maxTokens": 120000,
"temperature": 0.1
}
},
"global": {
@@ -24,7 +24,7 @@
"debug": false,
"defaultSubtasks": 5,
"defaultPriority": "medium",
"projectName": "Task Master",
"projectName": "Taskmaster",
"ollamaBaseUrl": "http://localhost:11434/api"
}
}