Use Meridian inside Continue.dev
Step 1: Install Continue
Download and install the Continue extension from continue.dev. It is available for VS Code and JetBrains IDEs.
Step 2: Edit ~/.continue/config.json
Open your Continue configuration file and add Meridian as a model provider. Paste the following snippet into the models array:
{
"models": [
{
"title": "Meridian gpt-5-codex",
"provider": "openai",
"model": "gpt-5-codex",
"apiKey": "nim_live_***",
"apiBase": "https://meridian.getnimbus.net/api/v1"
},
{
"title": "Meridian Llama-4 Maverick",
"provider": "openai",
"model": "azure-swc/Llama-4-Maverick",
"apiKey": "nim_live_***",
"apiBase": "https://meridian.getnimbus.net/api/v1"
}
]
}Replace nim_live_*** with your Meridian API key from the dashboard.
Step 3: Restart VS Code
Reload your editor window so Continue picks up the new configuration. In VS Code, open the command palette and run Developer: Reload Window.
Step 4: Open command palette → Continue
Open the command palette (Ctrl+Shift+P / Cmd+Shift+P) and select Continue: Open Chat. Choose Meridian from the model dropdown and start coding.