Skip to content

Latest commit

 

History

History
49 lines (36 loc) · 1.41 KB

README.md

File metadata and controls

49 lines (36 loc) · 1.41 KB
LiveKit logo

Python Speech Transcriber Agent

Deploy a sandbox appLiveKit Agents DocsLiveKit CloudBlog

A basic example of speech transcription using LiveKit and Python.

Dev Setup

Clone the repository and install dependencies to a virtual environment:

cd transcription-groq
python3 -m venv venv
source venv/bin/activate
pip install -r requirements.txt

Set up the environment by copying .env.example to .env.local and filling in the required values:

  • LIVEKIT_URL
  • LIVEKIT_API_KEY
  • LIVEKIT_API_SECRET
  • GROQ_API_KEY

You can also do this automatically using the LiveKit CLI:

lk app env --write

Run the agent:

python3 main.py dev

This agent requires a frontend application to communicate with. You can use one of our example frontends in livekit-examples, create your own following one of our client quickstarts, or test instantly against one of our hosted Sandbox frontends.