Spaces:
Runtime error
Runtime error
| from src.utils.shared import llm_model | |
| def review_result(step, result): | |
| prompt = f"""You are a code reviewer. Review the following Python implementation. | |
| Step: {step} | |
| Resulting Code: | |
| {result} | |
| Critique the code's correctness, efficiency, and edge cases:""" | |
| return llm_model(prompt) | |