Open-weight LLM inference on EU hardware. Zero data retention.
OpenAI-compatible API on our own GPU fleet in Romania. Qwen3.8 27B, 128k context, tool calls, streaming. Nothing you send is stored.
OpenAI-compatible API on our own GPU fleet in Romania. Qwen3.8 27B, 128k context, tool calls, streaming. Nothing you send is stored.
Every request runs on cards we own, in three sites in Romania. No US provider in the path and no subprocessor for inference.
Prompts and completions are never written to disk. We keep request metadata and token counts for billing, nothing else. Read the policy.
qwen/qwen3.8-27b on https://api.auxilio.ai/v1
Point any OpenAI-compatible client at our base URL. Same request, same response shape, EU hardware.
from openai import OpenAI
client = OpenAI(base_url="https://api.auxilio.ai/v1", api_key="YOUR_KEY")
r = client.chat.completions.create(
model="qwen/qwen3.8-27b",
messages=[{"role": "user", "content": "Summarise GDPR article 28 in three lines."}],
)
print(r.choices[0].message.content)
API keys are issued within one business day. The same fleet is also available as virtual machines with one to eight GPUs.