mirror of
https://github.com/supermemoryai/supermemory.git
synced 2026-08-28 05:25:33 +00:00
docs: add OrcaRouter provider tab to self-hosting docs
This commit is contained in:
parent
2e85722cf4
commit
d41586f665
1 changed files with 13 additions and 1 deletions
|
|
@ -1,7 +1,7 @@
|
|||
---
|
||||
title: "Using supermemory local with different providers"
|
||||
sidebarTitle: "Providers"
|
||||
description: "Copy-paste .env setup for Ollama, OpenAI, Anthropic, Gemini, and OpenRouter"
|
||||
description: "Copy-paste .env setup for Ollama, OpenAI, Anthropic, Gemini, OpenRouter, and OrcaRouter"
|
||||
icon: "route"
|
||||
---
|
||||
|
||||
|
|
@ -59,4 +59,16 @@ OPENAI_MODEL=openai/gpt-4o-mini
|
|||
|
||||
Set `OPENAI_MODEL` to any model slug from [OpenRouter's model list](https://openrouter.ai/models) — routing, fallback, and pricing all follow OpenRouter's own rules from there.
|
||||
</Tab>
|
||||
|
||||
<Tab title="OrcaRouter">
|
||||
OrcaRouter isn't a native provider either — it's OpenAI-compatible, so it slots into the same `OPENAI_BASE_URL` path as Ollama and OpenRouter:
|
||||
|
||||
```bash .env
|
||||
OPENAI_BASE_URL=https://api.orcarouter.ai/v1
|
||||
OPENAI_API_KEY=sk-orca-...
|
||||
OPENAI_MODEL=openai/gpt-5.5
|
||||
```
|
||||
|
||||
Set `OPENAI_MODEL` to any model slug from [OrcaRouter's model list](https://www.orcarouter.ai/models) — routing, fallback, and pricing all follow OrcaRouter's own rules from there.
|
||||
</Tab>
|
||||
</Tabs>
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue