File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed
Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -27,7 +27,7 @@ cd agent-starter-python
2727uv sync
2828```
2929
30- Set up the environment by copying ` .env.example ` to ` .env ` and filling in the required values:
30+ Set up the environment by copying ` .env.example ` to ` .env.local ` and filling in the required values:
3131
3232- ` LIVEKIT_URL ` : Use [ LiveKit Cloud] ( https://cloud.livekit.io/ ) or [ run your own] ( https://docs.livekit.io/home/self-hosting/ )
3333- ` LIVEKIT_API_KEY `
@@ -39,7 +39,7 @@ Set up the environment by copying `.env.example` to `.env` and filling in the re
3939You can load the LiveKit environment automatically using the [ LiveKit CLI] ( https://docs.livekit.io/home/cli/cli-setup ) :
4040
4141``` bash
42- lk app env -w .env
42+ lk app env -w .env.local
4343```
4444
4545## Run the agent
Original file line number Diff line number Diff line change 2020
2121logger = logging .getLogger ("agent" )
2222
23- load_dotenv ()
23+ load_dotenv (".env.local" )
2424
2525
2626class Assistant (Agent ):
Original file line number Diff line number Diff line change 11version : " 3"
22output : interleaved
3- dotenv : [".env"]
3+ dotenv : [".env.local "]
44
55tasks :
66 post_create :
You can’t perform that action at this time.
0 commit comments