Overview
Dieser Inhalt ist für v1.0.0. Geh zur neuesten Version, um die aktuellste Dokumentation zu bekommen.
Dieser Inhalt ist noch nicht in deiner Sprache verfügbar.
AI Foundation Services
Section titled “AI Foundation Services”GDPR-compliant LLM APIs. OpenAI-compatible. Hosted in Germany.
Access 20+ open-source and proprietary LLMs through a single, OpenAI-compatible API. Switch from OpenAI with one line of code. Your data stays in the EU.
Try It Now
Section titled “Try It Now”Drop in your API key and start building — the API is identical to OpenAI’s:
curl -X POST "https://llm-server.llmhub.t-systems.net/v2/chat/completions" \ -H "Authorization: Bearer $OPENAI_API_KEY" \ -H "Content-Type: application/json" \ -d '{ "model": "Llama-3.3-70B-Instruct", "messages": [{"role": "user", "content": "Hello from AIFS"}] }'from openai import OpenAI
client = OpenAI(base_url="https://llm-server.llmhub.t-systems.net/v2")
response = client.chat.completions.create( model="Llama-3.3-70B-Instruct", messages=[{"role": "user", "content": "Hello from AIFS"}],)print(response.choices[0].message.content)import OpenAI from "openai";
const client = new OpenAI({ baseURL: "https://llm-server.llmhub.t-systems.net/v2",});
const response = await client.chat.completions.create({ model: "Llama-3.3-70B-Instruct", messages: [{ role: "user", content: "Hello from AIFS" }],});console.log(response.choices[0].message.content);Why AI Foundation Services?
Section titled “Why AI Foundation Services?”Drop-in Replacement
OpenAI-compatible API — switch from OpenAI or Azure by changing the base URL. Works with existing SDKs, LangChain, and LlamaIndex.
Enterprise Security
GDPR-compliant hosting in Germany and the EU. Open-source models run on T-Cloud. Your data never leaves the EU.
Full Model Catalog
20+ models from one API key — Llama, Mistral, GPT, Claude, Gemini, Qwen, and more. Text, vision, audio, and embeddings.
Available Models
Section titled “Available Models”Verfügbare Modelle (39)
GLM 5.2
Gemma 4
Mistral Small 4
GPT-OSS 120B
Llama 3.3 70B
Mistral Medium 3
GPT-5
GPT-5 mini
GPT-5 Codex
Claude 4.6 Opus
Claude 4.6 Sonnet
Claude 4.5 Opus
Claude 4.5 Sonnet (>200k)
Claude 4.5 Sonnet (≤200k)
Claude 4.5 Haiku
Gemini 3 Pro (>200k)
Gemini 3 Pro (≤200k)
Gemini 3 Flash
Gemini 3 Pro Image
BGE-M3
Ada Text Embedding
Jina Embeddings v2 Base DE
Whisper Large v3
Whisper Large v3 Turbo
Claude Fable 5
Claude Opus 4.8
Claude Opus 5
Claude Sonnet 5
Gemini 3.1 Pro
Gemini 3.5 Flash
GPT 5.4
GPT 5.4 mini
GPT 5.5
GPT Image 2
GPT-5.6 Sol
NVIDIA Nemotron 3 Super 120B FP8
Qwen 3.6 35B FP8
Qwen 3 Coder 30B
GPT 5.2
For the complete list with pricing, see the Plans & Pricing page.