File size: 185 Bytes
c6d54d2
 
 
 
 
1
2
3
4
5
6
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)