Novita
Overview
Novita AI is an inference provider hosting a wide range of open-source models including DeepSeek, Qwen, Llama, and others at competitive pricing. Floopy proxies requests to Novita’s OpenAI-compatible API.
Supported Models
| Model | Context Window | Notes |
|---|---|---|
deepseek/deepseek-v3.2 | 128K | DeepSeek V3.2 via Novita |
deepseek/deepseek-r1-0528 | 128K | DeepSeek R1 reasoning model |
qwen/qwen3.5-397b-a17b | 128K | Qwen 3.5 flagship |
qwen/qwen3-coder-480b-a35b-instruct | 128K | Qwen 3 Coder for code generation |
meta-llama/llama-3.3-70b-instruct | 128K | Llama 3.3 70B |
meta-llama/llama-4-maverick-17b-128e-instruct-fp8 | 128K | Llama 4 Maverick |
Setup
- Go to Settings > Providers in the dashboard.
- Click Add provider and select Novita.
- Paste your Novita API key and click Save.
Usage
import OpenAI from "openai";
const client = new OpenAI({ baseURL: "https://api.floopy.ai/v1", apiKey: process.env.FLOOPY_API_KEY,});
const response = await client.chat.completions.create({ model: "deepseek/deepseek-v3.2", messages: [{ role: "user", content: "Explain quantum computing." }],});from openai import OpenAI
client = OpenAI(base_url="https://api.floopy.ai/v1", api_key=os.environ["FLOOPY_API_KEY"])
response = client.chat.completions.create( model="deepseek/deepseek-v3.2", messages=[{"role": "user", "content": "Explain quantum computing."}],)curl https://api.floopy.ai/v1/chat/completions \ -H "Authorization: Bearer $FLOOPY_API_KEY" \ -H "Content-Type: application/json" \ -d '{"model": "deepseek/deepseek-v3.2", "messages": [{"role": "user", "content": "Explain quantum computing."}]}'Provider-Specific Features
- Wide model selection — Access to 70+ open-source models from DeepSeek, Qwen, Llama, Gemma, MiniMax, and others.
- Competitive pricing — Often cheaper than running models directly, especially for smaller models.
- Model naming — Models use the
org/model-nameformat (e.g.,deepseek/deepseek-v3.2).