Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,21 @@ All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](https://keepachangelog.com/).

## [v2.3.0] — 2026-06-17

### Added

- **CN vendor support** — Area-aware `Agora`/`AsyncAgora` clients and `Agent` builders (`CNAgent`/`GlobalAgent`) with a CN vendor catalog and CN/global API routing. The bound client does not enforce area/vendor compatibility, so CN and global vendors can be mixed.
- **SenseTime avatar** — Added `SenseTimeAvatar` configuration and validation.

### Changed

- **`turn_detection` accepts a dict** — `Agent(turn_detection=...)` now also accepts a plain mapping in addition to the typed config; it is coerced into the request model when the start request is built.

### Fixed

- **Python 3.8 compatibility** — Replaced PEP 585 builtin generics (`list[...]`) in the new vendor models with `typing` equivalents so pydantic can build the models on Python 3.8.

## [v2.2.0] — 2026-06-05

### Added
Expand Down
4 changes: 2 additions & 2 deletions compat/agora-agent-server-sdk/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name = "agora-agent-server-sdk"

[tool.poetry]
name = "agora-agent-server-sdk"
version = "v2.2.0"
version = "v2.3.0"
description = "Compatibility shim for the renamed agora-agents package."
readme = "README.md"
authors = []
Expand Down Expand Up @@ -35,7 +35,7 @@ Repository = 'https://github.com/AgoraIO-Conversational-AI/agent-server-sdk-pyth

[tool.poetry.dependencies]
python = "^3.8"
agora-agents = ">=2.2.0,<3.0.0"
agora-agents = ">=2.3.0,<3.0.0"

[build-system]
requires = ["poetry-core"]
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name = "agora-agents"

[tool.poetry]
name = "agora-agents"
version = "v2.2.0"
version = "v2.3.0"
description = ""
readme = "README.md"
authors = []
Expand Down
Loading