mirror of
https://github.com/EvolutionAPI/adk-python.git
synced 2026-01-08 21:02:27 -06:00
2.9 KiB
2.9 KiB
Changelog
0.3.0
⚠ BREAKING CHANGES
- Auth: expose
access_tokenandrefresh_tokenat top level of auth credentails, instead of adict(commit).
Features
- Added support for running agents with MCPToolset easily on
adk web. - Added
custom_metadatafield toLlmResponse, which can be used to tag LlmResponse viaafter_model_callback. - Added
--session_db_urltoadk deploy cloud_runoption. - Many Dev UI improvements:
- Better google search result rendering.
- Show websocket close reason in Dev UI.
- Better error message showing for audio/video.
Bug Fixes
- Fixed MCP tool json schema parsing issue.
- Fixed issues in DatabaseSessionService that leads to crash.
- Fixed functions.py.
- Fixed
skip_summarizationbehavior inAgentTool.
Miscellaneous Chores
- README.md impprovements.
- Various code improvements.
- Various typo fixes.
- Bump min version of google-genai to 1.11.0.
0.2.0
⚠ BREAKING CHANGES
- Fix typo in method name in
Event: has_trailing_code_exeuction_result --> has_trailing_code_execution_result.
Features
adkCLI:- Introduce
adk createcli tool to help creating agents. - Adds
--verbosityoption toadk deploy cloud_runto show detailed cloud run deploy logging.
- Introduce
- Improve the initialization error message for
DatabaseSessionService. - Lazy loading for Google 1P tools to minimize the initial latency.
- Support emitting state-change-only events from planners.
- Lots of Dev UI updates, including:
- Show planner thoughts and actions in the Dev UI.
- Support MCP tools in Dev UI.
(NOTE:
agent.pyinterface is temp solution and is subject to change) - Auto-select the only app if only one app is available.
- Show grounding links generated by Google Search Tool.
.envfile is reloaded on every agent run.
Bug Fixes
LiteLlm: arg parsing error and python 3.9 compatibility.DatabaseSessionService: adds the missing fields; fixes event with empty content not being persisted.- Google API Discovery response parsing issue.
load_memory_toolrendering issue in Dev UI.- Markdown text overflows in Dev UI.
Miscellaneous Chores
- Adds unit tests in Github action.
- Improves test coverage.
- Various typo fixes.
0.1.0
Features
- Initial release of the Agent Development Kit (ADK).
- Multi-agent, agent-as-workflow, and custom agent support
- Tool authentication support
- Rich tool support, e.g. built-in tools, google-cloud tools, third-party tools, and MCP tools
- Rich callback support
- Built-in code execution capability
- Asynchronous runtime and execution
- Session, and memory support
- Built-in evaluation support
- Development UI that makes local development easy
- Deploy to Google Cloud Run, Agent Engine
- (Experimental) Live(Bidi) auido/video agent support and Compositional Function Calling(CFC) support