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
if (!allowedRoles.includes(permission.permission)) {
43
+
throw new Error(`❌ User ${context.actor} does not have sufficient permissions. Required: ${allowedRoles.join(', ')}. Current: ${permission.permission}`);
Full Changelog: [v0.5.2...v0.5.3](https://github.com/scaleapi/scale-agentex-python/compare/v0.5.2...v0.5.3)
@@ -179,7 +221,7 @@ Full Changelog: [v0.4.10...v0.4.11](https://github.com/scaleapi/agentex-python/c
179
221
180
222
### Bug Fixes
181
223
182
-
* Adding new example for guardrails instead of using 10_agentic ([15dc44b](https://github.com/scaleapi/agentex-python/commit/15dc44b333a977564c9974cc089d5ef578840714))
224
+
* Adding new example for guardrails instead of using 10_async ([15dc44b](https://github.com/scaleapi/agentex-python/commit/15dc44b333a977564c9974cc089d5ef578840714))
183
225
* avoid newer type syntax ([6b5c82a](https://github.com/scaleapi/agentex-python/commit/6b5c82aab9ebcf755575b641aced2b77a13a71c3))
Copy file name to clipboardExpand all lines: examples/tutorials/00_sync/000_hello_acp/README.md
+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
@@ -6,7 +6,7 @@ The simplest agent type: synchronous request/response pattern with a single `@ac
6
6
## What You'll Learn
7
7
- Building a basic synchronous agent
8
8
- The `@acp.on_message_send` handler pattern
9
-
- When to use sync vs agentic agents
9
+
- When to use sync vs async agents
10
10
11
11
## Prerequisites
12
12
- Development environment set up (see [main repo README](https://github.com/scaleapi/scale-agentex))
@@ -39,6 +39,6 @@ That's it - one handler, immediate response. No task creation, no state manageme
39
39
- Operations that complete in under a second
40
40
41
41
## Why This Matters
42
-
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.
42
+
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 async agents.
43
43
44
44
**Next:**[010_multiturn](../010_multiturn/) - Add conversation memory to your agent
0 commit comments