Leonydis137 commited on
Commit
927e8b2
·
verified ·
1 Parent(s): 5877ece

Create planner.py

Browse files
Files changed (1) hide show
  1. agents/planner.py +6 -0
agents/planner.py ADDED
@@ -0,0 +1,6 @@
 
 
 
 
 
 
 
1
+ def generate_plan(goal, memory):
2
+ return [
3
+ f"Research how to {goal}",
4
+ f"Implement solution for {goal}",
5
+ f"Test if solution works for {goal}"
6
+ ]