Adding the changelog mentioning the HeyGen changes.

This commit is contained in:
Filipi Fuchter
2025-12-12 08:58:48 -03:00
parent 87fc860cd5
commit a6ee040d82
2 changed files with 12 additions and 0 deletions

2
changelog/3210.added.md Normal file
View File

@@ -0,0 +1,2 @@
- Added support for the HeyGen LiveAvatar API
(see https://www.liveavatar.com/).

10
changelog/3210.changed.md Normal file
View File

@@ -0,0 +1,10 @@
- Updated `HeyGenVideoService` and `HeyGenTransport` to support both HeyGen APIs (Interactive Avatar and Live Avatar).
Using them is as simple as specifying the `service_type` when creating the `HeyGenVideoService` and the `HeyGenTransport`:
```python
heyGen = HeyGenVideoService(
api_key=os.getenv("HEYGEN_LIVE_AVATAR_API_KEY"),
service_type=ServiceType.LIVE_AVATAR,
session=session,
)
```