fix: resolve Taskmaster AI MCP integration with local Ollama models
- Fix provider configuration from 'openai' to 'ollama' in .taskmaster/config.json - Remove conflicting MCP configurations (.cursor/mcp.json, packages/.cursor/mcp.json) - Standardize on single .vscode/mcp.json configuration for VS Code - Update environment variables for proper Ollama integration - Add .env.taskmaster for easy environment setup - Verify AI functionality: task creation, expansion, and research working - All models (qwen2.5-coder:7b, deepseek-r1:7b, llama3.1:8b) operational - Cost: /run/current-system/sw/bin/zsh (using local Ollama server at grey-area:11434) Resolves configuration conflicts and enables full AI-powered task management with local models instead of external API dependencies.
This commit is contained in:
parent
2e193e00e9
commit
54e80f5c13
4 changed files with 25 additions and 45 deletions
|
@ -1,20 +1,20 @@
|
|||
{
|
||||
"models": {
|
||||
"main": {
|
||||
"provider": "anthropic",
|
||||
"modelId": "claude-3-7-sonnet-20250219",
|
||||
"maxTokens": 120000,
|
||||
"temperature": 0.2
|
||||
"provider": "ollama",
|
||||
"modelId": "qwen2.5-coder:7b",
|
||||
"maxTokens": 8192,
|
||||
"temperature": 0.3
|
||||
},
|
||||
"research": {
|
||||
"provider": "perplexity",
|
||||
"modelId": "sonar-pro",
|
||||
"maxTokens": 8700,
|
||||
"provider": "ollama",
|
||||
"modelId": "deepseek-r1:7b",
|
||||
"maxTokens": 8192,
|
||||
"temperature": 0.1
|
||||
},
|
||||
"fallback": {
|
||||
"provider": "anthropic",
|
||||
"modelId": "claude-3-5-sonnet-20240620",
|
||||
"provider": "ollama",
|
||||
"modelId": "llama3.1:8b",
|
||||
"maxTokens": 8192,
|
||||
"temperature": 0.1
|
||||
}
|
||||
|
@ -25,7 +25,8 @@
|
|||
"defaultSubtasks": 5,
|
||||
"defaultPriority": "medium",
|
||||
"projectName": "Taskmaster",
|
||||
"ollamaBaseURL": "http://localhost:11434/api",
|
||||
"ollamaBaseURL": "http://grey-area:11434/api",
|
||||
"openaiBaseURL": "http://grey-area:11434/v1",
|
||||
"bedrockBaseURL": "https://bedrock.us-east-1.amazonaws.com",
|
||||
"defaultTag": "master",
|
||||
"azureOpenaiBaseURL": "https://your-endpoint.openai.azure.com/",
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue