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
This is a simple AgentEx agent that just says hello and acknowledges the user's message to show which ACP methods need to be implemented for the sync ACP type.
4
+
The simplest agent type: synchronous request/response pattern with a single `@acp.on_message_send` handler. Best for stateless operations that complete immediately.
4
5
5
6
## Official Documentation
6
7
8
+
## Prerequisites
9
+
- Development environment set up (see [main repo README](https://github.com/scaleapi/scale-agentex))
10
+
- Backend services running: `make dev` from repository (agentex) root
11
+
12
+
## Quick Start
13
+
14
+
```bash
15
+
cd examples/tutorials/00_sync/000_hello_acp
16
+
uv run agentex agents run --manifest manifest.yaml
That's it - one handler, immediate response. No task creation, no state management.
31
+
32
+
## When to Use
33
+
- Simple chatbots with no memory requirements
34
+
- Quick Q&A or information lookup agents
35
+
- Prototyping and testing agent responses
36
+
- Operations that complete in under a second
37
+
38
+
## Why This Matters
39
+
Sync agents are the simplest way to get started with AgentEx. They're perfect for learning the basics and building stateless agents. Once you need conversation memory or task tracking, you'll graduate to agentic agents.
40
+
41
+
**Next:**[010_multiturn](../010_multiturn/) - Add conversation memory to your agent
0 commit comments