File tree Expand file tree Collapse file tree 4 files changed +0
-20
lines changed Expand file tree Collapse file tree 4 files changed +0
-20
lines changed Original file line number Diff line number Diff 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 ,
Original file line number Diff line number Diff line change 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:
Original file line number Diff line number Diff line change 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:
Original file line number Diff line number Diff line change 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:
You can’t perform that action at this time.
0 commit comments