├── .dockerignore ├── .env.example ├── .github ├── assets │ └── livekit-mark.png └── workflows │ ├── ruff.yml │ ├── template-check.yml │ └── tests.yml ├── .gitignore ├── AGENTS.md ├── CLAUDE.md ├── Dockerfile ├── GEMINI.md ├── LICENSE ├── README.md ├── pyproject.toml ├── src ├── __init__.py └── agent.py ├── taskfile.yaml └── tests └── test_agent.py /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livekit-examples/agent-starter-python/HEAD/.dockerignore -------------------------------------------------------------------------------- /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livekit-examples/agent-starter-python/HEAD/.env.example -------------------------------------------------------------------------------- /.github/assets/livekit-mark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livekit-examples/agent-starter-python/HEAD/.github/assets/livekit-mark.png -------------------------------------------------------------------------------- /.github/workflows/ruff.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livekit-examples/agent-starter-python/HEAD/.github/workflows/ruff.yml -------------------------------------------------------------------------------- /.github/workflows/template-check.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livekit-examples/agent-starter-python/HEAD/.github/workflows/template-check.yml -------------------------------------------------------------------------------- /.github/workflows/tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livekit-examples/agent-starter-python/HEAD/.github/workflows/tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livekit-examples/agent-starter-python/HEAD/.gitignore -------------------------------------------------------------------------------- /AGENTS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livekit-examples/agent-starter-python/HEAD/AGENTS.md -------------------------------------------------------------------------------- /CLAUDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livekit-examples/agent-starter-python/HEAD/CLAUDE.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livekit-examples/agent-starter-python/HEAD/Dockerfile -------------------------------------------------------------------------------- /GEMINI.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livekit-examples/agent-starter-python/HEAD/GEMINI.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livekit-examples/agent-starter-python/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livekit-examples/agent-starter-python/HEAD/README.md -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livekit-examples/agent-starter-python/HEAD/pyproject.toml -------------------------------------------------------------------------------- /src/__init__.py: -------------------------------------------------------------------------------- 1 | # This file makes the src directory a Python package 2 | -------------------------------------------------------------------------------- /src/agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livekit-examples/agent-starter-python/HEAD/src/agent.py -------------------------------------------------------------------------------- /taskfile.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livekit-examples/agent-starter-python/HEAD/taskfile.yaml -------------------------------------------------------------------------------- /tests/test_agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livekit-examples/agent-starter-python/HEAD/tests/test_agent.py --------------------------------------------------------------------------------