BytedanceBezahltBetriebsbereit
Doubao 1.5 Thinking Pro
API-Modellname: doubao-1-5-thinking-pro-250415
Doubao 1.5 Thinking Pro ist das Chat-Modell von Bytedance, bereitgestellt über die einheitliche API von Api.Airforce. Zu den Funktionen gehören Reasoning. Es kostet 0,31 € pro Million Eingabe-Tokens und 1,28 € pro Million Ausgabe-Tokens. Greife über die OpenAI-kompatible API mit einem einzigen Schlüssel darauf zu — zusammen mit über 65 weiteren Modellen auf Api.Airforce.
Preise
Spezifikationen
- Anbieter
- Bytedance
- Typ
- Chat-Modell
Funktionen
Reasoning
Wofür wird Doubao 1.5 Thinking Pro verwendet?
- Chatbots & Assistenten — konversationelle KI, Textentwürfe, Zusammenfassungen und Q&A.
- Komplexes Schlussfolgern — Mathematik, Coding und schrittweises Problemlösen.
Doubao 1.5 Thinking Pro vs. ähnliche Modelle
| Modell | Intelligenz | Kontext | Input / 1M | Output / 1M |
|---|---|---|---|---|
| Doubao 1.5 Thinking Pro | — | — | 0,31 € | 1,28 € |
| Doubao 1.5 Thinking Vision Pro | — | — | 0,49 € | 1,44 € |
| Doubao 1.5 Ui Tars | — | — | 0,56 € | 1,92 € |
| Doubao 1.5 Lite 32k | — | — | 0,06 € | 0,13 € |
Preise sind Api.Airforce Pay-as-you-go-Tarife pro 1M Token. Der Kontext ist die maximale Eingabelänge.
Verwandte Modelle
Doubao 1.5 Thinking Vision ProBytedance · 0,49 € / 1MDoubao 1.5 Ui TarsBytedance · 0,56 € / 1MDoubao 1.5 Lite 32kBytedance · 0,06 € / 1MDoubao 1.5 Pro 32kBytedance · 0,12 € / 1MDoubao 1.5 Vision LiteBytedance · 0,23 € / 1MDoubao 1.5 Vision ProBytedance · 0,49 € / 1MDoubao 1.5 Vision Pro 32kBytedance · 0,12 € / 1MDoubao Embedding Large TextBytedance · 0,11 € / 1MDoubao Embedding TextBytedance · 0,11 € / 1MDoubao Embedding VisionBytedance · 87,68 € / 1MDoubao Lite 128kBytedance · 0,18 € / 1MDoubao Lite 32kBytedance · 0,13 € / 1M
Doubao 1.5 Thinking Pro — häufig gestellte Fragen
- Was kostet Doubao 1.5 Thinking Pro?
- Doubao 1.5 Thinking Pro wird Pay-as-you-go abgerechnet: 0,31 € pro 1M Input-Token und 1,28 € pro 1M Output-Token. Kein Abonnement — du zahlst nur, was du verwendest.
- Was kann Doubao 1.5 Thinking Pro?
- Doubao 1.5 Thinking Pro unterstützt Reasoning.
- Ist Doubao 1.5 Thinking Pro kostenlos nutzbar?
- Doubao 1.5 Thinking Pro ist ein kostenpflichtiges Pay-as-you-go-Modell — kein Abonnement, du wirst nur für die tatsächliche Nutzung berechnet.
- Wie verwende ich Doubao 1.5 Thinking Pro über die API?
- Doubao 1.5 Thinking Pro ist OpenAI-kompatibel. Richte ein beliebiges OpenAI SDK auf https://api.airforce/v1 aus und übergib die Modell-ID doubao-1-5-thinking-pro-250415 zusammen mit deinem Api.Airforce API-Key.
- Von wem stammt Doubao 1.5 Thinking Pro?
- Doubao 1.5 Thinking Pro ist das Chat-Modell von Bytedance, bereitgestellt über das einheitliche Api.Airforce-Gateway neben 100+ weiteren Modellen.
Live-Metriken werden geladen…
Live-Metriken werden geladen…
Live-Metriken werden geladen…
Doubao 1.5 Thinking Pro über die API nutzen
OpenAI-kompatibel — richte ein beliebiges OpenAI-SDK auf https://api.airforce/v1 und übergib doubao-1-5-thinking-pro-250415 als Modell.
cURL
curl https://api.airforce/v1/chat/completions \
-H "Authorization: Bearer $AIRFORCE_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "doubao-1-5-thinking-pro-250415",
"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="doubao-1-5-thinking-pro-250415",
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: "doubao-1-5-thinking-pro-250415",
messages: [{ role: "user", content: "Hello!" }],
});
console.log(r.choices[0].message.content);