Dola Seed 2.0 Pro
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.22/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 Pro 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-pro",
messages=[{"role": "user", "content": "Summarize this diff"}],
reasoning_effort="medium",
)
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-pro",
messages: [{ role: "user", content: "Summarize this diff" }],
reasoning_effort: "medium",
});
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-pro",
"messages": [{"role": "user", "content": "Hello"}],
"reasoning_effort": "medium"
}'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-pro",
Messages: []openai.ChatCompletionMessageParamUnion{
openai.UserMessage("Summarize this diff"),
},
ReasoningEffort: openai.ReasoningEffortMedium,
})
fmt.Println(resp.Choices[0].Message.Content)
}import com.openai.client.OpenAIClient;
import com.openai.client.okhttp.OpenAIOkHttpClient;
import com.openai.models.chat.completions.*;
import com.openai.models.ReasoningEffort;
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-pro")
.addUserMessage("Summarize this diff")
.reasoningEffort(ReasoningEffort.MEDIUM)
.build());
System.out.println(resp.choices().get(0).message().content().orElse(""));Über Dola Seed 2.0 Pro
Dola Seed 2.0 Pro ist das Flaggschiff der Dola-Seed-2.0-Familie von ByteDance auf BytePlus ModelArk, offiziell beschrieben als vielseitiges Agent-Modell für das Agent-Zeitalter.
- Die Release Notes heben stabile Leistung bei komplexem Reasoning und langfristigen Aufgaben hervor, darunter mehrstufige Planung, visuell-textuelles Reasoning, Videoverständnis und fortgeschrittene Analyse.
- Es bietet tiefes Reasoning, multimodales Verständnis, Visual Grounding und Tool-Calling innerhalb eines Kontextfensters von 256K und bis zu 128K Output einschließlich Chain-of-Thought, dazu Präfix- und Session-Caching.
- Synthorai stellt es hinter seinem OpenAI-kompatiblen Completions-Endpoint bereit.
Spezifikationen & Limits
| Max. Output (Anbieter-Spezifikation) | 131,072 |
| Modalitäten | text + image + video → text |
| Funktionen | tools · streaming · vision · reasoning · caching |
| Bemerkenswert | General-purpose agentic flagship with deep reasoning, visual grounding and tool calling in a 256K context. |
| Prompt-Caching | automatisch + explizit · min. 1,024-Token-Präfix |
FAQ
Lässt sich die Dola Seed 2.0 Pro API kostenlos testen?
Ja, neue Konten erhalten 10 Test-Calls und bis zu $1 kostenloses Guthaben, keine Kreditkarte erforderlich. Bei $0.5/M Input-Tokens deckt allein dieses Guthaben rund 250 Requests mit je ~8K Tokens gegen Dola Seed 2.0 Pro ab.
Worin ist Dola Seed 2.0 Pro am besten?
Vielseitiges Agent-Modell für das Agent-Zeitalter, außerdem stabil bei komplexem Reasoning und langfristigen Aufgaben und Visual Grounding, Videoverständnis und Tool-Calling. Das vollständige Bild finden Sie im About-Abschnitt, direkt aus den offiziellen Release Notes des Anbieters.
Was kostet Dola Seed 2.0 Pro?
Dola Seed 2.0 Pro kostet auf Synthorai $0.5 pro Million Input-Tokens und $3 pro Million Output-Tokens. Das ist der Listenpreis des Anbieters, ohne Plattform-Aufschlag. Gecachte Input-Tokens werden mit $0.1/M abgerechnet.
Unterstützt Dola Seed 2.0 Pro Prompt-Caching?
Ja, automatisches Caching ist standardmäßig aktiv, dazu ein expliziter Modus für garantierte Einsparungen. Gecachte Input-Tokens werden mit $0.1/M statt $0.5/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 Pro?
Richten Sie Ihr vorhandenes OpenAI SDK auf base_url="https://synthorai.io/v1", setzen Sie model="Dola-Seed-2.0-pro", fertig. Ein API-Key deckt jedes Modell auf dem Gateway ab.