Skip to content

Commit 0299020

Browse files
DeanChensjcopybara-github
authored andcommitted
ADK v0.5.0 release.
PiperOrigin-RevId: 756410107
1 parent 5fd6a44 commit 0299020

File tree

2 files changed

+34
-1
lines changed

2 files changed

+34
-1
lines changed

CHANGELOG.md

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

3+
## 0.5.0
4+
5+
### ⚠ BREAKING CHANGES
6+
7+
* Updated artifact and memory service interface to be async. Agents that
8+
interact with these services through callbacks or tools will now need to
9+
adjust their invocation methods to be async (using await), or ensure calls
10+
are wrapped in an asynchronous executor like asyncio.run(). Any service that
11+
extends the base interface must also be updated.
12+
13+
### Features
14+
15+
* Introduced the ability to chain model callbacks.
16+
* Added support for async agent and model callbacks.
17+
* Added input transcription support for live/streaming.
18+
* Captured all agent code error and display on UI.
19+
* Set param required tag to False by default in openapi_tool.
20+
* Updated evaluation functions to be asynchronous.
21+
22+
### Bug Fixes
23+
24+
* Ensured a unique ID is generated for every event.
25+
* Fixed the issue when openapi_specparser has parameter.required as None.
26+
* Updated the 'type' value on the items/properties nested structures for Anthropic models to adhere to JSON schema.
27+
* Fix litellm error issues.
28+
29+
### Miscellaneous Chores
30+
31+
* Regenerated API docs.
32+
* Created a `developer` folder and added samples.
33+
* Updated the contributing guide.
34+
* Docstring improvements, typo fixings, GitHub action to enforce code styles on formatting and imports, etc.
35+
336
## 0.4.0
437

538
### ⚠ BREAKING CHANGES

src/google/adk/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,4 @@
1313
# limitations under the License.
1414

1515
# version: date+base_cl
16-
__version__ = "0.4.0"
16+
__version__ = "0.5.0"

0 commit comments

Comments
 (0)