pipecat
pipecat copied to clipboard
Open Source framework for voice and multimodal conversational AI
Made asmall explanation for diffrent types of frames in pipcat. helps make everyone understand the concept of frames much better.
Currently `on_error` handler can not be registered with transport. It fails with error ``` Exception: Event handler on_error not registered ``` This is a small change which adds the `on_error`...
.env.example file with required env variables not added hence adding
requirements.txt must include deepgram also as it is used in code
This also works with OpenAI-compatible API providers such as Groq (requested in #254) by passing the `base_url`. ```python stt = OpenAISTTService( api_key=os.getenv("GROQ_API_KEY"), base_url="https://api.groq.com/openai/v1", model="distil-whisper-large-v3-en" ) ```
In some cases, connect is called before start, or the connection is already established. This can result in the “old” connection leading to a “received 1008 (policy violation)” error from...
I replaced the `CartesiaTTSService` with `ElevenLabsTTSService` in the https://github.com/pipecat-ai/pipecat/blob/main/examples/foundational/01-say-one-thing.py example, but that doesnt work anymore with 0.0.43 Here's some logging output. ``` ❯ pipenv run python ./pipecat/01-say-one-thing.py Loading .env environment...
Occasionally, I encounter this error in CartesiaTTSService. Could this be a bug in the CartesiaTTSService, the Cartesia library, or my code? 2024-09-18 09:25:01.202 | ERROR | pipecat.services.cartesia:_receive_task_handler:189 - CartesiaTTSService#0 exception:...
Hi, We're using Pipecat with Fly.io. With the latest version (0.0.42), the ElevenLabs TTS seems to be throwing an error constantly, which is stopping the machines from auto-destroying. I'm putting...
Would be nice if you could capture the participants screenshare and feed the context to the LLM.