AirforceFreeOperational
Plutotext R3 Emotional
API model name: plutotext-r3-emotional
Plutotext R3 Emotional is Airforce's chat model, served on the Api.Airforce unified API. It is available on the free tier at no per-token cost. Access it through the OpenAI-compatible API with one key, alongside 100+ other models on Api.Airforce.
Pricing
Specifications
- Provider
- Airforce
- Type
- chat model
What is Plutotext R3 Emotional used for?
- Chatbots & assistants — conversational AI, drafting, summarizing and Q&A.
Plutotext R3 Emotional vs. similar models
| Model | Intelligence | Context | Input / 1M | Output / 1M |
|---|---|---|---|---|
| Plutotext R3 Emotional | — | — | Free | Free |
| Gpt 5.4 | 35.4 | — | $0.75 | $5.00 |
| Gpt 5.4 Mini | 23.3 | — | $0.20 | $1.20 |
| Gpt 5.4 Nano | 38.1 | — | $0.10 | $0.60 |
Prices are Api.Airforce pay-as-you-go rates per 1M tokens. Context is the maximum input length.
Related models
Image 1Airforce · $40.00 / 1MImage 1 EditAirforce · $120.00 / 1MImage 1 WatermarkAirforce · $10.00 / 1MGpt 5.4OpenAI · $0.75 / 1MGpt 5.4 MiniOpenAI · $0.20 / 1MGpt 5.4 NanoOpenAI · $0.10 / 1MGpt 5.4 ProOpenAI · $13.28 / 1MGpt 5.5OpenAI · $1.20 / 1MGpt 5.5 ProOpenAI · $22.50 / 1MGpt Oss 120bOpenAI · FreeGpt Oss 20bOpenAI · FreeGrok 2 VisionxAI · $3.12 / 1M
Plutotext R3 Emotional — frequently asked questions
- How much does Plutotext R3 Emotional cost?
- Plutotext R3 Emotional is available on the free tier at no token cost — create an API key and start building. Paid plans add higher rate limits.
- What can Plutotext R3 Emotional do?
- Plutotext R3 Emotional is Airforce's chat model, accessible through the Api.Airforce API.
- Is Plutotext R3 Emotional free to use?
- Yes — Plutotext R3 Emotional is on the free tier. You can use it with an Api.Airforce API key at no cost.
- How do I use Plutotext R3 Emotional via the API?
- Plutotext R3 Emotional is OpenAI-compatible. Point any OpenAI SDK at https://api.airforce/v1 and pass the model ID plutotext-r3-emotional with your Api.Airforce API key.
- Who makes Plutotext R3 Emotional?
- Plutotext R3 Emotional is Airforce's chat model, served through the unified Api.Airforce gateway alongside 100+ other models.
Loading live metrics…
Loading live metrics…
Loading live metrics…
Use Plutotext R3 Emotional via the API
OpenAI-compatible — point any OpenAI SDK at https://api.airforce/v1 and pass plutotext-r3-emotional as the model.
cURL
curl https://api.airforce/v1/chat/completions \
-H "Authorization: Bearer $AIRFORCE_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "plutotext-r3-emotional",
"messages": [{ "role": "user", "content": "Hello!" }]
}'Python
from openai import OpenAI
client = OpenAI(base_url="https://api.airforce/v1", api_key="$AIRFORCE_API_KEY")
r = client.chat.completions.create(
model="plutotext-r3-emotional",
messages=[{"role": "user", "content": "Hello!"}],
)
print(r.choices[0].message.content)JavaScript
import OpenAI from "openai";
const client = new OpenAI({ baseURL: "https://api.airforce/v1", apiKey: process.env.AIRFORCE_API_KEY });
const r = await client.chat.completions.create({
model: "plutotext-r3-emotional",
messages: [{ role: "user", content: "Hello!" }],
});
console.log(r.choices[0].message.content);