Skip to content

Commit 2f7146a

Browse files
clear prints
1 parent 63faf90 commit 2f7146a

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

examples/agents/todo_tools_example.py

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -32,10 +32,6 @@ async def main():
3232
default_options=AgentOptions(max_turns=30)
3333
)
3434

35-
print("=== Enhanced Todo Workflow Example ===\n")
36-
print("🚀 Hiking trip planning with systematic workflow:\n")
37-
38-
# Simpler query to reduce complexity
3935
query = "Plan a 1-day hiking trip for 2 people in Tatra Mountains, Poland. Focus on scenic routes under 15km, avoiding crowds."
4036
# query = "How long is hike to Giewont from Kuźnice?"
4137
# 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():
5349
action = response.arguments.get("action", "unknown")
5450

5551
if action == "create":
52+
print("=== Enhanced Todo Workflow Example ===\n")
53+
print("🚀 Hiking trip planning with systematic workflow:\n")
54+
5655
tasks = response.arguments.get("tasks", [])
5756
tasks_count = len(tasks)
5857
print(f" - Creating {tasks_count} tasks", flush=True)

0 commit comments

Comments
 (0)