├── .env.example ├── .github └── assets │ └── livekit-mark.png ├── .gitignore ├── LICENSE ├── README.md ├── main.py ├── renovate.json ├── requirements.txt └── taskfile.yaml /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livekit-examples/multi-agent-python/HEAD/.env.example -------------------------------------------------------------------------------- /.github/assets/livekit-mark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livekit-examples/multi-agent-python/HEAD/.github/assets/livekit-mark.png -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .env.local 2 | venv/ 3 | .DS_Store 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livekit-examples/multi-agent-python/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livekit-examples/multi-agent-python/HEAD/README.md -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livekit-examples/multi-agent-python/HEAD/main.py -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": ["github>livekit-examples/renovate-config"] 3 | } 4 | -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livekit-examples/multi-agent-python/HEAD/requirements.txt -------------------------------------------------------------------------------- /taskfile.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livekit-examples/multi-agent-python/HEAD/taskfile.yaml --------------------------------------------------------------------------------