Leonydis137 commited on
Commit
8706295
·
verified ·
1 Parent(s): 2cbe497

Update agents/executor.py

Browse files
Files changed (1) hide show
  1. agents/executor.py +5 -1
agents/executor.py CHANGED
@@ -1 +1,5 @@
1
- def execute_step(step): return f'Executed: {step}'
 
 
 
 
 
1
+ from app import llm_model
2
+
3
+ def execute_step(step):
4
+ prompt = f"Execute the following step:\n{step}"
5
+ return llm_model(prompt)