pipecat icon indicating copy to clipboard operation
pipecat copied to clipboard

Open Source framework for voice and multimodal conversational AI

Results 113 pipecat issues
Sort by recently updated
recently updated
newest added

After following the readme ode the storytelling chatbot example, I see the narrator is starting the story. But the fragment if the user input is not started. The microphone does...

______________________________________ ERROR collecting src/pipecat/pipeline/merge_pipeline.py ______________________________________ ImportError while importing test module '/mnt/c/Users/DELL/Documents/pipchatbot/pipecat/src/pipecat/pipeline/merge_pipeline.py'. Hint: make sure your test modules/packages have valid Python names. Traceback: /home/loop/miniconda3/lib/python3.11/importlib/__init__.py:126: in import_module return _bootstrap._gcd_import(name[level:], package, level) src/pipecat/pipeline/merge_pipeline.py:2:...

I'm running 13-whisper-transcription.py. I made one modification to it, adding: import os os.environ['KMP_DUPLICATE_LIB_OK']='True' To overcome this error: OMP: Error #15: Initializing libiomp5.dylib, but found libiomp5.dylib already initialized. OMP: Hint This...

Hello, I'd like to use Italian language but I cannot find where to change it

I might try to add Fireworks image gen support tomorrow, but we can also merge this as-is if we need to cut a release

This adds another example server (`fly-server.py`) that uses fly.io's API to spin up a new Fly Machine for every new bot, instead of using a python subprocess in the web...

[LMNT](https://lmnt.com) has an interesting approach to 'full-duplex' TTS: ```python async def main(): async with Speech() as speech: connection = await speech.synthesize_streaming('lily') t1 = asyncio.create_task(reader_task(connection)) t2 = asyncio.create_task(writer_task(connection)) asyncio.gather([t1, t2]) connection.close()...

Google text to speech seems to have good support in a lot of different languages. Is adding this to pipecat a good idea?