> ## Documentation Index
> Fetch the complete documentation index at: https://docs.infercom.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# Infercom Inference Service Models Overview and Specifications

> Browse all models available on Infercom. EU-hosted and Global Catalog models with context lengths, capabilities, and rate limits.

The Infercom Inference Service provides access to a broad selection of AI models through the **Global Model Catalog**. Models are available in two categories: **EU-hosted** models running on Infercom's sovereign infrastructure in Germany, and additional models available via global infrastructure.

## EU-hosted models

The following models run on Infercom's EU infrastructure in Germany. For these models, all data processing happens entirely within the EU — no data leaves EU jurisdiction, with full GDPR compliance and no US CLOUD Act exposure.

### Text generation models

| **Developer** | **Model ID**     | **Context length** | **Capabilities** | **Region** | **HF Link**                                                 |
| :------------ | :--------------- | :----------------- | :--------------- | :--------- | :---------------------------------------------------------- |
| **MiniMax**   | `MiniMax-M2.7`   | 192k tokens        | Text, Reasoning  | EU         | [Model card](https://huggingface.co/MiniMaxAI/MiniMax-M2.7) |
| **MiniMax**   | `MiniMax-M2.5`   | 160k tokens        | Text, Reasoning  | EU         | [Model card](https://huggingface.co/MiniMaxAI/MiniMax-M2.5) |
| **OpenAI**    | `gpt-oss-120b`   | 128k tokens        | Text, Reasoning  | EU         | [Model card](https://huggingface.co/openai/gpt-oss-120b)    |
| **Google**    | `gemma-4-31B-it` | 128k tokens        | Text, Vision     | EU         | [Model card](https://huggingface.co/google/gemma-4-31b-it)  |

### Embedding model

| **Developer** | **Model ID**             | **Context length** | **Capabilities** | **Region** | **HF Link**                                                          |
| :------------ | :----------------------- | :----------------- | :--------------- | :--------- | :------------------------------------------------------------------- |
| **Mistral**   | `E5-Mistral-7B-Instruct` | 4k tokens          | Embeddings       | EU         | [Model card](https://huggingface.co/intfloat/e5-mistral-7b-instruct) |

### Audio model

| **Developer** | **Model ID**       | **Max audio length** | **Capabilities**           | **Region** | **HF Link**                                                  |
| :------------ | :----------------- | :------------------- | :------------------------- | :--------- | :----------------------------------------------------------- |
| **OpenAI**    | `Whisper-Large-v3` | 25 MB                | Transcription, Translation | EU         | [Model card](https://huggingface.co/openai/whisper-large-v3) |

## Global Model Catalog

In addition to EU-hosted models, the Infercom Inference Service provides access to a broader selection of models through the Global Model Catalog. Models not hosted in our EU datacenters are served via global infrastructure. You can always check a model's hosting region via the API or the Playground.

<Note>
  Every model is clearly labeled with its hosting region — both in the API response and in the Playground. You always know where your data is being processed.
</Note>

| **Developer** | **Model ID**                  | **Context length** | **Region** | **Capabilities** | **HF Link**                                                            |
| :------------ | :---------------------------- | :----------------- | :--------- | :--------------- | :--------------------------------------------------------------------- |
| **DeepSeek**  | `DeepSeek-V3.1`               | 128k tokens        | US         | Text, Reasoning  | [Model card](https://huggingface.co/deepseek-ai/DeepSeek-V3.1)         |
| **DeepSeek**  | `DeepSeek-V3.2`               | 32k tokens         | US         | Text, Reasoning  | [Model card](https://huggingface.co/deepseek-ai/DeepSeek-V3.2)         |
| **Meta**      | `Meta-Llama-3.3-70B-Instruct` | 128k tokens        | US         | Text             | [Model card](https://huggingface.co/meta-llama/Llama-3.3-70B-Instruct) |

See [Identifying model regions](#identifying-model-regions) below for how to check where each model runs.

## Identifying model regions

You can identify where a model is hosted through the API or the Playground.

### Via the API

The `/v1/models` endpoint includes an `sn_metadata` object for each model. Use the `region` field to determine where a model is hosted: `"EU"` for sovereign models on Infercom's EU infrastructure, or a non-EU region (e.g. `"US"`, `"JP"`) for models on global infrastructure.

Use the `?verbose=true` query parameter to retrieve detailed model metadata including sovereignty information:

<CodeGroup>
  ```bash cURL theme={null}
  curl -s "https://api.infercom.ai/v1/models?verbose=true" \
    -H "Authorization: Bearer $INFERCOM_API_KEY" | \
    jq '.data[] | {id, region: .sn_metadata.region}'
  ```

  ```python Python theme={null}
  from openai import OpenAI
  import requests

  # Using requests for metadata inspection
  headers = {"Authorization": f"Bearer {api_key}"}
  response = requests.get(
      "https://api.infercom.ai/v1/models?verbose=true",
      headers=headers
  )

  for model in response.json()["data"]:
      region = model.get("sn_metadata", {}).get("region", "Global")
      print(f"{model['id']}: {region}")
  ```
</CodeGroup>

**Example response for an EU-hosted model:**

```json theme={null}
{
  "id": "MiniMax-M2.7",
  "object": "model",
  "sn_metadata": {
    "is_external": false,
    "region": "EU"
  }
}
```

**Example response for a globally-routed model:**

```json theme={null}
{
  "id": "DeepSeek-R1-0528",
  "object": "model",
  "sn_metadata": {
    "is_external": true,
    "region": "US"
  }
}
```

### Via the Playground

In the [Infercom Playground](https://cloud.infercom.ai), region flags are displayed next to each model name, letting you see at a glance where each model runs.

## Data sovereignty

<Warning>
  **EU sovereignty applies to EU-hosted models only.** When using models from the Global Model Catalog that are not hosted on EU infrastructure, requests are processed on global infrastructure outside the EU. Always check the model's region before processing sensitive or regulated data.
</Warning>

For EU-hosted models, Infercom provides:

* **EU data residency** — inference runs in our EU datacenters
* **GDPR compliance** — full compliance with EU data protection regulations
* **No US CLOUD Act exposure** — your inference data is not subject to US jurisdiction
* **AI Act readiness** — designed for compliance with the EU AI Act
