Activity Feed

AI & ML interests

None defined yet.

IONOS

Welcome to the official Hugging Face organization for IONOS!

We are a leading European hosting and cloud provider, serving over 6 million customers across 18 markets in Europe and North America.

IONOS combines three decades of hosting expertise with cutting-edge cloud infrastructure. We're committed to providing European businesses with secure, GDPR-compliant cloud solutions while serving customers globally.


IONOS AI Model Hub

Our AI Model Hub represents the next evolution of cloud computing - bringing sovereign AI to European enterprises and the global open-source community.

Why European AI Matters:

  • Data Sovereignty - Your data never leaves European soil
  • GDPR Native - Built from the ground up for European privacy laws
  • No Surveillance - Independent from foreign intelligence laws
  • Local Support - European teams, European values

Quick Start:

  1. Follow the Instructions to get an API token: https://docs.ionos.com/cloud/ai/ai-model-hub/tutorials/access-management
  2. Use this example script:
import requests

IONOS_API_TOKEN = "[YOUR API TOKEN HERE]"
MODEL_NAME = "[MODEL NAME HERE]"
PROMPT = [
    {"role": "system", "content": "You are a helpful assistant."},
    {"role": "user", "content": "Hello!"}
  ]

endpoint = "https://openai.inference.de-txl.ionos.com/v1/chat/completions"

header = {
    "Authorization": f"Bearer {IONOS_API_TOKEN}", 
    "Content-Type": "application/json"
}
body = {
    "model": MODEL_NAME,
    "messages": PROMPT,
}
requests.post(endpoint, json=body, headers=header).json()

A list of models is available here: https://docs.ionos.com/cloud/ai/ai-model-hub/models


Learn more at https://www.ionos.com | Learn more about the AI Modelhub at: https://docs.ionos.com/cloud/ai/ai-model-hub

Building the future of sovereign AI in Europe.

datasets 0

None public yet