You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Reporting two bugs related to patient-intake example
If reporting a bug, please fill out the following:
Environment
pipecat-ai version: 0.0.45
python version: 3.9
OS: 12.7.6
Issue description
Provide a clear description of the issue.
I tried another example patient-intake in Pycharm (rather than VSCode).
Firstly the code was missing the environment initialisation and these two lines should be added to server.py in this example:
from dotenv import load_dotenv
load_dotenv(override=True)
Secondly, I used python 3.9 to run the code and I got the same error as simple-chatbot:
from pipecat.audio.vad.silero import SileroVADAnalyzer
ModuleNotFoundError: No module named 'pipecat.audio'
I would appreciate if someone help me to understand why this module and other possible pipecat modules are not available.
Repro steps
List the steps to reproduce the issue.
Expected behavior
Actual behavior
Logs
The text was updated successfully, but these errors were encountered:
Hey @TeslaGeek, the minimum python version is 3.10. Can you try updating? Also, we've made some changes to Pipecat with how the SileroVADAnalyzer works. Can you try updating to the latest Pipecat?
Description
Is this reporting a bug or feature request?
Reporting two bugs related to patient-intake example
If reporting a bug, please fill out the following:
Environment
Issue description
Provide a clear description of the issue.
I tried another example patient-intake in Pycharm (rather than VSCode).
Firstly the code was missing the environment initialisation and these two lines should be added to server.py in this example:
from dotenv import load_dotenv
load_dotenv(override=True)
Secondly, I used python 3.9 to run the code and I got the same error as simple-chatbot:
from pipecat.audio.vad.silero import SileroVADAnalyzer
ModuleNotFoundError: No module named 'pipecat.audio'
I would appreciate if someone help me to understand why this module and other possible pipecat modules are not available.
Repro steps
List the steps to reproduce the issue.
Expected behavior
Actual behavior
Logs
The text was updated successfully, but these errors were encountered: