Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions src/agentex/lib/cli/commands/init.py
Original file line number Diff line number Diff line change
Expand Up @@ -132,6 +132,10 @@ def init():
table = Table(show_header=True, header_style="bold blue")
table.add_column("Template", style="cyan", no_wrap=True)
table.add_column("Description", style="white")
table.add_row(
"[bold cyan]Sync ACP[/bold cyan]",
"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.",
)
table.add_row(
"[bold cyan]Async - ACP Only[/bold cyan]",
"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.",
Expand All @@ -140,10 +144,6 @@ def init():
"[bold cyan]Async - Temporal[/bold cyan]",
"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.",
)
table.add_row(
"[bold cyan]Sync ACP[/bold cyan]",
"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.",
)
console.print()
console.print(table)
console.print()
Expand All @@ -159,9 +159,9 @@ def validate_agent_name(text: str) -> bool | str:
template_type = questionary.select(
"What type of template would you like to create?",
choices=[
{"name": "Sync ACP", "value": "sync_submenu"},
{"name": "Async - ACP Only", "value": "async_submenu"},
{"name": "Async - Temporal", "value": "temporal_submenu"},
{"name": "Sync ACP", "value": "sync_submenu"},
],
).ask()
if not template_type:
Expand Down
Loading