diff --git a/content/docs/02-foundations/02-providers-and-models.mdx b/content/docs/02-foundations/02-providers-and-models.mdx
index 1c9ad4dc764a..902a0eef2568 100644
--- a/content/docs/02-foundations/02-providers-and-models.mdx
+++ b/content/docs/02-foundations/02-providers-and-models.mdx
@@ -54,6 +54,7 @@ You can also use the [OpenAI Compatible provider](/providers/openai-compatible-p
- [LM Studio](/providers/openai-compatible-providers/lmstudio)
- [Heroku](/providers/openai-compatible-providers/heroku)
+- [OVHcloud AI Endpoints](/providers/openai-compatible-providers/ovhcloud)
Our [language model specification](https://github.com/vercel/ai/tree/main/packages/provider/src/language-model/v2) is published as an open-source package, which you can use to create [custom providers](/providers/community-providers/custom-providers).
diff --git a/content/providers/02-openai-compatible-providers/55-ovhcloud.mdx b/content/providers/02-openai-compatible-providers/55-ovhcloud.mdx
new file mode 100644
index 000000000000..0c463d698832
--- /dev/null
+++ b/content/providers/02-openai-compatible-providers/55-ovhcloud.mdx
@@ -0,0 +1,116 @@
+---
+title: OVHcloud AI Endpoints
+description: Use a OVHcloud AI Endpoints OpenAI compatible API with the AI SDK.
+---
+
+# OVHcloud AI Endpoints Provider
+
+[OVHcloud AI Endpoints](https://endpoints.ai.cloud.ovh.net) is a cloud provider that does inference which allows you to access world-renowned pre-trained AI models compatible with the OpenAI API specification.
+As a leading European cloud provider, OVHcloud ensures data sovereignty and full GDPR compliance.
+
+## Setup
+
+The OVHcloud AI Endpoints provider is available via the `@ai-sdk/openai-compatible` module as it is compatible with the OpenAI API.
+You can install it with
+
+
+
+
+
+
+
+
+
+
+
+
+
+Don't forget to install the core `ai` package if you haven't already:
+
+
+
+
+
+
+
+
+
+
+
+
+
+### OVHcloud AI Endpoints Setup
+
+1. **Sign Up/Sign In:** Go to the [OVHcloud manager](https://ovh.com/manager). Create an account or sign in.
+
+2. **Navigate to Public Cloud:** Go to the `Public Cloud` section, and create a new project. Navigate to `AI Endpoints` in the AI & Machine Learning section.
+
+3. **Create a Key:** Click to `API keys` and create a new key.
+
+## Provider Instance
+
+To use OVHcloud AI Endpoints, you can create a custom provider instance with the `createOpenAICompatible` function from `@ai-sdk/openai-compatible`:
+
+```ts
+import { createOpenAICompatible } from '@ai-sdk/openai-compatible';
+
+const ovhcloud = createOpenAICompatible({
+ name: 'ovhcloud',
+ baseURL: 'https://oai.endpoints.kepler.ai.cloud.ovh.net/v1',
+ apiKey: 'your-api-key',
+});
+```
+
+## Language Models
+
+The first argument is the choosen model name, e.g. `gpt-oss-120b`.
+
+```ts
+const model = ovhcloud('gpt-oss-120b');
+```
+
+### Example
+
+You can use OVHcloud AI Endpoints LLMs to generate text with the `generateText` function:
+
+```ts
+import { createOpenAICompatible } from '@ai-sdk/openai-compatible';
+import { generateText } from 'ai';
+
+const ovhcloud = createOpenAICompatible({
+ name: 'ovhcloud',
+ baseURL: 'https://oai.endpoints.kepler.ai.cloud.ovh.net/v1',
+ apiKey: 'your-api-key',
+});
+
+const { text } = await generateText({
+ model: ovhcloud('gpt-oss-120b'),
+ prompt: 'Tell me about yourself in one sentence',
+});
+
+console.log(text);
+```
+
+OVHcloud AI Endpoints LLMs are also able to generate text in a streaming fashion with the `streamText` function:
+
+```ts
+import { createOpenAICompatible } from '@ai-sdk/openai-compatible';
+import { streamText } from 'ai';
+
+const ovhcloud = createOpenAICompatible({
+ name: 'ovhcloud',
+ baseURL: 'https://oai.endpoints.kepler.ai.cloud.ovh.net/v1',
+ apiKey: 'your-api-key',
+});
+
+const result = streamText({
+ model: ovhcloud('gpt-oss-120b'),
+ prompt: 'Tell me about yourself in one sentence',
+});
+
+for await (const message of result.textStream) {
+ console.log(message);
+}
+```
+
+OVHcloud AI Endpoints LLMs can also be used in the `generateObject`, and `streamObject` functions.
diff --git a/content/providers/02-openai-compatible-providers/index.mdx b/content/providers/02-openai-compatible-providers/index.mdx
index 309e1245e9b2..07ce184d2986 100644
--- a/content/providers/02-openai-compatible-providers/index.mdx
+++ b/content/providers/02-openai-compatible-providers/index.mdx
@@ -14,6 +14,7 @@ We provide detailed documentation for the following OpenAI compatible providers:
- [LM Studio](/providers/openai-compatible-providers/lmstudio)
- [NIM](/providers/openai-compatible-providers/nim)
- [Heroku](/providers/openai-compatible-providers/heroku)
+- [OVHcloud AI Endpoints](/providers/openai-compatible-providers/ovhcloud)
The general setup and provider instance creation is the same for all of these providers.