deepgram-python-sdk
deepgram-python-sdk copied to clipboard
Official Python SDK for Deepgram's automated speech recognition APIs.
### Affected page or section https://github.com/deepgram/deepgram-python-sdk/ ### What is unclear or wrong? It's not clear from the docs if a keepalive loop is still needed on v2/listen/connect. ### Suggested change...
Hello, how are you doing? I think the best thing would be to have the possibility of forgetting our bond of service. sentiment: "positive" sentiment_score: 0.5570723724365234
## What is the current behavior? **Location:** `.venv/lib/python3.12/site-packages/deepgram/clients/listen/v1/rest/response.py` lines 169-173 **Problematic code:** ```python def __getitem__(self, key): _dict = self.to_dict() if "sentiment" in _dict: _dict["sentiment"] = Sentiment.from_dict(_dict["sentiment"]) # this line has...
## What is the current behavior? When calling `finish()` on `AsyncListenWebSocketClient`, if an error occurs, the implementation swallows `asyncio.CancelledError`. This can lead to async tasks not being properly cancelled, leaving...
## What is the current behavior? Deepgram SDK modules allocate logger handlers randomly: ```sh deepgram-python-sdk (main)$ grep -r logger.addHandler * | wc 40 80 3855 ``` When trying to configure...
## What is the current behavior? When sending `UpdatePrompt` messages via the Voice Agent WebSocket API from within the `ConversationText` handler after catching the user's message, the prompt updates are...