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
11 changes: 0 additions & 11 deletions src/agentex/lib/cli/commands/init.py
Original file line number Diff line number Diff line change
Expand Up @@ -184,16 +184,6 @@ def validate_agent_name(text: str) -> bool | str:
).ask()
if not description:
return

agent_input_type = questionary.select(
"What type of input will your agent handle?",
choices=[
{"name": "Text Input", "value": "text"},
{"name": "Structured Input", "value": "json"},
],
).ask()
if not agent_input_type:
return

use_uv = questionary.select(
"Would you like to use uv for package management?",
Expand All @@ -206,7 +196,6 @@ def validate_agent_name(text: str) -> bool | str:
answers = {
"template_type": template_type,
"project_path": project_path,
"agent_input_type": agent_input_type,
"agent_name": agent_name,
"agent_directory_name": agent_directory_name,
"description": description,
Expand Down
3 changes: 0 additions & 3 deletions src/agentex/lib/cli/templates/default/manifest.yaml.j2
Original file line number Diff line number Diff line change
Expand Up @@ -67,9 +67,6 @@ agent:
# Helps with documentation and discovery
description: {{ description }}

# Type of input the agent will handle: text or json
agent_input_type: {{ agent_input_type }}

# Temporal workflow configuration
# Set enabled: true to use Temporal workflows for long-running tasks
temporal:
Expand Down
3 changes: 0 additions & 3 deletions src/agentex/lib/cli/templates/sync/manifest.yaml.j2
Original file line number Diff line number Diff line change
Expand Up @@ -66,9 +66,6 @@ agent:
# Helps with documentation and discovery
description: {{ description }}

# Type of input the agent will handle: text or json
agent_input_type: {{ agent_input_type }}

# Temporal workflow configuration
# Set enabled: true to use Temporal workflows for long-running tasks
temporal:
Expand Down
3 changes: 0 additions & 3 deletions src/agentex/lib/cli/templates/temporal/manifest.yaml.j2
Original file line number Diff line number Diff line change
Expand Up @@ -75,9 +75,6 @@ agent:
# Helps with documentation and discovery
description: {{ description }}

# Type of input the agent will handle: text or json
agent_input_type: {{ agent_input_type }}

# Temporal workflow configuration
# This enables your agent to run as a Temporal workflow for long-running tasks
temporal:
Expand Down