Together
Overview
Together is an inference provider hosting a wide range of open-source models including Llama, Mixtral, Qwen, and others. Floopy proxies requests to Together’s OpenAI-compatible API.
Supported Models
| Model | Context Window | Notes |
|---|---|---|
meta-llama/Llama-3.3-70B-Instruct-Turbo | 128K | Llama 3.3 70B Turbo |
meta-llama/Llama-4-Maverick-17B-128E-Instruct-FP8 | 128K | Llama 4 Maverick |
Qwen/Qwen3-235B-A22B | 128K | Qwen 3 235B MoE |
mistralai/Mixtral-8x22B-Instruct-v0.1 | 64K | Mixtral 8x22B |
deepseek-ai/DeepSeek-V3 | 128K | DeepSeek V3 |
Setup
- Go to Settings > Providers in the dashboard.
- Click Add provider and select Together.
- Paste your Together 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: "meta-llama/Llama-3.3-70B-Instruct-Turbo", 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="meta-llama/Llama-3.3-70B-Instruct-Turbo", 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": "meta-llama/Llama-3.3-70B-Instruct-Turbo", "messages": [{"role": "user", "content": "Explain quantum computing."}]}'Provider-Specific Features
- Large model catalog — Access to Llama, Qwen, Mixtral, DeepSeek, and many other open-source models.
- Turbo variants — Some models offer Turbo variants optimized for faster inference at lower cost.
- Model naming — Models use the
org/Model-Nameformat (e.g.,meta-llama/Llama-3.3-70B-Instruct-Turbo).