diff --git a/docs/customize/model-providers/top-level/inception.mdx b/docs/customize/model-providers/top-level/inception.mdx
index 4c48e709c17..5cb034a603e 100644
--- a/docs/customize/model-providers/top-level/inception.mdx
+++ b/docs/customize/model-providers/top-level/inception.mdx
@@ -9,7 +9,19 @@ sidebarTitle: "Inception"
- Get an API key from [Inception Platform](https://platform.inceptionlabs.ai/dashboard/api-keys)
+ Get an API key from the [Inception Platform](https://platform.inceptionlabs.ai/dashboard/api-keys)
+
+
+## Models
+
+Inception offers several models tailored for specific developer workflows:
+
+- **mercury-2**: A general-purpose model supporting tool calling and a 128k context window.
+- **mercury-edit-2**: Optimized for code editing and complex transformations.
+- **mercury-coder-small**: A lightweight model designed for low-latency coding completions.
+
+
+ The Inception provider inherits from the OpenAI class, supporting dynamic model discovery via the `listModels()` method.
## Configuration
@@ -22,9 +34,9 @@ sidebarTitle: "Inception"
schema: v1
models:
- - name:
+ - name: Inception Mercury-2
provider: inception
- model:
+ model: mercury-2
apiKey:
```
@@ -33,9 +45,9 @@ sidebarTitle: "Inception"
{
"models": [
{
- "title": "",
+ "title": "Inception Mercury-2",
"provider": "inception",
- "model": "",
+ "model": "mercury-2",
"apiKey": ""
}
]
@@ -45,5 +57,5 @@ sidebarTitle: "Inception"
- **Check out a more advanced configuration [here](https://continue.dev/inceptionlabs/mercury-coder?view=config)**
+ **View more advanced configuration options [here](https://continue.dev/inceptionlabs/mercury-coder?view=config)**