Skip to content

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

ModelContext WindowNotes
deepseek/deepseek-v3.2128KDeepSeek V3.2 via Novita
deepseek/deepseek-r1-0528128KDeepSeek R1 reasoning model
qwen/qwen3.5-397b-a17b128KQwen 3.5 flagship
qwen/qwen3-coder-480b-a35b-instruct128KQwen 3 Coder for code generation
meta-llama/llama-3.3-70b-instruct128KLlama 3.3 70B
meta-llama/llama-4-maverick-17b-128e-instruct-fp8128KLlama 4 Maverick

Setup

  1. Go to Settings > Providers in the dashboard.
  2. Click Add provider and select Novita.
  3. 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." }],
});

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-name format (e.g., deepseek/deepseek-v3.2).