Add AddisAI STT and TTS plugin - #6601
Conversation
There was a problem hiding this comment.
💡 Codex Review
Here are some automated review suggestions for this pull request.
Reviewed commit: 285d9d0b6a
ℹ️ About Codex in GitHub
Your team has set up Codex to review pull requests in this repo. Reviews are triggered when you
- Open a pull request for review
- Mark a draft as ready
- Comment "@codex review".
If Codex has suggestions, it will comment; otherwise it will react with 👍.
Codex can also answer questions or update the PR. Try commenting "@codex address that feedback".
There was a problem hiding this comment.
💡 Codex Review
Here are some automated review suggestions for this pull request.
Reviewed commit: 654f30fce7
ℹ️ About Codex in GitHub
Your team has set up Codex to review pull requests in this repo. Reviews are triggered when you
- Open a pull request for review
- Mark a draft as ready
- Comment "@codex review".
If Codex has suggestions, it will comment; otherwise it will react with 👍.
Codex can also answer questions or update the PR. Try commenting "@codex address that feedback".
What this adds
I'm adding an AddisAI plugin for LiveKit Agents with:
addis-whisperam) and Afaan Oromo (om) language supportam-hamenas the documented Amharic defaultpcm_16000,wav_44100, andmp3_44100output supportAddisAI is building language-native speech models for Amharic and Afaan Oromo, and I wanted those services to be usable directly in a LiveKit voice pipeline.
Implementation notes
The current AddisAI Python SDK is synchronous, so this plugin uses LiveKit's shared asynchronous HTTP session instead of blocking the agent event loop.
The capabilities match what the APIs provide today:
client_request_idacross retry attempts so an uncertain response does not create or bill a second clip.request_datawhen that part is labeledtext/plain.APIStatusErrorvalues so retryability and diagnostics are preserved.I intentionally kept AddisAI text/multimodal generation and the realtime audio WebSocket out of this PR. They are promising follow-ups, but their current public contracts do not yet expose all of the streaming, tool, transcript, session, and interruption behavior needed for complete LiveKit LLM or Realtime Model implementations.
Validation
am-hamenTTS to STT, 0.919 transcription confidenceom-ayyaantuuTTS to STT, 0.949 transcription confidenceThe credential-backed smoke tests exercised the plugin itself against the production AddisAI TTS and STT endpoints. Both language paths completed successfully, and I have also tested the providers in a LiveKit Cloud agent, so I'm marking this ready for review.
Node.js companion
The matching Node.js package is now proposed separately in livekit/agents-js#2160. It follows the
agents-jspackage architecture as@livekit/agents-plugin-addisaiand includes the same STT/TTS language support, retry behavior, tests, TypeDoc/API report, README, and a Gemini example.Documentation and provider listing
I would also like AddisAI to be discoverable alongside the other model providers after these plugins are merged and released. Could you please:
/agents/models/stt//agents/models/tts//agents/models/stt/addisai/with Python and Node.js tabs/agents/models/tts/addisai/with Python and Node.js tabsThe Python package README and Node package README/API report include docs-ready installation, authentication, usage, parameters, language support, and resource links for both guides. I'm happy to send a separate docs PR too if the current documentation source or workflow is available to external contributors.