Layermod

Providers

Verfügbare KI-Anbieter und deren Details

GET /v1/providers/

Listet alle konfigurierten Anbieter mit Metadaten auf.

Antwort

200 OK
{
  "data": [
    {
      "id": "provider_abc",
      "slug": "azure",
      "display_name": "Azure OpenAI",
      "summary": "Microsoft Azure OpenAI Service",
      "active": true,
      "health": "operational",
      "region": {
        "code": "eu-west",
        "label": "EU West",
        "gdpr_compliant": true
      },
      "legal": {
        "entity_name": "Microsoft Corporation",
        "headquartered_in": "USA",
        "privacy_url": "https://privacy.microsoft.com",
        "tos_url": "https://azure.microsoft.com/support/legal",
        "dpa_url": "https://aka.ms/DPA",
        "status_url": "https://status.azure.com"
      },
      "data_handling": {
        "retention": "none",
        "training_opt_out": true,
        "encryption_at_rest": true,
        "encryption_in_transit": true
      },
      "icon": "azure"
    }
  ]
}

GET /v1/providers/:slug

Ruft Details eines bestimmten Anbieters inklusive seiner Modelle ab.

Parameter

ParameterTypBeschreibung
slugstringAnbieter-Slug (z.B. azure, bedrock, ionos)

Antwort

Gleiches Format wie oben, zusätzlich:

{
  "model_count": 3,
  "models": [
    {
      "id": "gpt-5.4",
      "object": "model",
      "owned_by": "azure"
    }
  ]
}

Fehlercodes

CodeBeschreibung
404Anbieter nicht gefunden

On this page