├── .env.example ├── .github └── assets │ ├── .DS_Store │ └── livekit-mark.png ├── .gitignore ├── LICENSE ├── README.md ├── agent.py ├── renovate.json ├── requirements.txt └── taskfile.yaml /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livekit-examples/voice-pipeline-agent-python/HEAD/.env.example -------------------------------------------------------------------------------- /.github/assets/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livekit-examples/voice-pipeline-agent-python/HEAD/.github/assets/.DS_Store -------------------------------------------------------------------------------- /.github/assets/livekit-mark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livekit-examples/voice-pipeline-agent-python/HEAD/.github/assets/livekit-mark.png -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livekit-examples/voice-pipeline-agent-python/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livekit-examples/voice-pipeline-agent-python/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livekit-examples/voice-pipeline-agent-python/HEAD/README.md -------------------------------------------------------------------------------- /agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livekit-examples/voice-pipeline-agent-python/HEAD/agent.py -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livekit-examples/voice-pipeline-agent-python/HEAD/renovate.json -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livekit-examples/voice-pipeline-agent-python/HEAD/requirements.txt -------------------------------------------------------------------------------- /taskfile.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livekit-examples/voice-pipeline-agent-python/HEAD/taskfile.yaml --------------------------------------------------------------------------------