Skip to content

Commit d337e30

Browse files
authored
Merge branch 'main' into fix-typos
2 parents 96f23f5 + 1cd6124 commit d337e30

File tree

3 files changed

+40
-2
lines changed

3 files changed

+40
-2
lines changed

CHANGELOG.md

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,43 @@
11
# Changelog
22

3+
## 0.1.2
4+
5+
### ⚠ BREAKING CHANGES
6+
7+
* Fix typo in method name in `Event`: has_trailing_code_exeuction_result --> has_trailing_code_execution_result.
8+
9+
### Features
10+
11+
* `adk` CLI:
12+
* Introduce `adk create` cli tool to help creating agents.
13+
* Adds `--verbosity` option to `adk deploy cloud_run` to show detailed cloud
14+
run deploy logging.
15+
* Improve the initialization error message for `DatabaseSessionService`.
16+
* Lazy loading for Google 1P tools to minimize the initial latency.
17+
* Support emitting state-change-only events from planners.
18+
* Lots of Dev UI updates, including:
19+
* Show planner thoughts and actions in the Dev UI.
20+
* Support MCP tools in Dev UI.
21+
(NOTE: `agent.py` interface is temp solution and is subject to change)
22+
* Auto-select the only app if only one app is available.
23+
* Show grounding links generated by Google Search Tool.
24+
* `.env` file is reloaded on every agent run.
25+
26+
### Bug Fixes
27+
28+
* `LiteLlm`: arg parsing error and python 3.9 compatibility.
29+
* `DatabaseSessionService`: adds the missing fields; fixes event with empty
30+
content not being persisted.
31+
* Google API Discovery response parsing issue.
32+
* `load_memory_tool` rendering issue in Dev UI.
33+
* Markdown text overflows in Dev UI.
34+
35+
### Miscellaneous Chores
36+
37+
* Adds unit tests in Github action.
38+
* Improves test coverage.
39+
* Various typo fixes.
40+
341
## 0.1.0
442

543
### Features

src/google/adk/tools/openapi_tool/openapi_spec_parser/openapi_toolset.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ def get_tool(self, tool_name: str) -> Optional[RestApiTool]:
124124
def _load_spec(
125125
self, spec_str: str, spec_type: Literal["json", "yaml"]
126126
) -> Dict[str, Any]:
127-
"""Loads the OpenAPI spec string into adictionary."""
127+
"""Loads the OpenAPI spec string into a dictionary."""
128128
if spec_type == "json":
129129
return json.loads(spec_str)
130130
elif spec_type == "yaml":

tests/integration/test_tools.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -241,7 +241,7 @@ def test_langchain_tool_success(agent_runner: TestRunner):
241241
def test_crewai_tool_success(agent_runner: TestRunner):
242242
_call_function_and_assert(
243243
agent_runner,
244-
"direcotry_read_tool",
244+
"directory_read_tool",
245245
"Find all the file paths",
246246
"file",
247247
)

0 commit comments

Comments
 (0)