You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix: align avatar-live model name and path with backend (#34)
The Python SDK used model name 'avatar-live' with path '/v1/avatar-live/stream',
but the backend registers the model as 'live_avatar' and serves all realtime
models on '/v1/stream' (model passed as query param).
This mismatch caused 404 errors for Python SDK users trying to use Avatar Live.
Changes:
- Rename model from 'avatar-live' to 'live_avatar' (matches backend + JS SDK)
- Change url_path from '/v1/avatar-live/stream' to '/v1/stream' (matches backend)
- Update RealTimeModels type, example, playground, and tests accordingly
0 commit comments