Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
.env
.env.*
!.env.example
.task/
.DS_Store
__pycache__
.idea
Expand Down
1 change: 0 additions & 1 deletion src/agent.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@
JobContext,
JobProcess,
RoomInputOptions,
RoomOutputOptions,
RunContext,
WorkerOptions,
cli,
Expand Down
15 changes: 8 additions & 7 deletions taskfile.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,21 +2,22 @@ version: "3"
output: interleaved
dotenv: [".env.local"]

includes:
index: https://raw.githubusercontent.com/livekit-examples/index/main/taskfile.yaml

tasks:
post_create:
desc: "Runs after this template is instantiated as a Sandbox or Bootstrap"
cmds:
- echo -e "To try the new agent directly in your terminal:\r\n"
- echo -e "\tcd {{.ROOT_DIR}}\r"
- echo -e "\tuv sync\r"
- echo -e "\tuv run src/agent.py download-files\r"
- echo -e "\tuv run src/agent.py console\r\n"
- task: index:help_setup_python_uv
- task: index:help_deploy_agent

install:
desc: "Bootstrap application for local development"
cmds:
- "uv sync"
- task: index:install_python_uv

dev:
interactive: true
cmds:
- "uv run src/agent.py dev"
- task: index:dev_python_uv