adk-docs
adk-docs copied to clipboard
An open-source, code-first toolkit for building, evaluating, and deploying sophisticated AI agents with flexibility and control.
Add mcp-tools-java.md to Introduce How to Configure MCP-Tools in ADK-Java
### Automation for Documentation Management: - **`.github/workflows/docs-health-check.yaml`**: Added a scheduled workflow to run a documentation health check every Sunday at midnight. The workflow generates a health report and creates a...
**Currently there isn't examples of how submit files to an ADK Agent thought the native rest api (/doc)** It's possible to add somes examples here: https://google.github.io/adk-docs/get-started/testing/#run-agent-single-response ?
Hi team, I noticed that this repository includes both `llms.txt` and `llms-full.txt` files in the root directory. Could you please clarify how these files are generated? - Are they produced...
The example initially provided, does not work and fails with a ValueError: Unable to coerce value: Part( text='what is in this image?' ) error. The provided example works correctly
In the docs [here]([¶](https://google.github.io/adk-docs/agents/multi-agents/#hierarchical-task-decomposition)) and in the Google blog post [here](https://cloud.google.com/blog/products/ai-machine-learning/build-multi-agentic-systems-using-google-adk) the import is `from google.adk.agents import agent_tool` and the implementation is this: ``` research_assistant = LlmAgent( name="ResearchAssistant", model="gemini-2.0-flash", description="Finds...
**Describe the bug** Directly modify the `session.state` in example `adk-docs/examples/python/snippets/agents/custom-agent/storyflow_agent.py`. > [storyflow_agent.py:258](https://github.com/google/adk-docs/blob/90703aae06346129213d150e31a3f799ac0061b8/examples/python/snippets/agents/custom-agent/storyflow_agent.py#L258) ```python async def call_agent_async(user_input_topic: str): session_service, runner = await setup_session_and_runner() current_session = await session_service.get_session(app_name=APP_NAME, user_id=USER_ID, session_id=SESSION_ID) if not...
**Describe the bug** Fast API server returns an error when a session with the ID exists instead of updating its state **To Reproduce** Steps to reproduce the behavior: 1. Call...
Problem: - The code examples in the documentation create a confusing experience by alternating between LlmAgent and Agent for initialization. A user might follow one example, and then in the...
** Please make sure you read the contribution guide and file the issues in the right place. ** [Contribution guide.](https://google.github.io/adk-docs/contributing-guide/) **Describe the bug** I am trying to deploy an agent...