We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? No Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “No Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? No Sign in to your account
It looks like the Rime api connections for the template for this example project are out of date.
When building the default project the OpenAI Realtime service works correctly but the 'custom' Rime service hits a 401.
It looks like the Rime URL and auth method for Streaming PCM are now different:
url = "https://model-7qkpx4ew.api.baseten.co/production/predict"
url = "https://users.rime.ai/v1/rime-tts"
"Authorization": f"Api-Key {self._api_key}",
Authorization: Bearer {self._api_key}
The text was updated successfully, but these errors were encountered:
No branches or pull requests
It looks like the Rime api connections for the template for this example project are out of date.
When building the default project the OpenAI Realtime service works correctly but the 'custom' Rime service hits a 401.
It looks like the Rime URL and auth method for Streaming PCM are now different:
url = "https://model-7qkpx4ew.api.baseten.co/production/predict"
should beurl = "https://users.rime.ai/v1/rime-tts"
"Authorization": f"Api-Key {self._api_key}",
should beAuthorization: Bearer {self._api_key}
The text was updated successfully, but these errors were encountered: