We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4d1412c commit 346a880Copy full SHA for 346a880
.github/workflows/deploy-agent.yml
@@ -3,13 +3,10 @@ name: Deploy Agent to LiveKit Cloud
3
on:
4
push:
5
branches:
6
- - main
+ - production # We are using production branch for the agent deployment! But you maybe need to change it to main for your own use case.
7
- nikita/v2
8
paths:
9
- 'agent/**'
10
- - '!agent/livekit.toml'
11
- - '!agent/README.md'
12
- - '!agent/**/*.md'
13
workflow_dispatch:
14
inputs:
15
operation:
agent/main.py
@@ -27,7 +27,7 @@
27
28
load_dotenv(dotenv_path=".env.local")
29
30
-logger = logging.getLogger("gemini-playground-agent")
+logger = logging.getLogger("gemini-playground")
31
logger.setLevel(logging.INFO)
32
33
0 commit comments