Dola Seed 2.0 Mini
Listenpreise der Anbieter, ohne Plattform-Aufschlag, nutzungsbasierte Abrechnung. Dies sind offizielle Listenpreise. Angemeldete Kunden sehen auf /console/pricing die effektiven Preise inklusive Workspace-Rabatten. Effektiver Input-Preis bei 70 % Cache-Trefferquote:$0.044/M. Implizites Präfix-Caching ist bei Seed-Sprachmodellen standardmäßig aktiv (Minimum 1,024 Token, keine Speichergebühr); eine explizite Context-Caching-API ist ebenfalls verfügbar. Medienmodelle (Bild / ASR) sind nicht cachebar.
Dola Seed 2.0 Mini in 30 Sekunden nutzen
OpenAI-kompatibel: Tauschen Sie die base_url, behalten Sie Ihr SDK. POST /v1/chat/completions
from openai import OpenAI
client = OpenAI(
base_url="https://synthorai.io/v1",
api_key="sk-syn-...",
)
resp = client.chat.completions.create(
model="Dola-Seed-2.0-mini",
messages=[{"role": "user", "content": "Summarize this diff"}],
)
print(resp.choices[0].message.content)import OpenAI from "openai";
const client = new OpenAI({
baseURL: "https://synthorai.io/v1",
apiKey: "sk-syn-...",
});
const resp = await client.chat.completions.create({
model: "Dola-Seed-2.0-mini",
messages: [{ role: "user", content: "Summarize this diff" }],
});
console.log(resp.choices[0].message.content);curl https://synthorai.io/v1/chat/completions \
-H "Authorization: Bearer sk-syn-..." \
-H "Content-Type: application/json" \
-d '{
"model": "Dola-Seed-2.0-mini",
"messages": [{"role": "user", "content": "Hello"}]
}'package main
import (
"context"
"fmt"
"github.com/openai/openai-go/v3"
"github.com/openai/openai-go/v3/option"
)
func main() {
client := openai.NewClient(
option.WithBaseURL("https://synthorai.io/v1"),
option.WithAPIKey("sk-syn-..."),
)
resp, _ := client.Chat.Completions.New(context.TODO(), openai.ChatCompletionNewParams{
Model: "Dola-Seed-2.0-mini",
Messages: []openai.ChatCompletionMessageParamUnion{
openai.UserMessage("Summarize this diff"),
},
})
fmt.Println(resp.Choices[0].Message.Content)
}import com.openai.client.OpenAIClient;
import com.openai.client.okhttp.OpenAIOkHttpClient;
import com.openai.models.chat.completions.*;
OpenAIClient client = OpenAIOkHttpClient.builder()
.baseUrl("https://synthorai.io/v1")
.apiKey("sk-syn-...")
.build();
ChatCompletion resp = client.chat().completions().create(
ChatCompletionCreateParams.builder()
.model("Dola-Seed-2.0-mini")
.addUserMessage("Summarize this diff")
.build());
System.out.println(resp.choices().get(0).message().content().orElse(""));Über Dola Seed 2.0 Mini
Dola Seed 2.0 Mini ist das kleinste Mitglied der Dola-Seed-2.0-Familie von ByteDance auf BytePlus ModelArk, ein omnimodales Deep-Thinking-Modell, das auf kürzere Reasoning-Spuren und höhere Token-Effizienz abgestimmt ist.
- Die offiziellen Release Notes positionieren es für latenzarme, hochparallele und kostensensible Szenarien mit Fokus auf schnelle Antworten.
- Es verfügt über ein Kontextfenster von 256K mit bis zu 128K Output einschließlich Chain-of-Thought und unterstützt tiefes Reasoning, multimodales Verständnis, Function Calling, strukturierte Ausgaben sowie Präfix- oder Session-Caching.
- Synthorai bietet es über eine OpenAI-kompatible Chat-Completions-API an.
Spezifikationen & Limits
| Max. Output (Anbieter-Spezifikation) | 131,072 |
| Modalitäten | text + image + video + audio → text |
| Funktionen | tools · structured_output · streaming · vision · reasoning · caching |
| Bemerkenswert | Seed 2.0 series launched 2026-02-14; ModelArk id seed-2-0-mini (latest version 260428); 256K context, 128K max output incl. CoT; audio understanding in beta on the 260428 version; implicit + explicit context caching. |
| Prompt-Caching | automatisch + explizit · min. 1,024-Token-Präfix |
FAQ
Lässt sich die Dola Seed 2.0 Mini API kostenlos testen?
Ja, neue Konten erhalten 10 Test-Calls und bis zu $1 kostenloses Guthaben, keine Kreditkarte erforderlich. Bei $0.1/M Input-Tokens deckt allein dieses Guthaben rund 1,250 Requests mit je ~8K Tokens gegen Dola Seed 2.0 Mini ab.
Worin ist Dola Seed 2.0 Mini am besten?
Kürzere Reasoning-Spuren, höhere Token-Effizienz, außerdem für latenzarme, kostensensible Szenarien gebaut und tiefes Reasoning mit Präfix- oder Session-Caching. Das vollständige Bild finden Sie im About-Abschnitt, direkt aus den offiziellen Release Notes des Anbieters.
Was kostet Dola Seed 2.0 Mini?
Dola Seed 2.0 Mini kostet auf Synthorai $0.1 pro Million Input-Tokens und $0.4 pro Million Output-Tokens. Das ist der Listenpreis des Anbieters, ohne Plattform-Aufschlag. Gecachte Input-Tokens werden mit $0.02/M abgerechnet.
Unterstützt Dola Seed 2.0 Mini Prompt-Caching?
Ja, automatisches Caching ist standardmäßig aktiv, dazu ein expliziter Modus für garantierte Einsparungen. Gecachte Input-Tokens werden mit $0.02/M statt $0.1/M (ungecacht) abgerechnet; Prompts brauchen ein stabiles Präfix von 1,024 Tokens, um gecacht zu werden. Prompt-Caching-Guide →
Wie erhalte ich Zugang zu Dola Seed 2.0 Mini?
Richten Sie Ihr vorhandenes OpenAI SDK auf base_url="https://synthorai.io/v1", setzen Sie model="Dola-Seed-2.0-mini", fertig. Ein API-Key deckt jedes Modell auf dem Gateway ab.