From dfb283e6e0796f6849a3a50835e949bfd992f1fc Mon Sep 17 00:00:00 2001 From: Wei Sun Date: Fri, 18 Apr 2025 10:34:51 -0700 Subject: [PATCH 1/3] No public description PiperOrigin-RevId: 749076119 --- src/google/adk/version.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/google/adk/version.py b/src/google/adk/version.py index 484187c..b53b08a 100644 --- a/src/google/adk/version.py +++ b/src/google/adk/version.py @@ -13,4 +13,4 @@ # limitations under the License. # version: date+base_cl -__version__ = "0.1.1" +__version__ = "0.1.2" From e31cd0b5f871114a05d8e7bffa508c0169ef4446 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tr=E1=BA=A7n=20=C4=90=E1=BA=B7ng=20Trung=20=C4=90=E1=BB=A9?= =?UTF-8?q?c?= <69638253+trandangtrungduc@users.noreply.github.com> Date: Fri, 18 Apr 2025 12:07:09 -0700 Subject: [PATCH 2/3] No public description COPYBARA_INTEGRATE_REVIEW=https://github.com/google/adk-python/pull/243 from trandangtrungduc:fix_typos 6e317d69de653b0f0ca3c3b4c439568435964a5f PiperOrigin-RevId: 749106557 --- .../tools/openapi_tool/openapi_spec_parser/openapi_toolset.py | 2 +- tests/integration/test_tools.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/google/adk/tools/openapi_tool/openapi_spec_parser/openapi_toolset.py b/src/google/adk/tools/openapi_tool/openapi_spec_parser/openapi_toolset.py index dfe0b18..6bd0f08 100644 --- a/src/google/adk/tools/openapi_tool/openapi_spec_parser/openapi_toolset.py +++ b/src/google/adk/tools/openapi_tool/openapi_spec_parser/openapi_toolset.py @@ -124,7 +124,7 @@ class OpenAPIToolset: def _load_spec( self, spec_str: str, spec_type: Literal["json", "yaml"] ) -> Dict[str, Any]: - """Loads the OpenAPI spec string into adictionary.""" + """Loads the OpenAPI spec string into a dictionary.""" if spec_type == "json": return json.loads(spec_str) elif spec_type == "yaml": diff --git a/tests/integration/test_tools.py b/tests/integration/test_tools.py index dab1487..3966248 100644 --- a/tests/integration/test_tools.py +++ b/tests/integration/test_tools.py @@ -241,7 +241,7 @@ def test_langchain_tool_success(agent_runner: TestRunner): def test_crewai_tool_success(agent_runner: TestRunner): _call_function_and_assert( agent_runner, - "direcotry_read_tool", + "directory_read_tool", "Find all the file paths", "file", ) From 1cd61242ef15a39930d86670182e9c4072b72b0d Mon Sep 17 00:00:00 2001 From: Wei Sun Date: Fri, 18 Apr 2025 12:20:35 -0700 Subject: [PATCH 3/3] No public description PiperOrigin-RevId: 749110560 --- CHANGELOG.md | 38 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index f333e22..137be0d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,43 @@ # Changelog +## 0.1.2 + +### ⚠ BREAKING CHANGES + +* Fix typo in method name in `Event`: has_trailing_code_exeuction_result --> has_trailing_code_execution_result. + +### Features + +* `adk` CLI: + * Introduce `adk create` cli tool to help creating agents. + * Adds `--verbosity` option to `adk deploy cloud_run` to show detailed cloud + run deploy logging. +* 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.py` interface 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. +* `.env` file 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_tool` rendering 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