From d41586f6659f5d9f097db987caf84737533288e5 Mon Sep 17 00:00:00 2001 From: Marc-oss-hub Date: Fri, 14 Aug 2026 23:02:51 +0800 Subject: [PATCH] docs: add OrcaRouter provider tab to self-hosting docs --- apps/docs/self-hosting/providers.mdx | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/apps/docs/self-hosting/providers.mdx b/apps/docs/self-hosting/providers.mdx index 84ec1c4e..556a7dac 100644 --- a/apps/docs/self-hosting/providers.mdx +++ b/apps/docs/self-hosting/providers.mdx @@ -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. + + +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. +