From 5941c31502789c91ee09dfaf3670337a5c4ecae6 Mon Sep 17 00:00:00 2001 From: MUHAMMAD SALMAN HUSSAIN <160324527+mshsheikh@users.noreply.github.com> Date: Fri, 11 Jul 2025 20:55:35 +0500 Subject: [PATCH] Fix typo in Evaluator Instructions (capitalization of "After 5 attempts") Corrected the capitalization of "after" to "After" in the evaluator instructions string to ensure grammatical consistency and proper formatting. --- examples/agent_patterns/llm_as_a_judge.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/agent_patterns/llm_as_a_judge.py b/examples/agent_patterns/llm_as_a_judge.py index c639a4d60..81dec7501 100644 --- a/examples/agent_patterns/llm_as_a_judge.py +++ b/examples/agent_patterns/llm_as_a_judge.py @@ -32,7 +32,7 @@ class EvaluationFeedback: instructions=( "You evaluate a story outline and decide if it's good enough." "If it's not good enough, you provide feedback on what needs to be improved." - "Never give it a pass on the first try. after 5 attempts, you can give it a pass if story outline is good enough - do not go for perfection" + "Never give it a pass on the first try. After 5 attempts, you can give it a pass if story outline is good enough - do not go for perfection" ), output_type=EvaluationFeedback, )