mirror of
https://github.com/EvolutionAPI/adk-python.git
synced 2025-07-14 01:41:25 -06:00
ADK v0.5.0 release.
PiperOrigin-RevId: 756410107
This commit is contained in:
parent
5fd6a448de
commit
0299020cc4
33
CHANGELOG.md
33
CHANGELOG.md
@ -1,5 +1,38 @@
|
|||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
|
## 0.5.0
|
||||||
|
|
||||||
|
### ⚠ BREAKING CHANGES
|
||||||
|
|
||||||
|
* Updated artifact and memory service interface to be async. Agents that
|
||||||
|
interact with these services through callbacks or tools will now need to
|
||||||
|
adjust their invocation methods to be async (using await), or ensure calls
|
||||||
|
are wrapped in an asynchronous executor like asyncio.run(). Any service that
|
||||||
|
extends the base interface must also be updated.
|
||||||
|
|
||||||
|
### Features
|
||||||
|
|
||||||
|
* Introduced the ability to chain model callbacks.
|
||||||
|
* Added support for async agent and model callbacks.
|
||||||
|
* Added input transcription support for live/streaming.
|
||||||
|
* Captured all agent code error and display on UI.
|
||||||
|
* Set param required tag to False by default in openapi_tool.
|
||||||
|
* Updated evaluation functions to be asynchronous.
|
||||||
|
|
||||||
|
### Bug Fixes
|
||||||
|
|
||||||
|
* Ensured a unique ID is generated for every event.
|
||||||
|
* Fixed the issue when openapi_specparser has parameter.required as None.
|
||||||
|
* Updated the 'type' value on the items/properties nested structures for Anthropic models to adhere to JSON schema.
|
||||||
|
* Fix litellm error issues.
|
||||||
|
|
||||||
|
### Miscellaneous Chores
|
||||||
|
|
||||||
|
* Regenerated API docs.
|
||||||
|
* Created a `developer` folder and added samples.
|
||||||
|
* Updated the contributing guide.
|
||||||
|
* Docstring improvements, typo fixings, GitHub action to enforce code styles on formatting and imports, etc.
|
||||||
|
|
||||||
## 0.4.0
|
## 0.4.0
|
||||||
|
|
||||||
### ⚠ BREAKING CHANGES
|
### ⚠ BREAKING CHANGES
|
||||||
|
@ -13,4 +13,4 @@
|
|||||||
# limitations under the License.
|
# limitations under the License.
|
||||||
|
|
||||||
# version: date+base_cl
|
# version: date+base_cl
|
||||||
__version__ = "0.4.0"
|
__version__ = "0.5.0"
|
||||||
|
Loading…
Reference in New Issue
Block a user