Spaces:
Runtime error
Runtime error
Create planner.py
Browse files- 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 |
+
]
|