From 39b13d8b95f57c4282182e92d81d854af54caf8b Mon Sep 17 00:00:00 2001 From: Kyle D Date: Fri, 27 Feb 2026 03:03:00 +0000 Subject: [PATCH] docs: add Avian as a supported LLM provider Add Avian (api.avian.io/v1) to the Memory Router supported providers table, provider URL examples, and model enhancement quickstart guide. Avian is an OpenAI-compatible API offering DeepSeek, Kimi, GLM, and MiniMax models. --- apps/docs/memory-router/overview.mdx | 1 + apps/docs/memory-router/usage.mdx | 5 +++++ apps/docs/model-enhancement/context-extender.mdx | 3 +++ apps/docs/model-enhancement/getting-started.mdx | 5 +++++ 4 files changed, 14 insertions(+) diff --git a/apps/docs/memory-router/overview.mdx b/apps/docs/memory-router/overview.mdx index 9ed0ba992..51272811a 100644 --- a/apps/docs/memory-router/overview.mdx +++ b/apps/docs/memory-router/overview.mdx @@ -94,6 +94,7 @@ The Memory Router works with any OpenAI-compatible endpoint: | Groq | `api.groq.com/openai/v1` | ✅ Fully Supported | | DeepInfra | `api.deepinfra.com/v1/openai` | ✅ Fully Supported | | OpenRouter | `openrouter.ai/api/v1` | ✅ Fully Supported | +| Avian | `api.avian.io/v1` | ✅ Fully Supported | | Custom | Any OpenAI-compatible | ✅ Supported | diff --git a/apps/docs/memory-router/usage.mdx b/apps/docs/memory-router/usage.mdx index 68dad6f68..940cfec07 100644 --- a/apps/docs/memory-router/usage.mdx +++ b/apps/docs/memory-router/usage.mdx @@ -26,6 +26,7 @@ You'll need: - [Anthropic](https://console.anthropic.com/settings/keys) - [Google Gemini](https://aistudio.google.com/app/apikey) - [Groq](https://console.groq.com/keys) + - [Avian](https://avian.io) @@ -61,6 +62,10 @@ https://api.supermemory.ai/v3/https://generativelanguage.googleapis.com/v1beta/o https://api.supermemory.ai/v3/https://api.groq.com/openai/v1/ ``` +```text Avian +https://api.supermemory.ai/v3/https://api.avian.io/v1/ +``` + ## Implementation Examples diff --git a/apps/docs/model-enhancement/context-extender.mdx b/apps/docs/model-enhancement/context-extender.mdx index a7d7897e9..bfb5492c9 100644 --- a/apps/docs/model-enhancement/context-extender.mdx +++ b/apps/docs/model-enhancement/context-extender.mdx @@ -227,6 +227,9 @@ supermemory works with any OpenAI-compatible API, including: Claude 3 models + + DeepSeek, Kimi, GLM, MiniMax models + Any provider with an OpenAI-compatible endpoint diff --git a/apps/docs/model-enhancement/getting-started.mdx b/apps/docs/model-enhancement/getting-started.mdx index 7af3bfab6..cfbce6201 100644 --- a/apps/docs/model-enhancement/getting-started.mdx +++ b/apps/docs/model-enhancement/getting-started.mdx @@ -18,6 +18,7 @@ Head to your LLM provider's dashboard and get your API key. - [Gemini](https://aistudio.google.com/apikey) - [Anthropic](https://console.anthropic.com/account/keys) - [Groq](https://console.groq.com/keys) +- [Avian](https://avian.io) ## Choose your endpoint @@ -43,6 +44,10 @@ https://api.supermemory.ai/v3/https://api.groq.com/openai/v1 ``` +```bash Avian +https://api.supermemory.ai/v3/https://api.avian.io/v1/chat/completions +``` + ```bash Other provider https://api.supermemory.ai/v3/ ```