Tencent
Jedes Tencent-Modell auf Synthorai: ein Endpoint, Live-Preise.
1 Modell · chat / code / tools / reasoning · ab $0.14/M Input
Warum Tencent über Synthorai
- Nutzungsbasierte Abrechnung, kein Abo. Ein Key, jedes Modell. Kein Tencent-Konto erforderlich.
- Keine Prompt-Speicherung. Standardmäßig keine Prompt-Speicherung am Gateway; es gelten die Datenrichtlinien des Upstream-Anbieters. Details →
Position von Tencent · Eingabepreis über 60 Chat-Modelle
- Alibaba $0.05 - $2.5
- ByteDance $0.1 - $0.5
- Google $0.1 - $2
- DeepSeek $0.138 - $1.32
- Tencent $0.14
- OpenAI $0.2 - $30
- MiniMax $0.22 - $0.3
- Moonshot $0.574 - $3
- Anthropic $1 - $10
- Z.ai $1 - $1.4
Jeder Balken reicht vom günstigsten bis zum teuersten Chat-Modell eines Anbieters, sodass sichtbar wird, wo dieser im Vergleich zum übrigen Katalog steht.
Tencent-Modelle & Preise
| Modell | Input /M | Output /M | Cache-Read /M | Kontext |
|---|---|---|---|---|
| Hunyuan 3geschlossene Beta | $0.14 | $0.58 | $0.035 | 262K |
Listenpreise der Anbieter, ohne Plattform-Aufschlag. Die Preise werden auf jeder Modellseite live aktualisiert. Dies sind offizielle Listenpreise. Angemeldete Kunden sehen auf /console/pricing die effektiven Preise inklusive Workspace-Rabatten.
Tencent-Modelle in 30 Sekunden nutzen
from openai import OpenAI
client = OpenAI(
base_url="https://synthorai.io/v1",
api_key="sk-syn-...",
)
resp = client.chat.completions.create(
model="hunyuan-3",
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: "hunyuan-3",
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": "hunyuan-3",
"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: "hunyuan-3",
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("hunyuan-3")
.addUserMessage("Summarize this diff")
.reasoningEffort(ReasoningEffort.MEDIUM)
.build());
System.out.println(resp.choices().get(0).message().content().orElse(""));Über Tencent
Tencent-Modelle laufen auf Synthorai hinter einem OpenAI-kompatiblen Endpoint, mit nutzungsbasierter Abrechnung und Live-Preisen.
FAQ
Wie bekomme ich einen Tencent-API-Key ohne Abo?
Sie brauchen kein Tencent-Konto: Registrieren Sie sich bei Synthorai, erstellen Sie einen API-Key, und jedes Tencent-Modell auf dieser Seite funktioniert über den OpenAI-kompatiblen Endpoint: nutzungsbasierte Abrechnung, ohne Abo (als „geschlossene Beta“ markierte Modelle erfordern zusätzlich eine genehmigte Bewerbung).
Was kostet die Tencent API?
Token-basiert abgerechnete Modelle starten bei $0.14/M Input-Tokens; der Live-Preis pro Einheit steht für jedes Modell in der Tabelle oben; es sind Listenpreise der Anbieter ohne Plattform-Aufschlag.
Kann ich meinen eigenen Tencent-Key nutzen (BYOK)?
BYOK isn't available for Tencent yet - requests run on Synthorai's managed channels at the listed rates.
Wie sieht die Datenspeicherungs-Richtlinie von Tencent über die API aus?
Standardmäßig keine Prompt-Speicherung am Gateway; es gelten die Datenrichtlinien des Upstream-Anbieters.
Weitere Anbieter