Autonomous-AI / agents /critic.py
Leonydis137's picture
Update agents/critic.py
c6d54d2 verified
raw
history blame
185 Bytes
from app import llm_model
def review_result(step, result):
prompt = f"Review the result of this step:\nStep: {step}\nResult: {result}\nIs it correct?"
return llm_model(prompt)