You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
:learning-objective-1: Explain how agents execute reasoning loops and make tool invocation decisions
6
6
:learning-objective-2: Describe how agents manage context and state across interactions
7
7
:learning-objective-3: Identify error handling strategies for agent failures
8
8
9
-
Agents execute through a reasoning loop where the LLM analyzes context, decides which tools to invoke, processes results, and repeats until the task completes. Understanding this execution model helps you design reliable agent systems.
9
+
After you declaratively configure an agent's behavior (its LLM, system prompt, and tools), the framework manages execution through a reasoning loop. The LLM analyzes context, decides which tools to invoke, processes results, and repeats until the task completes. Understanding this execution model helps you fine-tune agent settings like iteration limits and tool selection.
Copy file name to clipboardExpand all lines: modules/ai-agents/pages/agents/create-agent.adoc
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,12 +1,12 @@
1
1
= Create an Agent
2
-
:description: Configure agents with model selection, system prompts, tool connections, and execution parameters.
2
+
:description: Declaratively configure an agent by choosing an LLM, writing a system prompt, connecting tools from built-in connectors, and setting execution parameters.
:learning-objective-1: Configure an agent with model selection and system prompt
6
6
:learning-objective-2: Connect MCP servers and select tools for your agent
7
7
:learning-objective-3: Set agent execution parameters including max iterations
8
8
9
-
Create a new AI agent through the Redpanda Cloud Console. This guide walks you through configuring the agent's model, system prompt, tools, and execution settings.
9
+
Create a new AI agent declaratively through the Redpanda Cloud Console. No Python or JavaScript code required. This guide walks you through configuring the agent's model, writing the system prompt, connecting tools from built-in connectors, and setting execution parameters.
:description: Build AI agents that use Redpanda Cloud for real-time streaming data and tool execution.
3
+
:description: Declare agent behavior using built-in connectors in Redpanda Cloud. No custom agent code required.
4
4
5
-
Build AI agents that combine large language models with MCP tools to process streaming data and execute actions.
5
+
Declare agent behavior by selecting an LLM and connecting tools from 300+ built-in Redpanda Connect connectors with filtering and data enrichment built in. No Python or JavaScript agent code required.
:learning-objective-1: Describe what AI agents are and their essential components
6
6
:learning-objective-2: Explain how Redpanda Cloud streaming infrastructure benefits agent architectures
7
7
:learning-objective-3: Identify use cases where Redpanda Cloud agents provide value
8
8
9
-
AI agents are systems that combine large language models (LLMs) with the ability to execute actions and process data. Redpanda Cloud provides real-time streaming infrastructure and standardized tool access to support agent development.
9
+
AI agents in Redpanda Cloud take a declarative approach: instead of writing Python or JavaScript agent code, you declare the behavior you want by selecting an LLM, writing a system prompt, and connecting tools drawn from 300+ built-in Redpanda Connect connectors. The framework handles execution, tool orchestration, and scaling, backed by real-time streaming infrastructure and built-in filtering and data enrichment.
@@ -18,11 +18,11 @@ After reading this page, you will be able to:
18
18
19
19
== What is an AI agent?
20
20
21
-
An AI agent is a system built around a glossterm:large language model (LLM)[] that can interpret user intent, decide which actions are required, invoke external tools, process live and historical data, and chain multiple steps into a workflow. AI agents differ from text-only LLMs by executing actions and invoking external tools.
21
+
An AI agent is a system built around a glossterm:large language model (LLM)[] that interprets user intent, selects the right tools, and chains multiple steps into a workflow. In Redpanda Cloud, agents are declarative: you configure what the agent should do (its role, constraints, and available tools) rather than writing imperative agent code. This is possible because Redpanda Connect provides 300+ connectors and robust data processing capabilities that the framework orchestrates for you.
22
22
23
23
== How agents work
24
24
25
-
Every AI agent consists of four essential components:
25
+
When you create an agent, you configure these four components through the Redpanda Cloud Console rather than writing code:
26
26
27
27
* *System prompt*: Defines the agent's role, responsibilities, and constraints
28
28
* *LLM*: Interprets user intent and decides which tools to invoke
@@ -37,7 +37,7 @@ For a deeper understanding of how agents execute, manage context, and maintain s
37
37
38
38
== Key benefits
39
39
40
-
Redpanda Cloud provides real-time streaming data so agents access live events instead of batch snapshots. xref:ai-agents:mcp/remote/overview.adoc[Remote MCP] support enables standardized tool access. Managed infrastructure handles deployment, scaling, and security for you. Low-latency execution means tools run close to your data. Integrated secrets management securely stores API keys and credentials.
40
+
A declarative approach means you configure agent behavior instead of coding it, with access to 300+ built-in Redpanda Connect connectors for data sources, APIs, and services. Real-time streaming data ensures agents access live events instead of batch snapshots. xref:ai-agents:mcp/remote/overview.adoc[Remote MCP] support enables standardized tool access. Managed infrastructure handles deployment, scaling, and security for you. Low-latency execution means tools run close to your data. Integrated secrets management securely stores API keys and credentials.
:description: Learn about the Redpanda Agentic Data Plane. Keep AI-powered apps highly available, control costs across providers, and govern access for teams, apps, and service accounts.
1
+
= AI Agents in Redpanda Cloud
2
+
:description: Build AI agents declaratively in Redpanda Cloud using 300+ built-in connectors. Configure behavior instead of writing custom agent code.
glossterm:AI agent[,AI agents] are configurable assistants that autonomously perform specialist tasks by leveraging large language models (LLMs) and connecting to external data sources and tools.
6
+
glossterm:AI agent[,AI agents] in Redpanda Cloud are declarative assistants that perform specialist tasks without requiring you to write Python or JavaScript agent code. You declare the behavior you want by choosing an LLM, defining a system prompt, and connecting tools powered by 300+ built-in Redpanda Connect connectors with robust filtering and data enrichment. The framework handles execution, orchestration, and scaling.
7
7
8
-
Redpanda's xref:ai-agents:adp-overview.adoc[Agentic Data Plane (ADP)] provides enterprise-grade infrastructure for building, deploying, and governing AI agents at scale with four key components that deliver enterprise governance, cost controls, and compliance-grade audit trails.
9
-
10
-
Redpanda Cloud provides two complementary Model Context Protocol (MCP) options to help you build AI agents.
8
+
Redpanda Cloud provides two complementary Model Context Protocol (MCP) options to connect agents to data sources and external services.
0 commit comments