From 3ebf90d52868c5b5c42f9f2986ade37972fd738b Mon Sep 17 00:00:00 2001 From: EvolinkAI Date: Sun, 14 Jun 2026 18:52:27 +0800 Subject: [PATCH] docs: add EvoLink custom endpoint example --- integrations/providers.md | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/integrations/providers.md b/integrations/providers.md index 248d17c..cbb8543 100644 --- a/integrations/providers.md +++ b/integrations/providers.md @@ -1115,6 +1115,7 @@ Any service with an OpenAI-compatible API works. Some popular options: | [DeepSeek](https://deepseek.com) | `https://api.deepseek.com/v1` | DeepSeek models | | [Fireworks AI](https://fireworks.ai) | `https://api.fireworks.ai/inference/v1` | Fast open model hosting | | [GMI Cloud](https://www.gmicloud.ai/) | `https://api.gmi-serving.com/v1` | Managed OpenAI-compatible inference | +| [EvoLink](https://evolink.ai) | `https://direct.evolink.ai/v1` | Multi-model OpenAI-compatible gateway | | [Cerebras](https://cerebras.ai) | `https://api.cerebras.ai/v1` | Wafer-scale chip inference | | [Mistral AI](https://mistral.ai) | `https://api.mistral.ai/v1` | Mistral models | | [OpenAI](https://openai.com) | `https://api.openai.com/v1` | Direct OpenAI access | @@ -1132,6 +1133,18 @@ model: api_key: your-together-key ``` +For example, to use EvoLink as an OpenAI-compatible custom endpoint: + +```yaml +model: + default: gpt-5.2 + provider: custom + base_url: https://direct.evolink.ai/v1 + api_key: your-evolink-key +``` + +Use a model id returned by EvoLink's `/v1/models` endpoint. + --- ### Context Length Detection