Skip to content

Commit 339078b

Browse files
committed
Fix description
1 parent 42455ad commit 339078b

File tree

1 file changed

+3
-3
lines changed
  • src/agentex/lib/cli/commands

1 file changed

+3
-3
lines changed

src/agentex/lib/cli/commands/init.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -126,15 +126,15 @@ def init():
126126
table.add_column("Description", style="white")
127127
table.add_row(
128128
"[bold cyan]Async - ACP Only[/bold cyan]",
129-
"A simple synchronous agent that handles tasks directly. Best for straightforward agents that don't need long-running operations.",
129+
"Asynchronous, non-blocking agent that can process multiple concurrent requests. Best for straightforward asynchronous agents that don't need durable execution. Good for asynchronous workflows, stateful applications, and multi-step analysis.",
130130
)
131131
table.add_row(
132132
"[bold cyan]Async - Temporal[/bold cyan]",
133-
"An asynchronous agent powered by Temporal workflows. Best for agents that need to handle long-running tasks, retries, or complex state management.",
133+
"Asynchronous, non-blocking agent with durable execution for all steps. Best for production-grade agents that require complex multi-step tool calls, human-in-the-loop approvals, and long-running processes that require transactional reliability.",
134134
)
135135
table.add_row(
136136
"[bold cyan]Sync ACP[/bold cyan]",
137-
"A synchronous agent that handles tasks directly. The difference is that this Sync ACP will be required to respond with the results in the same call as the input.Best for straightforward agents that don't need long-running operations.",
137+
"Synchronous agent that processes one request per task with a simple request-response pattern. Best for low-latency use cases, FAQ bots, translation services, and data lookups.",
138138
)
139139
console.print()
140140
console.print(table)

0 commit comments

Comments
 (0)