From b59673c9cade5fab128e2d481c17d924ee26967a Mon Sep 17 00:00:00 2001 From: Dylan Castillo Date: Tue, 21 Jan 2025 15:08:16 +0100 Subject: [PATCH] Change order of justification key in eval schema (#1619) Co-authored-by: Teo Musatoiu <156829031+teomusatoiu@users.noreply.github.com> --- examples/Enhance_your_prompts_with_meta_prompting.ipynb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/Enhance_your_prompts_with_meta_prompting.ipynb b/examples/Enhance_your_prompts_with_meta_prompting.ipynb index c30cc47..4b4f589 100644 --- a/examples/Enhance_your_prompts_with_meta_prompting.ipynb +++ b/examples/Enhance_your_prompts_with_meta_prompting.ipynb @@ -593,12 +593,12 @@ "\"\"\"\n", "\n", "class ScoreCard(BaseModel):\n", + " justification: str\n", " categorization: int\n", " keyword_extraction: int\n", " sentiment_analysis: int\n", " clarity_structure: int\n", - " detail_completeness: int\n", - " justification: str" + " detail_completeness: int" ] }, {