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
2 changes: 1 addition & 1 deletion methods/EverCore/docs/dev_docs/getting_started.md
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ Edit the `.env` file and fill in actual values for the following required items:
```bash
# LLM provider and model
LLM_PROVIDER=openrouter
LLM_MODEL=x-ai/grok-4-fast
LLM_MODEL=openai/gpt-4.1-mini
LLM_TEMPERATURE=0.3
LLM_MAX_TOKENS=32768

Expand Down
2 changes: 1 addition & 1 deletion methods/EverCore/docs/usage/CONFIGURATION_GUIDE.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ Provider selection is config-driven (e.g., `llm_config` in the app). When no sce
| Variable | Required | Description | Example |
|----------|----------|-------------|---------|
| `LLM_PROVIDER` | No | Default provider type (used when scene config omits provider) | `openrouter` |
| `LLM_MODEL` | Yes | Model name. **Evaluation** recommends `gpt-4o-mini`, **Demo** can use cost-effective models like `x-ai/grok-4-fast` | `gpt-4o-mini` |
| `LLM_MODEL` | Yes | Model name. **Evaluation** recommends `gpt-4o-mini`, **Demo** can use cost-effective models like `openai/gpt-4.1-mini` | `gpt-4o-mini` |
| `{PROVIDER}_API_KEY` | Yes* | Provider-specific API key (e.g., `OPENROUTER_API_KEY`, `OPENAI_API_KEY`) | `sk-or-v1-xxxx` |
| `{PROVIDER}_BASE_URL` | No | Provider-specific base URL (e.g., `OPENROUTER_BASE_URL`, `OPENAI_BASE_URL`) | `https://openrouter.ai/api/v1` |
| `LLM_API_KEY` | No | Fallback API key for default provider (legacy compatibility) | `sk-or-v1-xxxx` |
Expand Down
2 changes: 1 addition & 1 deletion methods/EverCore/env.template
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@

# LLM_PROVIDER controls the default provider (used when scene config omits provider)
LLM_PROVIDER=openrouter
LLM_MODEL=x-ai/grok-4-fast
LLM_MODEL=openai/gpt-4.1-mini
LLM_TEMPERATURE=0.3
LLM_MAX_TOKENS=32768
# Default provider fallback (legacy)
Expand Down
Loading