SDK compatibility
Because we expose OpenAI compatible APIs, most existing SDKs are available with zero changes. Just point the base_url to our gateway.
OpenAI-compatible SDKs
OpenAI Python
OpenAI Node.js
LangChain
LlamaIndex
Vercel AI SDK
Curl / HTTP
Native SDKs
Official first-party SDKs that wrap smart routing, billing, RLHF feedback and other extensions. 100% OpenAI-protocol compatible.
Python
nexevo-ai · sync + async + RAG / generation resources
Install
pip install nexevo-aiGitHub sourceNode.js / TypeScript
@nexevo/sdk · ESM + CJS dual build, full types
Install
npm install @nexevo/sdkGitHub sourceMigrate from OpenAI in 2 lines
Keep your OpenAI code as-is — only swap the api_key and add base_url.
Before
python
from openai import OpenAI
client = OpenAI(
api_key=os.environ["OPENAI_API_KEY"],
)
resp = client.chat.completions.create(
model="gpt-4o",
messages=[{"role": "user", "content": "Hi"}],
)After
python
from openai import OpenAI
client = OpenAI(
api_key=os.environ["NEXEVO_API_KEY"],
base_url="https://api.nexevo.ai/v1",
)
resp = client.chat.completions.create(
model="nexevo/balanced",
messages=[{"role": "user", "content": "Hi"}],
)Next step
Get API Key
Register an account to get started, no credit card required.
Register nowBrowse the model library
60+ Model Side-by-side Comparison - Price / Context / Capability Ratings.
See 100+ modelsCookbook example
15 ready-to-use code examples — RAG / streaming / tool calls / batch processing.
View Cookbook