Skip to content

Commit 0f6c0b0

Browse files
refactor: Rename --voice flag to --conversation
1 parent be1aec2 commit 0f6c0b0

1 file changed

Lines changed: 6 additions & 6 deletions

File tree

  • src/agentex/lib/cli/commands

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

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -125,11 +125,11 @@ def get_project_context(answers: Dict[str, Any], project_path: Path, manifest_ro
125125

126126

127127
def init(
128-
voice: bool = typer.Option(
128+
conversation: bool = typer.Option(
129129
False,
130-
"--voice",
130+
"--conversation",
131131
hidden=True,
132-
help="Create a voice agent template with interruption handling and conversation state management",
132+
help="Create a conversational agent template with interruption handling and state management",
133133
),
134134
):
135135
"""Initialize a new agent project"""
@@ -140,9 +140,9 @@ def init(
140140
)
141141
)
142142

143-
# If --voice flag is passed, skip the menu and use voice template
144-
if voice:
145-
console.print("[bold cyan]Creating Voice Agent template...[/bold cyan]\n")
143+
# If --conversation flag is passed, skip the menu and use voice template
144+
if conversation:
145+
console.print("[bold cyan]Creating Conversational Agent template...[/bold cyan]\n")
146146
template_type = TemplateType.VOICE
147147
else:
148148
# Use a Rich table for template descriptions

0 commit comments

Comments
 (0)