Spaces:
Runtime error
Runtime error
Update agents/executor.py
Browse files- agents/executor.py +5 -1
agents/executor.py
CHANGED
@@ -1 +1,5 @@
|
|
1 |
-
|
|
|
|
|
|
|
|
|
|
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)
|