Skip to content
Closed
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
1 change: 1 addition & 0 deletions apps/docs/memory-router/overview.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -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 |

<Warning>
Expand Down
5 changes: 5 additions & 0 deletions apps/docs/memory-router/usage.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -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)
</Step>

<Step title="Update Your Base URL">
Expand Down Expand Up @@ -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/
```

</CodeGroup>

## Implementation Examples
Expand Down
3 changes: 3 additions & 0 deletions apps/docs/model-enhancement/context-extender.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -227,6 +227,9 @@ supermemory works with any OpenAI-compatible API, including:
<Card title="Anthropic" icon="user-astronaut">
Claude 3 models
</Card>
<Card title="Avian" icon="feather">
DeepSeek, Kimi, GLM, MiniMax models
</Card>
<Card title="Other Providers" icon="plug">
Any provider with an OpenAI-compatible endpoint
</Card>
Expand Down
5 changes: 5 additions & 0 deletions apps/docs/model-enhancement/getting-started.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand All @@ -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/<your-provider's-openai-endpoint>
```
Expand Down