Skip to content
Open
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
7 changes: 7 additions & 0 deletions samples/agent/adk/contact_lookup/.env.example
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# Copy this file to .env and fill in your API key
# Get your API key at: https://aistudio.google.com/apikey

GEMINI_API_KEY=your_gemini_api_key_here

# Optional: Use Vertex AI instead of Gemini API
# GOOGLE_GENAI_USE_VERTEXAI=TRUE
3 changes: 2 additions & 1 deletion samples/agent/adk/contact_lookup/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,8 @@ This sample uses the Agent Development Kit (ADK) along with the A2A protocol to
2. Create an environment file with your API key:

```bash
echo "GEMINI_API_KEY=your_api_key_here" > .env
cp .env.example .env
# Edit .env with your actual API key (do not commit .env)
```

3. Run the server:
Expand Down
7 changes: 7 additions & 0 deletions samples/agent/adk/orchestrator/.env.example
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# Copy this file to .env and fill in your API key
# Get your API key at: https://aistudio.google.com/apikey

GEMINI_API_KEY=your_gemini_api_key_here

# Optional: Use Vertex AI instead of Gemini API
# GOOGLE_GENAI_USE_VERTEXAI=TRUE
4 changes: 2 additions & 2 deletions samples/agent/adk/orchestrator/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ Subagents are configured using RemoteA2aAgent which translates ADK events to A2A
1. Create an environment file with your API key:

```bash
echo "GEMINI_API_KEY=your_api_key_here" > .env

cp .env.example .env
# Edit .env with your actual API key (do not commit .env)
```

2. Run subagents
Expand Down
7 changes: 7 additions & 0 deletions samples/agent/adk/restaurant_finder/.env.example
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# Copy this file to .env and fill in your API key
# Get your API key at: https://aistudio.google.com/apikey

GEMINI_API_KEY=your_gemini_api_key_here

# Optional: Use Vertex AI instead of Gemini API
# GOOGLE_GENAI_USE_VERTEXAI=TRUE
3 changes: 2 additions & 1 deletion samples/agent/adk/restaurant_finder/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,8 @@ This sample uses the Agent Development Kit (ADK) along with the A2A protocol to
2. Create an environment file with your API key:

```bash
echo "GEMINI_API_KEY=your_api_key_here" > .env
cp .env.example .env
# Edit .env with your actual API key (do not commit .env)
```

3. Run the agent server:
Expand Down
7 changes: 7 additions & 0 deletions samples/agent/adk/rizzcharts/.env.example
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# Copy this file to .env and fill in your API key
# Get your API key at: https://aistudio.google.com/apikey

GEMINI_API_KEY=your_gemini_api_key_here

# Optional: Use Vertex AI instead of Gemini API
# GOOGLE_GENAI_USE_VERTEXAI=TRUE
4 changes: 2 additions & 2 deletions samples/agent/adk/rizzcharts/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ This sample uses the Agent Development Kit (ADK) along with the A2A protocol to
2. Create an environment file with your API key:

```bash
echo "GEMINI_API_KEY=your_api_key_here" > .env

cp .env.example .env
# Edit .env with your actual API key (do not commit .env)
```

3. Run an agent:
Expand Down
7 changes: 3 additions & 4 deletions samples/client/angular/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,9 @@ NOTE: [For the rizzcharts app](../../agent/adk/rizzcharts/), you will need Googl
Here is the quickstart for the restaurant app:

```bash
# Export your Gemini API key
export GEMINI_API_KEY=your_gemini_api_key
echo "export GEMINI_API_KEY=your_gemini_api_key" >> .env
cp .env ../../agent/adk/restaurant_finder/.env
# Set up your Gemini API key
cp ../../agent/adk/restaurant_finder/.env.example ../../agent/adk/restaurant_finder/.env
# Edit the .env file with your actual API key (do not commit .env)

# Start the restaurant app frontend
npm install
Expand Down
11 changes: 11 additions & 0 deletions specification/0.8/eval/.env.example
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# Copy this file to .env and fill in your API keys
# You only need keys for the models you want to test

# Gemini API Key - https://aistudio.google.com/apikey
GEMINI_API_KEY=your_gemini_api_key_here

# OpenAI API Key - https://platform.openai.com/api-keys
OPENAI_API_KEY=your_openai_api_key_here

# Anthropic API Key - https://console.anthropic.com/settings/keys
ANTHROPIC_API_KEY=your_anthropic_api_key_here
7 changes: 7 additions & 0 deletions specification/0.8/eval/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,13 @@ To use the models, you need to set the following environment variables with your

You can set these in a `.env` file in the root of the project, or in your shell's configuration file (e.g., `.bashrc`, `.zshrc`).

A `.env.example` file is provided as a template:

```bash
cp .env.example .env
# Edit .env with your API keys (do not commit .env)
```

You also need to install dependencies before running:

```bash
Expand Down
11 changes: 11 additions & 0 deletions specification/0.9/eval/.env.example
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# Copy this file to .env and fill in your API keys
# You only need keys for the models you want to test

# Gemini API Key - https://aistudio.google.com/apikey
GEMINI_API_KEY=your_gemini_api_key_here

# OpenAI API Key - https://platform.openai.com/api-keys
OPENAI_API_KEY=your_openai_api_key_here

# Anthropic API Key - https://console.anthropic.com/settings/keys
ANTHROPIC_API_KEY=your_anthropic_api_key_here
7 changes: 7 additions & 0 deletions specification/0.9/eval/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,13 @@ To use the models, you need to set the following environment variables with your

You can set these in a `.env` file in the root of the project, or in your shell's configuration file (e.g., `.bashrc`, `.zshrc`).

A `.env.example` file is provided as a template:

```bash
cp .env.example .env
# Edit .env with your API keys (do not commit .env)
```

You also need to install dependencies before running:

```bash
Expand Down