mirror of
https://github.com/carlrobertoh/ProxyAI.git
synced 2026-04-28 03:30:48 +00:00
48 lines
1.4 KiB
Text
48 lines
1.4 KiB
Text
# Inception
|
||
|
||
Website: https://inceptionlabs.ai/
|
||
|
||
Inception powers Mercury 2 and Mercury Edit 2, diffusion LLMs (dLLMs) tuned for fast, consistent code generation and multi-line edits. Unlike token-by-token generation, a dLLM refines drafts across many spans at once, which makes it especially strong at structural changes and predictive edits across files.
|
||
|
||
In the plugin, Inception uses:
|
||
|
||
- `mercury-2` as the general-purpose model for workflows such as Chat and Agent
|
||
- `mercury-edit-2` for Autocomplete and Next-Edit Suggestions
|
||
|
||
## Getting Started
|
||
|
||
Follow these steps to configure ProxyAI with your Inception API key:
|
||
|
||
import { Steps } from 'nextra/components'
|
||
|
||
<Steps>
|
||
### Create Your Account
|
||
|
||
If you don’t already have one, create an account at [Inception](https://platform.inceptionlabs.ai/.).
|
||
|
||
### Get Your API Key
|
||
|
||
From your Inception dashboard, create an API key and copy it to your clipboard.
|
||
|
||
### Apply Your API Key
|
||
|
||
Configure the ProxyAI plugin to use Inception:
|
||
|
||
- Go to **File > Settings/Preferences > Tools > ProxyAI > Providers > Inception**.
|
||
- Paste your API key into the designated field.
|
||
- Click `Apply` or `OK` to save your changes.
|
||
<br/>
|
||
</Steps>
|
||
|
||
## How to Configure
|
||
|
||
<video
|
||
style={{ width: '100%', borderRadius: 12 }}
|
||
src="https://www.tryproxy.io/videos/mercury-coder-1.webm"
|
||
controls
|
||
muted
|
||
playsInline
|
||
preload="metadata"
|
||
>
|
||
Your browser does not support the video tag.
|
||
</video>
|