Update .taskmasterconfig (#435)

* Update .taskmasterconfig

Max tokens in 3.5 is lower.  With the current number get this error:

Service call failed for role fallback (Provider: anthropic, Model: claude-3-5-sonnet-20240620): max_tokens: 120000 > 8192, which is the maximum allowed number of output tokens for claude-3-5-sonnet-20240620

* Fix fallback model ID format and update maxTokens in Taskmaster configuration

---------

Co-authored-by: Ralph Khreish <35776126+Crunchyman-ralph@users.noreply.github.com>
This commit is contained in:
Lars Bell
2025-05-15 12:01:21 +01:00
committed by GitHub
parent 0a611843b5
commit a96215a359
2 changed files with 7 additions and 2 deletions

View File

@@ -0,0 +1,5 @@
---
'task-master-ai': patch
---
Fix default fallback model and maxTokens in Taskmaster initialization

View File

@@ -14,8 +14,8 @@
}, },
"fallback": { "fallback": {
"provider": "anthropic", "provider": "anthropic",
"modelId": "claude-3.5-sonnet-20240620", "modelId": "claude-3-5-sonnet-20240620",
"maxTokens": 120000, "maxTokens": 8192,
"temperature": 0.1 "temperature": 0.1
} }
}, },