Nebius
Overview
Nebius AI Studio is an inference provider offering a curated set of open-source models with competitive pricing and optional fast-inference tiers. Floopy proxies requests to Nebius’ OpenAI-compatible API.
Supported Models
| Model | Context Window | Notes |
|---|---|---|
deepseek-ai/DeepSeek-R1-0528 | 128K | DeepSeek R1 reasoning model |
deepseek-ai/DeepSeek-V3-0324 | 128K | DeepSeek V3 |
Qwen/Qwen3-Coder-480B-A35B-Instruct | 128K | Qwen 3 Coder flagship |
Qwen/Qwen3-235B-A22B-Thinking-2507 | 128K | Qwen 3 reasoning model |
Qwen/Qwen3-32B | 128K | Qwen 3 32B |
meta-llama/Llama-3.3-70B-Instruct | 128K | Llama 3.3 70B |
meta-llama/Llama-3.1-405B-Instruct | 128K | Llama 3.1 405B |
Setup
- Go to Settings > Providers in the dashboard.
- Click Add provider and select Nebius.
- Paste your Nebius 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: "Qwen/Qwen3-32B", 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="Qwen/Qwen3-32B", 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": "Qwen/Qwen3-32B", "messages": [{"role": "user", "content": "Explain quantum computing."}]}'Provider-Specific Features
- Fast inference tiers — Some models offer a “fast” tier at higher cost for lower latency.
- Batch inference — Batch processing at 50% of real-time pricing.
- Model naming — Models use the
Org/Model-Nameformat (e.g.,Qwen/Qwen3-32B).