* Update starter to use new turn detection model * rm redundant para. * Untrack uv.lock and loosen livekit-agents version constraint uv.lock should not be tracked in the template (enforced by template-check.yml CI). Also change livekit-agents from ==1.6.0 to >=1.6.0 so the starter picks up newer compatible releases. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com> * Update livekit-agents dependency to version 1.6.1 --------- Co-authored-by: Claude Opus 4.8 (1M context) <noreply@anthropic.com> Co-authored-by: Chenghao Mou <chenghao.mou@livekit.io>
86 lines
2.6 KiB
YAML
86 lines
2.6 KiB
YAML
version: "3"
|
|
dotenv: [".env.local"]
|
|
vars:
|
|
INDENT: 4
|
|
REL_PATH: "{{ relPath .USER_WORKING_DIR .ROOT_DIR }}"
|
|
VENV_DIR: ".venv"
|
|
PYTHON_MAIN: '{{ joinPath "./src" "agent.py" }}'
|
|
|
|
tasks:
|
|
post_create:
|
|
desc: "Runs after this template is instantiated as a Sandbox or Bootstrap"
|
|
cmds:
|
|
- echo 'Your agent has been created!'
|
|
- task: help_run_console
|
|
- task: help_open_web_console
|
|
- echo ''
|
|
- echo 'To deploy your agent to LiveKit cloud:'
|
|
- echo ''
|
|
- echo '{{ indent .INDENT "lk agent deploy" }}'
|
|
- echo ''
|
|
- task: set_agent_name_if_present
|
|
- task: help_open_sandbox_if_present
|
|
|
|
set_agent_name_if_present:
|
|
status:
|
|
- test -z "$LIVEKIT_AGENT_NAME"
|
|
cmds:
|
|
- |
|
|
old='agent_name="my-agent"'
|
|
new='agent_name="{{ .LIVEKIT_AGENT_NAME }}"'
|
|
file="{{ .PYTHON_MAIN }}"
|
|
tmp="$(mktemp)"
|
|
while IFS= read -r line; do
|
|
printf '%s\n' "${line//$old/$new}" >> "$tmp"
|
|
done < "$file"
|
|
mv "$tmp" "$file"
|
|
|
|
help_run_console:
|
|
status:
|
|
- test -n "$LIVEKIT_AGENT_NAME"
|
|
cmds:
|
|
- echo 'To try your new agent directly in your terminal:'
|
|
- echo ''
|
|
- echo '{{ indent .INDENT "cd" }} {{ .REL_PATH }}'
|
|
- echo '{{ indent .INDENT "uv sync" }}'
|
|
- echo '{{ indent .INDENT "uv run" }} {{ .PYTHON_MAIN }} console'
|
|
|
|
help_open_web_console:
|
|
status:
|
|
- test -z "$LIVEKIT_AGENT_NAME"
|
|
vars:
|
|
CONSOLE_URL: "https://cloud.livekit.io/projects/p_/agents/console"
|
|
CONSOLE_LINK: '{{ print "\x1b]8;;" .CONSOLE_URL "/?autoStart=true&agentName=" .LIVEKIT_AGENT_NAME "\x1b\\\x1b[36;4m" .CONSOLE_URL "/?autoStart=true&agentName=" .LIVEKIT_AGENT_NAME "\x1b[0m\x1b]8;;\x1b\\" }}'
|
|
cmds:
|
|
- echo 'To try your new agent in the web console:'
|
|
- echo ''
|
|
- echo '{{ indent .INDENT "cd" }} {{ .REL_PATH }}'
|
|
- echo '{{ indent .INDENT "uv sync" }}'
|
|
- echo '{{ indent .INDENT "uv run" }} {{ .PYTHON_MAIN }} dev'
|
|
- echo ''
|
|
- echo 'Then visit:'
|
|
- echo ''
|
|
- echo '{{ indent .INDENT .CONSOLE_LINK }}'
|
|
|
|
help_open_sandbox_if_present:
|
|
status:
|
|
- test -z "$LIVEKIT_SANDBOX_ID"
|
|
vars:
|
|
SANDBOX_URL: 'https://{{ .LIVEKIT_SANDBOX_ID }}.sandbox.livekit.io'
|
|
SANDBOX_LINK: '{{ print "\x1b]8;;" .SANDBOX_URL "\x1b\\\x1b[36;4m" .SANDBOX_URL "\x1b[0m\x1b]8;;\x1b\\" }}'
|
|
cmds:
|
|
- echo 'To chat with your running agent, visit:'
|
|
- echo ''
|
|
- echo '{{ indent .INDENT .SANDBOX_LINK }}'
|
|
- echo ''
|
|
|
|
install:
|
|
desc: "Bootstrap application for local development"
|
|
cmds:
|
|
- "uv sync"
|
|
|
|
dev:
|
|
interactive: true
|
|
cmds:
|
|
- "uv run src/agent.py dev"
|