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