Agenten

in KI-Konzepte

Autonome KI-Systeme, die Aufgaben mehrschrittig bearbeiten.

Blog Posts

Glossary

Ensemble / Multi-Model Orchestration Agenten

Ensemble means combining several deliberately varied LLM runs or models whose findings complement each other. Multi-model orchestration drives these runs via orchestrators with sub-agents, so the union of results is larger than any single run.

Agent Skills Agenten

Modular, reusable instruction packages (e.g. Claude Agent Skills) that an AI agent loads from disk on demand to perform specialized tasks — built around a SKILL.md holding metadata and instructions, plus optional scripts and reference files.

AI Agent Agenten

An AI agent combines a language model with tools and works toward a goal across multiple steps — typically in a loop of observing, planning and acting.

AutoGPT Agenten

AutoGPT is an open-source experiment released in 2023 that runs a language model such as GPT-4 in an autonomous loop — it breaks a goal into subtasks itself, calls tools and works through them with minimal human intervention.

Browser Use Agenten

Browser use refers to AI agents that drive a real web browser — navigating, clicking, filling forms, reading content — to complete web tasks autonomously. The browser serves as both the tool and the perception surface.

Computer Use Agenten

Computer Use is a capability of modern AI models that lets them operate a computer like a human — see the screen, move the mouse, use the keyboard — to perform tasks across arbitrary applications without an API.

Function Calling Agenten

Function calling is a language model's ability to produce a structured function invocation instead of a text reply — the technical foundation for tool use and AI agents.

MCP Agenten

MCP — Model Context Protocol — is an open standard from Anthropic for connecting AI models to external data sources and tools through a unified interface.

Structured Output / JSON Mode Agenten

Structured output is a language model's ability to deliver responses in a defined schema (typically JSON), reliable enough to be consumed directly by downstream code.

Tool Call Agenten

An invocation of a tool by an AI model during a conversation — such as reading a file, running a bash command, fetching from the web or calling an MCP tool. The foundation of agentic workflows.

Encyclopedia

Function Calling / Tool Use

How an LLM uses tools: define a tool as a schema, the model picks the function and arguments, the result returns to the chat — the basis of every agent.

Redaktion

Related Topics