mirror of
https://github.com/BerriAI/litellm.git
synced 2025-04-25 10:44:24 +00:00
* feat(deepgram/): initial e2e support for deepgram stt Uses deepgram's `/listen` endpoint to transcribe speech to text Closes https://github.com/BerriAI/litellm/issues/4875 * fix: fix linting errors * test: fix test
5 lines
125 B
Python
5 lines
125 B
Python
from litellm.llms.base_llm.chat.transformation import BaseLLMException
|
|
|
|
|
|
class DeepgramException(BaseLLMException):
|
|
pass
|