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
refactor: Change voice template back to hidden --voice flag
Per team feedback, keep the voice template as a hidden flag until
audio package integration is complete. Users who understand the
limitations can use: agentex init --voice
"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.",
143
-
)
144
-
table.add_row(
145
-
"[bold cyan]Async - Temporal[/bold cyan]",
146
-
"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.",
147
-
)
148
-
table.add_row(
149
-
"[bold cyan]Sync ACP[/bold cyan]",
150
-
"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.",
151
-
)
152
-
table.add_row(
153
-
"[bold cyan]Conversational Agent[/bold cyan]",
154
-
"Real-time conversational agent with built-in interruption handling, state management, and guardrail support. Best for voice assistants, interactive chatbots, and applications requiring natural turn-taking and streaming responses.",
155
-
)
156
-
console.print()
157
-
console.print(table)
158
-
console.print()
143
+
# If --voice flag is passed, skip the menu and use voice template
"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.",
155
+
)
156
+
table.add_row(
157
+
"[bold cyan]Async - Temporal[/bold cyan]",
158
+
"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.",
159
+
)
160
+
table.add_row(
161
+
"[bold cyan]Sync ACP[/bold cyan]",
162
+
"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.",
163
+
)
164
+
console.print()
165
+
console.print(table)
166
+
console.print()
159
167
160
-
# Gather project information
161
-
template_type=questionary.select(
162
-
"What type of template would you like to create?",
0 commit comments