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
Copy file name to clipboardExpand all lines: CHANGELOG.md
+10-1Lines changed: 10 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,14 @@
1
1
# Changelog
2
2
3
+
## 0.6.1 (2025-11-05)
4
+
5
+
Full Changelog: [v0.6.0...v0.6.1](https://github.com/scaleapi/scale-agentex-python/compare/v0.6.0...v0.6.1)
6
+
7
+
### Features
8
+
9
+
***api:** api update ([f6189a4](https://github.com/scaleapi/scale-agentex-python/commit/f6189a43e1430fdd16c8d10e6ad835d9dfa5871c))
10
+
***api:** api update ([714c719](https://github.com/scaleapi/scale-agentex-python/commit/714c7194e488e6070c99e200b91189f50dcdb831))
11
+
3
12
## 0.6.0 (2025-11-04)
4
13
5
14
Full Changelog: [v0.5.3...v0.6.0](https://github.com/scaleapi/scale-agentex-python/compare/v0.5.3...v0.6.0)
@@ -192,7 +201,7 @@ Full Changelog: [v0.4.10...v0.4.11](https://github.com/scaleapi/agentex-python/c
192
201
193
202
### Bug Fixes
194
203
195
-
* Adding new example for guardrails instead of using 10_agentic ([15dc44b](https://github.com/scaleapi/agentex-python/commit/15dc44b333a977564c9974cc089d5ef578840714))
204
+
* Adding new example for guardrails instead of using 10_async ([15dc44b](https://github.com/scaleapi/agentex-python/commit/15dc44b333a977564c9974cc089d5ef578840714))
196
205
* 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
Copy file name to clipboardExpand all lines: examples/tutorials/00_sync/010_multiturn/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
@@ -46,9 +46,9 @@ The handler accepts history, builds context, and returns responses that referenc
46
46
## When to Use
47
47
- Simple chatbots that need conversation memory
48
48
- When client can maintain and send conversation history
49
-
- Quick prototypes before building full agentic agents
49
+
- Quick prototypes before building full async agents
50
50
51
51
## Why This Matters
52
-
While sync agents can handle conversations, you're responsible for managing state on the client side. This becomes complex quickly. For production conversational agents, consider agentic agents ([10_agentic/00_base/010_multiturn](../../10_agentic/00_base/010_multiturn/)) where the platform manages state automatically.
52
+
While sync agents can handle conversations, you're responsible for managing state on the client side. This becomes complex quickly. For production conversational agents, consider async agents ([10_async/00_base/010_multiturn](../../10_async/00_base/010_multiturn/)) where the platform manages state automatically.
53
53
54
54
**Next:**[020_streaming](../020_streaming/) - Stream responses in real-time
Copy file name to clipboardExpand all lines: examples/tutorials/00_sync/020_streaming/README.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -42,4 +42,4 @@ Return an async generator instead of a single response - each `yield` sends an u
42
42
## Why This Matters
43
43
Streaming dramatically improves user experience for longer operations. Instead of waiting 10 seconds for a complete response, users see results immediately as they're generated. This is essential for modern AI agents.
44
44
45
-
**Next:** Ready for task management? → [10_agentic/00_base/000_hello_acp](../../10_agentic/00_base/000_hello_acp/)
45
+
**Next:** Ready for task management? → [10_async/00_base/000_hello_acp](../../10_async/00_base/000_hello_acp/)
0 commit comments