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
16 changes: 16 additions & 0 deletions cli/golem-cli/src/app/template/snippet.rs
Original file line number Diff line number Diff line change
Expand Up @@ -102,6 +102,22 @@ pub static DOC_DEPENDENCIES: LazyLock<Vec<DocDependencyGroup>> = LazyLock::new(|
vec![env("OPENROUTER_API_KEY", "<KEY>", "")],
golem_ai("golem_llm_openrouter"),
),
dep(
"OrcaRouter",
vec![
env(
"OPENAI_API_KEY",
"<KEY>",
"OrcaRouter API key (sk-orca-...)",
),
env(
"OPENAI_BASE_URL",
"https://api.orcarouter.ai/v1",
"OrcaRouter OpenAI-compatible endpoint",
),
],
golem_ai("golem_llm_openai"),
),
dep(
"Amazon Bedrock",
vec![
Expand Down
1 change: 1 addition & 0 deletions docs/src/content/next/develop/ai.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ The list of supported LLM providers is the following:
- [Ollama](https://ollama.com)
- [OpenAI](https://openai.com)
- [OpenRouter](https://openrouter.ai)
- [OrcaRouter](https://www.orcarouter.ai)

The core trait for LLMs (from the `golem-llm` crate):

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ Provider crates (pick one):
| xAI / Grok | `golem-ai-llm-grok` | `XAI_API_KEY` |
| Ollama | `golem-ai-llm-ollama` | `GOLEM_OLLAMA_BASE_URL` (optional, defaults to `http://localhost:11434`) |
| OpenRouter | `golem-ai-llm-openrouter` | `OPENROUTER_API_KEY` |
| OrcaRouter | `golem-ai-llm-openai` | `OPENAI_API_KEY`, `OPENAI_BASE_URL` |

### Embeddings & Reranking

Expand Down
1 change: 1 addition & 0 deletions docs/src/content/v1.5/develop/ai.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ The list of supported LLM providers is the following:
- [Ollama](https://ollama.com)
- [OpenAI](https://openai.com)
- [OpenRouter](https://openrouter.ai)
- [OrcaRouter](https://www.orcarouter.ai)

The core trait for LLMs (from the `golem-llm` crate):

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ Provider crates (pick one):
| xAI / Grok | `golem-ai-llm-grok` | `XAI_API_KEY` |
| Ollama | `golem-ai-llm-ollama` | `GOLEM_OLLAMA_BASE_URL` (optional, defaults to `http://localhost:11434`) |
| OpenRouter | `golem-ai-llm-openrouter` | `OPENROUTER_API_KEY` |
| OrcaRouter | `golem-ai-llm-openai` | `OPENAI_API_KEY`, `OPENAI_BASE_URL` |

### Embeddings & Reranking

Expand Down
1 change: 1 addition & 0 deletions golem-skills/skills/rust/golem-add-llm-rust/SKILL.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ Provider crates (pick one):
| xAI / Grok | `golem-ai-llm-grok` | `XAI_API_KEY` |
| Ollama | `golem-ai-llm-ollama` | `GOLEM_OLLAMA_BASE_URL` (optional, defaults to `http://localhost:11434`) |
| OpenRouter | `golem-ai-llm-openrouter` | `OPENROUTER_API_KEY` |
| OrcaRouter | `golem-ai-llm-openai` | `OPENAI_API_KEY`, `OPENAI_BASE_URL` |

### Embeddings & Reranking

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ Provider crates (pick one):
| xAI / Grok | `golem-ai-llm-grok` | `XAI_API_KEY` |
| Ollama | `golem-ai-llm-ollama` | `GOLEM_OLLAMA_BASE_URL` (optional, defaults to `http://localhost:11434`) |
| OpenRouter | `golem-ai-llm-openrouter` | `OPENROUTER_API_KEY` |
| OrcaRouter | `golem-ai-llm-openai` | `OPENAI_API_KEY`, `OPENAI_BASE_URL` |

### Embeddings & Reranking

Expand Down
Loading