Dylan
Dylan
I don't think this is a bug - none of the logic for the different Session Services include an `upsert` style logic for the session so it's something that you'll...
This is a minimum working example: ```py # ,/research_agent/agent.py from google.adk.agents import Agent from google.adk.tools import google_search, AgentTool GEMINI_MODEL = "gemini-2.5-flash" web_search = Agent( name='web_search_agent', model=GEMINI_MODEL, instruction=( 'You are a...
@jeremypeters `LlmAgent` and `Agent` are aliases of one another - I've made a PR recently in the docs to simplify the use and only use `Agent` in examples to avoid...
@jwiejulie I don't think there's any changes that need to be made in the docs. In the full Python code example below, there's a proper import example.
For Python, this is true. Java, as far as I can tell, does not have an alias so they do have to import it as `LlmAgent` I do agree that...
@markmcd Yeah I wanted to use the regular Gemini API in this case: https://generativelanguage.googleapis.com/v1beta/models/{model} I think this is the best repo to put the OpenAPI spec in since you already...
In 1.9.0 (at least) and up, this is no longer an issue. I used the reference code and can read/write/list files
> Hi @dylan-apex , Thanks for you contribution. Can you fix the failing Unit tests? Working on it