Skip to content

Commit e50de46

Browse files
Merge remote-tracking branch 'origin/main' into next
2 parents 82da0d1 + 6e3d681 commit e50de46

File tree

4 files changed

+0
-20
lines changed

4 files changed

+0
-20
lines changed

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

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -184,16 +184,6 @@ def validate_agent_name(text: str) -> bool | str:
184184
).ask()
185185
if not description:
186186
return
187-
188-
agent_input_type = questionary.select(
189-
"What type of input will your agent handle?",
190-
choices=[
191-
{"name": "Text Input", "value": "text"},
192-
{"name": "Structured Input", "value": "json"},
193-
],
194-
).ask()
195-
if not agent_input_type:
196-
return
197187

198188
use_uv = questionary.select(
199189
"Would you like to use uv for package management?",
@@ -206,7 +196,6 @@ def validate_agent_name(text: str) -> bool | str:
206196
answers = {
207197
"template_type": template_type,
208198
"project_path": project_path,
209-
"agent_input_type": agent_input_type,
210199
"agent_name": agent_name,
211200
"agent_directory_name": agent_directory_name,
212201
"description": description,

src/agentex/lib/cli/templates/default/manifest.yaml.j2

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -67,9 +67,6 @@ agent:
6767
# Helps with documentation and discovery
6868
description: {{ description }}
6969

70-
# Type of input the agent will handle: text or json
71-
agent_input_type: {{ agent_input_type }}
72-
7370
# Temporal workflow configuration
7471
# Set enabled: true to use Temporal workflows for long-running tasks
7572
temporal:

src/agentex/lib/cli/templates/sync/manifest.yaml.j2

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -66,9 +66,6 @@ agent:
6666
# Helps with documentation and discovery
6767
description: {{ description }}
6868

69-
# Type of input the agent will handle: text or json
70-
agent_input_type: {{ agent_input_type }}
71-
7269
# Temporal workflow configuration
7370
# Set enabled: true to use Temporal workflows for long-running tasks
7471
temporal:

src/agentex/lib/cli/templates/temporal/manifest.yaml.j2

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -75,9 +75,6 @@ agent:
7575
# Helps with documentation and discovery
7676
description: {{ description }}
7777

78-
# Type of input the agent will handle: text or json
79-
agent_input_type: {{ agent_input_type }}
80-
8178
# Temporal workflow configuration
8279
# This enables your agent to run as a Temporal workflow for long-running tasks
8380
temporal:

0 commit comments

Comments
 (0)