Change order of justification key in eval schema (#1619)

Co-authored-by: Teo Musatoiu <156829031+teomusatoiu@users.noreply.github.com>
This commit is contained in:
Dylan Castillo 2025-01-21 15:08:16 +01:00 committed by GitHub
parent 863c84e94d
commit b59673c9ca
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -593,12 +593,12 @@
"\"\"\"\n", "\"\"\"\n",
"\n", "\n",
"class ScoreCard(BaseModel):\n", "class ScoreCard(BaseModel):\n",
" justification: str\n",
" categorization: int\n", " categorization: int\n",
" keyword_extraction: int\n", " keyword_extraction: int\n",
" sentiment_analysis: int\n", " sentiment_analysis: int\n",
" clarity_structure: int\n", " clarity_structure: int\n",
" detail_completeness: int\n", " detail_completeness: int"
" justification: str"
] ]
}, },
{ {