Build and run your first Pipecat application using LMNT
In this quickstart, we’ll create a simple conversational bot that greets users when they join and exits when they leave. This example demonstrates the core components of a Pipecat application with a streamlined setup.
python -m venv envsource env/Scripts/activate # If using Git Bash# OR.\env\Scripts\activate # If using Command Prompt# OR.\env\Scripts\Activate.ps1 # If using PowerShell
You’ll see a URL (typically http://localhost:7860) in the console output. Open this URL in your browser to join the session. Try having a conversation with the bot!
Let’s examine the key lmnt component of 07k-interruptible-lmnt:
Copy
Ask AI
# Initialize LMNT's text-to-speech service# Using a pre-selected British female voice# You can find other voices at https://app.lmnt.com/voice-librarytts = LMNTTTSService( api_key=os.getenv("LMNT_API_KEY"), voice_id="morgan", # British Lady)