Skip to content
Merged
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
4 changes: 2 additions & 2 deletions python/samples/crewai/poem_flow/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ When interacting with the agent, you do not need to provide any input because th
2. **Set environment variables**:

```bash
export KAGENT_URL=http://localhost:8080
export KAGENT_URL=http://localhost:8083
export OPENAI_API_KEY="..."
```

Expand All @@ -72,6 +72,6 @@ When interacting with the agent, you do not need to provide any input because th
The agent can be configured via environment variables:

- `GEMINI_API_KEY`: Required for LLM access
- `KAGENT_URL`: KAgent server URL (default: http://localhost:8080)
- `KAGENT_URL`: Required. KAgent server URL (for local development, you can set it to `http://localhost:8083`)
- `PORT`: Server port (default: 8080)
- `HOST`: Server host (default: 0.0.0.0)
4 changes: 2 additions & 2 deletions python/samples/crewai/research-crew/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ kubectl apply -f agent.yaml
2. **Set environment variables**:

```bash
export KAGENT_URL=http://localhost:8080
export KAGENT_URL=http://localhost:8083
export OPENAI_API_KEY="sk-..."
export SERPER_API_KEY="..."
```
Expand All @@ -88,6 +88,6 @@ The agent can be configured via environment variables:

- `OPENAI_API_KEY`: Required for LLM access
- `SERPER_API_KEY`: Required for web search functionality
- `KAGENT_URL`: KAgent server URL (default: http://localhost:8080)
- `KAGENT_URL`: Required KAgent server URL (typically `http://localhost:8083` for a local controller)
- `PORT`: Server port (default: 8080)
- `HOST`: Server host (default: 0.0.0.0)
4 changes: 2 additions & 2 deletions python/samples/langgraph/currency/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ uv sync

```bash
export GOOGLE_API_KEY=your_api_key_here
export KAGENT_URL=http://localhost:8080
export KAGENT_URL=http://localhost:8083
```

3. Run the agent server:
Expand Down Expand Up @@ -83,7 +83,7 @@ The agent maintains conversation history across sessions using the KAgent REST A
The agent can be configured via environment variables:

- `GOOGLE_API_KEY`: Required for Gemini API access
- `KAGENT_URL`: KAgent server URL (default: http://localhost:8080)
- `KAGENT_URL`: Required. KAgent server URL; for local development, the controller commonly runs at `http://localhost:8083`
- `PORT`: Server port (default: 8080)
- `HOST`: Server host (default: 0.0.0.0)

Expand Down