---
title: "Was ist ein LLM (Large Language Model)?"
canonical: https://wavect.io/de/glossary/llm/
language: de
description: "Ein statistisches Modell, trainiert auf Next-Token-Vorhersage: erschreckend gut bei Sprachaufgaben, unzuverlässig bei allem, was Korrektheit garantieren muss."
image: "https://wavect.io/img/general/bak/open_graph_preview.jpg"
---

TECHNOLOGIE

# LLM

Large Language Model

Ein statistisches Modell, trainiert auf Next-Token-Vorhersage: erschreckend gut bei Sprachaufgaben, unzuverlässig bei allem, was Korrektheit garantieren muss.

Zuletzt geprüft: 2026-06-02 von [Kevin Riedl](/de/team/kevin-riedl/) [wiki ↗](https://www.wikidata.org/wiki/Q139796365)

Ein LLM ist ein Modell, das auf enormen Textmengen trainiert wurde, um genau eine Sache zu tun: den nächsten Token (grob gesagt das nächste Wortfragment) auf Basis von allem Vorherigen vorherzusagen. Stapelt man genug davon, entstehen flüssige Antworten, Zusammenfassungen, Übersetzungen und Code. Das ist der ganze Trick. Es ist kein Denken im menschlichen Sinn, sondern sehr gute Mustervervollständigung.

Das ist wichtig, weil es Magie und Grenzen zugleich erklärt. Ein LLM hat kein Gedächtnis für dein Geschäft, kein Wissen jenseits seines Trainings-Cutoffs und keine eingebaute Garantie, dass die flüssige Antwort auch stimmt. Es nennt einen falschen Fakt mit exakt derselben Überzeugung wie einen richtigen. Behandle es als Werkzeug, nicht als Orakel.

Das LLM ist das falsche Werkzeug, wenn du deterministische, prüfbare Ergebnisse brauchst: Steuerberechnungen, regulatorische Logik, alles wo “meistens richtig” ein Risiko ist. Der richtige Weg ist, das Modell mit der unspektakulären Technik drumherum zu umgeben: Retrieval für Fakten, Validierung für die Ausgabe und ein Mensch im Prozess, wo ein Fehler teuer wird. Genau das bauen wir unter [Künstliche Intelligenz](/de/services/artificial-intelligence/).

Die ehrliche Zusammenfassung: Ein LLM ist eine probabilistische Text-Engine. Für die richtigen Aufgaben (Entwürfe, Klassifikation, Extraktion, Suche über die eigenen Daten) ist es ein echter Verstärker. Als Quelle der Wahrheit ist es ein selbstbewusstes Risiko.

// FAQ

## Häufige Fragen

### Was ist ein LLM einfach erklärt?

Ein Modell, das das nächste Textstück auf Basis des bisherigen Textes vorhersagt. Mit genug Trainingsdaten erzeugt diese Vorhersage flüssige, nützliche Antworten. Es ist Mustervervollständigung im großen Maßstab, kein Verstehen.

### Wann ist ein LLM das falsche Werkzeug?

Wenn du eine garantiert korrekte, prüfbare Antwort brauchst. Ein LLM ist probabilistisch. Für Steuerrechnungen, Compliance-Logik oder alles, wo eine überzeugte falsche Antwort gefährlich ist, nutze deterministischen Code und lass das LLM nur am Rand assistieren.

### Kennt ein LLM aktuelle Ereignisse?

Nur bis zu seinem Trainings-Cutoff. Alles Neuere oder alles Spezifische zu deinem Geschäft kennt es nicht, außer du gibst ihm diesen Kontext zur Laufzeit per Retrieval mit.

Verwandte Begriffe

- [AI Agents](/de/glossary/ai-agents/)
- [RAG](/de/glossary/rag/)
- [MCP](/de/glossary/mcp/)
- [Fine-Tuning](/de/glossary/fine-tuning/)
- [Hallucination](/de/glossary/hallucination/)

Passende Leistungen

- [Künstliche Intelligenz](/de/services/artificial-intelligence/)

Passende Fallstudien

- [Hyperstate AI](/de/case-studies/hyperstate-ai/)
- [Twinsoft AI](/de/case-studies/twinsoft-ai/)

Passende Guides

- [Den richtigen Tech-Stack für ein MVP wählen](/de/software-development-guide/how-to-choose-a-tech-stack-for-mvp/)

Reden wir

## Structured Data

```json
{
  "@context": "https://schema.org",
  "@graph": [
    {
      "@id": "https://wavect.io/#organization",
      "@type": [
        "Organization",
        "ProfessionalService",
        "LocalBusiness"
      ],
      "employee": [
        {
          "@id": "https://wavect.io/team/kevin-riedl/#person",
          "@type": "Person",
          "jobTitle": "Managing Director",
          "name": "Kevin Riedl",
          "url": "https://wavect.io/team/kevin-riedl/",
          "worksFor": {
            "@id": "https://wavect.io/#organization",
            "@type": [
              "Organization",
              "ProfessionalService",
              "LocalBusiness"
            ]
          }
        },
        {
          "@id": "https://wavect.io/team/christof-jori/#person",
          "@type": "Person",
          "jobTitle": "Managing Director",
          "name": "Christof Jori",
          "url": "https://wavect.io/team/christof-jori/",
          "worksFor": {
            "@id": "https://wavect.io/#organization",
            "@type": [
              "Organization",
              "ProfessionalService",
              "LocalBusiness"
            ]
          }
        }
      ],
      "founder": [
        {
          "@id": "https://wavect.io/team/kevin-riedl/#person",
          "@type": "Person",
          "jobTitle": "Managing Director",
          "name": "Kevin Riedl",
          "url": "https://wavect.io/team/kevin-riedl/",
          "worksFor": {
            "@id": "https://wavect.io/#organization",
            "@type": [
              "Organization",
              "ProfessionalService",
              "LocalBusiness"
            ]
          }
        },
        {
          "@id": "https://wavect.io/team/christof-jori/#person",
          "@type": "Person",
          "jobTitle": "Managing Director",
          "name": "Christof Jori",
          "url": "https://wavect.io/team/christof-jori/",
          "worksFor": {
            "@id": "https://wavect.io/#organization",
            "@type": [
              "Organization",
              "ProfessionalService",
              "LocalBusiness"
            ]
          }
        }
      ],
      "legalRepresentative": [
        {
          "@id": "https://wavect.io/team/kevin-riedl/#person",
          "@type": "Person",
          "jobTitle": "Managing Director",
          "name": "Kevin Riedl",
          "url": "https://wavect.io/team/kevin-riedl/",
          "worksFor": {
            "@id": "https://wavect.io/#organization",
            "@type": [
              "Organization",
              "ProfessionalService",
              "LocalBusiness"
            ]
          }
        },
        {
          "@id": "https://wavect.io/team/christof-jori/#person",
          "@type": "Person",
          "jobTitle": "Managing Director",
          "name": "Christof Jori",
          "url": "https://wavect.io/team/christof-jori/",
          "worksFor": {
            "@id": "https://wavect.io/#organization",
            "@type": [
              "Organization",
              "ProfessionalService",
              "LocalBusiness"
            ]
          }
        }
      ],
      "name": "Wavect GmbH",
      "subjectOf": {
        "@id": "https://wavect.io/verified-claims.json#dataset",
        "@type": "Dataset",
        "creator": {
          "@id": "https://wavect.io/#organization",
          "@type": [
            "Organization",
            "ProfessionalService",
            "LocalBusiness"
          ]
        },
        "description": "A machine-readable registry of quantitative and qualitative claims published by Wavect, with review dates, localized page appearances and public third-party citations where available.",
        "inLanguage": "en",
        "isAccessibleForFree": true,
        "license": "https://creativecommons.org/licenses/by/4.0/",
        "name": "Wavect verified publication claims",
        "url": "https://wavect.io/verified-claims.json"
      },
      "url": "https://wavect.io/"
    },
    {
      "@id": "https://wavect.io/team/kevin-riedl/#person",
      "@type": "Person",
      "jobTitle": "Managing Director",
      "name": "Kevin Riedl",
      "sameAs": [
        "https://www.wikidata.org/wiki/Q139796365",
        "https://www.linkedin.com/in/wsdt",
        "https://github.com/wsdt"
      ],
      "url": "https://wavect.io/team/kevin-riedl/",
      "worksFor": {
        "@id": "https://wavect.io/#organization",
        "@type": [
          "Organization",
          "ProfessionalService",
          "LocalBusiness"
        ]
      }
    },
    {
      "@id": "https://wavect.io/team/christof-jori/#person",
      "@type": "Person",
      "jobTitle": "Managing Director",
      "name": "Christof Jori",
      "sameAs": [
        "https://www.wikidata.org/wiki/Q139796367",
        "https://www.linkedin.com/in/jocr77/",
        "https://github.com/jo-chris"
      ],
      "url": "https://wavect.io/team/christof-jori/",
      "worksFor": {
        "@id": "https://wavect.io/#organization",
        "@type": [
          "Organization",
          "ProfessionalService",
          "LocalBusiness"
        ]
      }
    },
    {
      "@id": "https://wavect.io/#website",
      "@type": "WebSite",
      "inLanguage": [
        "en",
        "de",
        "es",
        "zh"
      ],
      "name": "Wavect",
      "potentialAction": {
        "@type": "SearchAction",
        "query-input": "required name=search_term_string",
        "target": {
          "@type": "EntryPoint",
          "urlTemplate": "https://wavect.io/search/?q={search_term_string}"
        }
      },
      "publisher": {
        "@id": "https://wavect.io/#organization",
        "@type": [
          "Organization",
          "ProfessionalService",
          "LocalBusiness"
        ]
      },
      "url": "https://wavect.io/"
    }
  ]
}
```

```json
{
  "@context": "https://schema.org",
  "@graph": [
    {
      "@id": "https://wavect.io/de/glossary/llm/#term",
      "@type": "DefinedTerm",
      "alternateName": [],
      "description": "Ein statistisches Modell, trainiert auf Next-Token-Vorhersage: erschreckend gut bei Sprachaufgaben, unzuverlässig bei allem, was Korrektheit garantieren muss.",
      "inDefinedTermSet": "https://wavect.io/de/glossary/#termset",
      "name": "LLM",
      "termCode": "llm",
      "url": "https://wavect.io/de/glossary/llm/"
    },
    {
      "@id": "https://wavect.io/de/glossary/llm/#webpage",
      "@type": "WebPage",
      "about": {
        "@id": "https://wavect.io/#organization",
        "@type": [
          "Organization",
          "ProfessionalService",
          "LocalBusiness"
        ]
      },
      "author": {
        "@id": "https://wavect.io/team/kevin-riedl/#person",
        "@type": "Person",
        "name": "Kevin Riedl",
        "url": "https://wavect.io/team/kevin-riedl/"
      },
      "dateModified": "2026-06-02",
      "description": "Ein statistisches Modell, trainiert auf Next-Token-Vorhersage: erschreckend gut bei Sprachaufgaben, unzuverlässig bei allem, was Korrektheit garantieren muss.",
      "headline": "LLM",
      "inLanguage": "de",
      "isPartOf": {
        "@id": "https://wavect.io/#website",
        "@type": "WebSite"
      },
      "lastReviewed": "2026-06-02",
      "mainEntity": {
        "@id": "https://wavect.io/de/glossary/llm/#term"
      },
      "mentions": [
        {
          "@id": "https://wavect.io/#organization",
          "@type": [
            "Organization",
            "ProfessionalService",
            "LocalBusiness"
          ]
        },
        {
          "@type": "Service",
          "name": "Künstliche Intelligenz",
          "url": "https://wavect.io/de/services/artificial-intelligence/"
        }
      ],
      "name": "LLM",
      "reviewedBy": {
        "@id": "https://wavect.io/team/christof-jori/#person",
        "@type": "Person",
        "name": "Christof Jori",
        "url": "https://wavect.io/team/christof-jori/"
      },
      "speakable": {
        "@type": "SpeakableSpecification",
        "cssSelector": [
          ".gls-single__h1",
          ".gls-single__tldr"
        ]
      },
      "url": "https://wavect.io/de/glossary/llm/"
    },
    {
      "@type": "BreadcrumbList",
      "itemListElement": [
        {
          "@type": "ListItem",
          "item": "https://wavect.io/de/",
          "name": "Startseite",
          "position": 1
        },
        {
          "@type": "ListItem",
          "item": "https://wavect.io/de/glossary/",
          "name": "Tech-, Produkt- & Engagement-Glossar",
          "position": 2
        },
        {
          "@type": "ListItem",
          "item": "https://wavect.io/de/glossary/llm/",
          "name": "LLM",
          "position": 3
        }
      ]
    }
  ]
}
```

```json
{
  "@context": "https://schema.org",
  "@type": "FAQPage",
  "mainEntity": [
    {
      "@type": "Question",
      "acceptedAnswer": {
        "@type": "Answer",
        "text": "Ein Modell, das das nächste Textstück auf Basis des bisherigen Textes vorhersagt. Mit genug Trainingsdaten erzeugt diese Vorhersage flüssige, nützliche Antworten. Es ist Mustervervollständigung im großen Maßstab, kein Verstehen."
      },
      "name": "Was ist ein LLM einfach erklärt?"
    },
    {
      "@type": "Question",
      "acceptedAnswer": {
        "@type": "Answer",
        "text": "Wenn du eine garantiert korrekte, prüfbare Antwort brauchst. Ein LLM ist probabilistisch. Für Steuerrechnungen, Compliance-Logik oder alles, wo eine überzeugte falsche Antwort gefährlich ist, nutze deterministischen Code und lass das LLM nur am Rand assistieren."
      },
      "name": "Wann ist ein LLM das falsche Werkzeug?"
    },
    {
      "@type": "Question",
      "acceptedAnswer": {
        "@type": "Answer",
        "text": "Nur bis zu seinem Trainings-Cutoff. Alles Neuere oder alles Spezifische zu deinem Geschäft kennt es nicht, außer du gibst ihm diesen Kontext zur Laufzeit per Retrieval mit."
      },
      "name": "Kennt ein LLM aktuelle Ereignisse?"
    }
  ],
  "speakable": {
    "@type": "SpeakableSpecification",
    "cssSelector": [
      ".faq-question",
      ".faq-answer"
    ]
  }
}
```
