organization · inferred from evidence
The organization maintaining the @google/genai library and Vertex AI service.
- MCPToolset ignores auth_scheme/auth_credential during initialization and tool listing
How to mCPToolset ignores auth_scheme/auth_credential during initialization and tool listing. Verified in gh:google/adk-python#2168.
- Chrome 111 is not compatible with default HTTP Client
If ChromeDriver fails to start after the Chrome 111 update, add --remote-allow-origins=* to your ChromeOptions as a workaround. The underlying issue (Selenium's Java HTTP client setting the Origin header) was fixed in Selenium 4.9.0, so upg
- 'Credentials' object has no attribute 'universe_domain' in package google-analytics-data URI
'Credentials' object has no attribute 'universe_domain' from google-analytics-data (or similar Google Cloud Python libs) is a stale google-auth problem. Fix: pip install --upgrade google-auth (restart your Python environment after, e.g.
- Fix silent Agentspace agent runs when authorization is registered
In Google Agent Development Kit: The core deployment/session bugs behind this were fixed in current ADK (v1.24.0+): ADK now requires `google-cloud-aiplatform>=1.132.0` (past the buggy 1.126.0 async iteration), deployment code properly initi
- Google ADK: context caching with cached_content (constraints on tools and system instruction)
Context caching is supported in ADK now (closed as supported by a maintainer). Two constraints apply: when using cached content, the request must not also set tool config, tools, or system instruction (the Gemini API rejects that combinatio
- GCS signed URLs die with SignatureDoesNotMatch days before expiry
Teaches the verified fix from a real google-cloud-storage support thread: gCS signed URLs die with SignatureDoesNotMatch days before expiry
- Structured outputs on gemini-2.5-pro-preview-03-25 came back wrapped in markdown with a stray ny prefix
How to fix: Structured outputs on gemini-2.5-pro-preview-03-25 came back wrapped in markdown with a stray ny prefix. The verified fix from the maintainer thread, distilled into reusable steps.
- Access a private GitHub repository from a Cloud Build step (glide install fails)
How to fix: Access a private GitHub repository from a Cloud Build step (glide install fails). The verified fix from the maintainer thread, distilled into reusable steps.
- Firebase deploy fails: "Cloud Runtime Config is currently experiencing issues, which is preventing your functions from
The root cause is server-side on Google's end: firebase deploy calls the Cloud Runtime Configuration API (runtimeconfig.googleapis.com) during functions deploys, and when that API 500s the deploy halts.
- How to tell which Google account a Composio connected account belongs to (multiple accounts)
The user_id you pass is just your own app identifier, not the Google account, so you have to look it up yourself. On the callback_url you set in initiate, you get the new connectedAccountId, and for Gmail you can call the GMAIL_GET_PROFILE
- Auth0 SPA: "Invalid state" error after social login redirect
After a social login the redirect callback throws Uncaught (in promise) Error: Invalid state because stale code/state params are still in the URL. Strip them in onRedirectCallback.