* fix: providers config for azure, bedrock, and vertex * chore: improve changelog * chore: fix CI
35 lines
758 B
JSON
35 lines
758 B
JSON
{
|
|
"models": {
|
|
"main": {
|
|
"provider": "vertex",
|
|
"modelId": "gemini-1.5-pro-002",
|
|
"maxTokens": 50000,
|
|
"temperature": 0.2
|
|
},
|
|
"research": {
|
|
"provider": "perplexity",
|
|
"modelId": "sonar",
|
|
"maxTokens": 8700,
|
|
"temperature": 0.1
|
|
},
|
|
"fallback": {
|
|
"provider": "anthropic",
|
|
"modelId": "claude-3-7-sonnet-20250219",
|
|
"maxTokens": 128000,
|
|
"temperature": 0.2
|
|
}
|
|
},
|
|
"global": {
|
|
"logLevel": "info",
|
|
"debug": false,
|
|
"defaultSubtasks": 5,
|
|
"defaultPriority": "medium",
|
|
"projectName": "Taskmaster",
|
|
"ollamaBaseURL": "http://localhost:11434/api",
|
|
"bedrockBaseURL": "https://bedrock.us-east-1.amazonaws.com",
|
|
"userId": "1234567890",
|
|
"azureBaseURL": "https://your-endpoint.azure.com/",
|
|
"defaultTag": "master"
|
|
}
|
|
}
|