Skip to content
Open
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
6 changes: 3 additions & 3 deletions docs/get-started/python.md
Original file line number Diff line number Diff line change
Expand Up @@ -97,19 +97,19 @@ In a terminal window, write your API key into an `.env` file as an environment v
=== "MacOS / Linux"

```bash title="Update: my_agent/.env"
echo 'GOOGLE_API_KEY="YOUR_API_KEY"' > .env
echo 'GOOGLE_API_KEY="YOUR_API_KEY"' > my_agent/.env
```

=== "Windows PowerShell"

```console title="Update: my_agent/.env"
echo 'GOOGLE_API_KEY="YOUR_API_KEY"' > .env
echo 'GOOGLE_API_KEY="YOUR_API_KEY"' > my_agent/.env
```

=== "Windows Command Prompt"

```console title="Update: my_agent/.env"
echo GOOGLE_API_KEY="YOUR_API_KEY" > .env
echo GOOGLE_API_KEY="YOUR_API_KEY" > my_agent/.env
```

??? tip "Using other AI models with ADK"
Expand Down