From 42049275e216bb6c8b9e8716373235a2b07e0e60 Mon Sep 17 00:00:00 2001 From: Seven <246023385+seven7763@users.noreply.github.com> Date: Mon, 3 Aug 2026 07:30:32 +0800 Subject: [PATCH] docs(openai): add concrete DaoXE example for X-OpenAI-Baseurl DaoXE is one concrete example among OpenAI-compatible gateways. No pricing/uptime claims. Co-Authored-By: Claude Fable 5 --- docs/weaviate/model-providers/openai/embeddings.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/docs/weaviate/model-providers/openai/embeddings.md b/docs/weaviate/model-providers/openai/embeddings.md index e73187ac1..794a53699 100644 --- a/docs/weaviate/model-providers/openai/embeddings.md +++ b/docs/weaviate/model-providers/openai/embeddings.md @@ -274,7 +274,9 @@ Provide the headers as shown in the [API credentials examples](#api-credentials) :::note -By passing the `X-OpenAI-Baseurl`, you can use an endpoint compatible with the OpenAI API. Weaviate appends `/v1/embeddings` to this base URL. If this doesn't match your endpoint, you can rewrite the path with a proxy (e.g., `your.domain.com/v1/embeddings` -> `api.deepinfra.com/v1/openai/embeddings`). +By passing the `X-OpenAI-Baseurl`, you can use an endpoint compatible with the OpenAI API. Weaviate appends `/v1/embeddings` to this base URL. Example: `https://api.daoxe.com` (DaoXE's standard OpenAI-compatible base URL; it supports `/v1/embeddings`). + +If your endpoint uses a different path prefix, rewrite with a proxy (e.g., `your.domain.com/v1/embeddings` -> `api.deepinfra.com/v1/openai/embeddings` or `api.daoxe.com/v1/embeddings`). :::