Overview
This content is for v1.0.0. Switch to the latest version for up-to-date documentation.
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”Available Models (45)
Gemma 4 – Preview
GPT-OSS 120B
Qwen3-Next 80B
Qwen3-VL 30B
Qwen3 Coder 30B
Llama 3.3 70B
Mistral Small 3
Mistral Medium 3
GPT-5.2
GPT-5
GPT-5 mini
GPT-5 Codex
o4 mini
o3
o3 mini
o1 mini
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
Claude 4 Sonnet
Claude 3.7 Sonnet
Gemini 3 Pro (>200k)
Gemini 3 Pro (≤200k)
Gemini 3 Flash
Gemini 2.5 Pro (>200k)
Gemini 2.5 Pro (≤200k)
Gemini 2.5 Flash
Gemini 2.5 Flash Image
GPT-4.1
GPT-4.1 mini
GPT-4.1 nano
GPT-4o
GPT-4o mini
GPT-Image-1 (Text→Image)
GPT-Image-1 (Image→Image)
BGE-M3
Jina Embeddings v2 Base DE
Whisper Large v3
Whisper Large v3 Turbo
o1
Qwen 3 Coder 30B
GPT 5.2
For the complete list with pricing, see the Plans & Pricing page.