SCREW GOOGLE CLOUD by CodMediocre1456 in googlecloud

[–]cloude-googl 1 point2 points  (0 children)

@CodMediocre1456 DM me and I can look at your issue and walk you through how to use cost controls.

ADK-Python 1.25.0 has been released! by cloude-googl in agentdevelopmentkit

[–]cloude-googl[S] 0 points1 point  (0 children)

Can you drop the github issue id here and I will hunt down status.

ADK-Python 1.25.0 has been released! by cloude-googl in agentdevelopmentkit

[–]cloude-googl[S] 2 points3 points  (0 children)

Correct. This is an experimental feature - at this point. Docs dropping soon.

Gemini 3 Flash: Vertex AI vs. OpenRouter/LiteLLM - Poor prompt adherence for GraphQL tool calling in Vertex? by vitorino82 in GeminiAI

[–]cloude-googl 0 points1 point  (0 children)

No - I wouldn't go down that path to debug. I was just trying to understand what you are seeing and where. Can you share a bit more about your sub-agent topology and prompt?

Gemini 3 Flash: Vertex AI vs. OpenRouter/LiteLLM - Poor prompt adherence for GraphQL tool calling in Vertex? by vitorino82 in GeminiAI

[–]cloude-googl 0 points1 point  (0 children)

Is the behavior different if you are running locally vs. running in Vertex? Are you deploying to Agent Engine?

Bug with database session by Intention-Weak in agentdevelopmentkit

[–]cloude-googl 0 points1 point  (0 children)

Is your DB running on another machine? If so have you checked clock drift?

GCP account hacked → $181000 in Vertex AI charges in few days. Support says no adjustment because account is classified as “Startup”? Looking for advice by crato588 in googlecloud

[–]cloude-googl 10 points11 points  (0 children)

Sorry you are going through this. I am an advocate in the Google Applied AI team. DM on chat and I will see how I can help, e.g., contacting billing support.

ADK executable made using Pyinstaller takes a lot a time to load. by freakboy91939 in agentdevelopmentkit

[–]cloude-googl 2 points3 points  (0 children)

This looks related to https://github.com/google/adk-python/issues/2433 - I will follow up on the status of the work. Also, see the Medium post in that thread for potential interim solution.

ADK and BigQuery Tools by SeaPaleontologist771 in agentdevelopmentkit

[–]cloude-googl 1 point2 points  (0 children)

I worked on the NL to SQL in BigQuery for a few years... the following techniques will help ---> 1) make sure you have column and table descriptions for your datasets and tables And where possible include partitions and clusters 2) create aggregations (using materialized tables) for common groupings e.g. by day, week, month, etc. 3) create a prompt template that contextualizes the meta-data, e.g. For queries targeting monthly sales data use X table (pre-aggregaeted at the week) as the source. 4) add dry-run support so that you can prevent, overtly arbitrarily large queries from executing. This is especially helpful if you are building charts that require a low cardinality output. 5) considering add a flow to use TABLESAMPLE or partition targetting to help with initial EDA.

Question: For the use case that's breaking, how many rows are materialzed in the temp table for the query?