Works with everything
Nova's API is fully OpenAI-compatible. If it works with OpenAI, it works with Nova — change two lines of code to access 100+ models.
from openai import OpenAI
client = OpenAI(
api_key="nvk_...",
base_url="https://api.nova.ai/v1",
)
response = client.chat.completions.create(
model="deepseek/deepseek-r1",
messages=[{"role": "user", "content": "Hello!"}],
)
print(response.choices[0].message.content)Cursor
AI code editor with Nova as model backend.
VS Code
GitHub Copilot alternative via Continue extension.
JetBrains
IntelliJ, PyCharm, WebStorm — via AI plugin.
Zed
Ultra-fast editor with built-in AI assistant.
Windsurf
Agentic IDE — Nova powers its Cascade feature.
Neovim
Avante.nvim and similar plugins for AI coding.
LangChain
Drop-in OpenAI provider with base_url override.
LlamaIndex
Use Nova models for RAG pipelines and agents.
Vercel AI SDK
Stream responses with the openai() provider.
Instructor
Structured outputs and function calling.
DSPy
Declarative AI programs with Nova LLMs.
CrewAI
Multi-agent orchestration with Nova backends.
Replit
Build and deploy AI apps in-browser.
Bubble
AI-powered no-code apps with Nova API.
Zapier
Automate workflows with AI steps via Nova.
Make
Connect Nova to any app in your workflow.
Flowise
Drag-and-drop LLM app builder.
Aider
AI pair programmer for your terminal.
Claude Code
Anthropic's CLI agent — point to Nova.
Shell-GPT
Natural language shell commands.
LangSmith
Trace and evaluate Nova API calls.
Helicone
Observability proxy for Nova requests.
Portkey
AI gateway with caching and monitoring.
Python SDK
pip install openai — set base_url to Nova.
Node.js SDK
npm install openai — works out of the box.
Rust async-openai
Rust crate — set base_url and api_key.
Go openai
sashabaranov/go-openai with Nova endpoint.
Not seeing your tool?
If it supports a custom OpenAI base URL, it works with Nova. Get your key and try it.