File tree Expand file tree Collapse file tree 1 file changed +3
-4
lines changed Expand file tree Collapse file tree 1 file changed +3
-4
lines changed Original file line number Diff line number Diff line change @@ -32,10 +32,6 @@ async def main():
32
32
default_options = AgentOptions (max_turns = 30 )
33
33
)
34
34
35
- print ("=== Enhanced Todo Workflow Example ===\n " )
36
- print ("🚀 Hiking trip planning with systematic workflow:\n " )
37
-
38
- # Simpler query to reduce complexity
39
35
query = "Plan a 1-day hiking trip for 2 people in Tatra Mountains, Poland. Focus on scenic routes under 15km, avoiding crowds."
40
36
# query = "How long is hike to Giewont from Kuźnice?"
41
37
# query = "Is it difficult to finish Orla Perć? Would you recommend me to go there if I've never been in mountains before?"
@@ -53,6 +49,9 @@ async def main():
53
49
action = response .arguments .get ("action" , "unknown" )
54
50
55
51
if action == "create" :
52
+ print ("=== Enhanced Todo Workflow Example ===\n " )
53
+ print ("🚀 Hiking trip planning with systematic workflow:\n " )
54
+
56
55
tasks = response .arguments .get ("tasks" , [])
57
56
tasks_count = len (tasks )
58
57
print (f" - Creating { tasks_count } tasks" , flush = True )
You can’t perform that action at this time.
0 commit comments