bug: Google API Connection Timeout Error During PRD Decomposition #938
Replies: 7 comments
-
|
Maybe there was a google outage, did you try any other providers ? |
Beta Was this translation helpful? Give feedback.
-
I tried multiple times at different time periods and it still didn't work. Since I'm currently mainly using the Google Gemini API, I hope to continue being able to use it. |
Beta Was this translation helpful? Give feedback.
-
|
I have the same issue, but using the Anthropic API. It always times out and says to check my internet connection (I'm online). Unable to perform the initial setup like this. I am using Cursor on EndeavourOS. { |
Beta Was this translation helpful? Give feedback.
-
I now see in the Cursor IDE > Output > View > MCP Logs that the MCP Server is missing. I see that MCP servers have to be added to .cursor > mcp.json. I'll figure out how to do this for Anthropic. (would appreciate a bit more detail in the tutorial.md) But me adding to this bug was premature. |
Beta Was this translation helpful? Give feedback.
-
|
you don't have to create an mcp.json for the CLI to work. but if you want to use the MCP, of course you have to add it to the mcp.json |
Beta Was this translation helpful? Give feedback.
-
|
Seems like this issue is not gaining much attention, its either a one-off issue or a config issue, moving to discussions |
Beta Was this translation helpful? Give feedback.
-
|
Becoming stale, and I believe has been resolved |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
Description
When attempting to perform PRD decomposition using Google Gemini models, TaskMaster AI consistently fails with connection timeout errors. The application attempts to connect to multiple Google API endpoints but times out after 10 seconds, despite configuration settings for longer timeouts (120 seconds). This issue prevents the core functionality of PRD parsing and task generation from working with Google Gemini models.
Steps to Reproduce
npm install -g task-mastertask-master init.envfile:.taskmaster/docs/prd.txttask-master parse-prd --num-tasks 15Expected Behavior
Actual Behavior
Screenshots or Logs
Configuration file (.taskmaster/config.json):
{ "models": { "main": { "provider": "google", "modelId": "gemini-2.5-pro-preview-05-06", "maxTokens": 120000, "temperature": 0.2, "timeout": 120000 }, "fallback": { "provider": "google", "modelId": "gemini-2.5-pro-preview-03-25", "maxTokens": 8192, "temperature": 0.1, "timeout": 120000 } }, "global": { "logLevel": "info", "debug": false, "defaultSubtasks": 5, "defaultPriority": "medium", "timeout": 120000 } }Environment
Additional Context
Attempted Solutions:
This issue significantly impacts the usability of TaskMaster AI in environments with Google API access restrictions, which may be common in corporate or certain geographic regions.
Beta Was this translation helpful? Give feedback.
All reactions