Skip to content

Commit

Permalink
feat: correctifs UI
Browse files Browse the repository at this point in the history
  • Loading branch information
JoeSlain committed Jan 8, 2025
1 parent 73e1b5a commit 2ff02a2
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions src/pages/Evaluations.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -186,13 +186,17 @@ export default function Evaluations() {
<div className="flex flex-col gap-4 mt-8 min-h-screen fr-container">
{selectedCardIndex === null ? (
<>
<h3>Sélectionnez une question pour évaluer Albert</h3>
<h3>Sélectionner une question pour évaluer Albert</h3>
<p>
Explorez et évaluez la pertinence des réponses générées par notre modèle IA à
travers cet échantillon de questions prédéfinies. <br />
Votre expertise nous aidera à mesurer la qualité de notre assistant
conversationnel.
</p>
<p>
Sélectionnez une question ci-dessous, les 5 questions s'affichent de manière
aléatoire sur 22 à évaluer.
</p>
<Questions navigate={navigate} />
</>
) : (
Expand Down Expand Up @@ -449,7 +453,7 @@ function EvaluationPannel({
>
<div className="flex flex-col px-4">
<div className="h-full flex flex-col">
<p className="font-bold fr-text--lg ">Qualifer la réponse</p>
<p className="font-bold fr-text--lg ">Qualifier la réponse</p>
<div className="flex flex-col gap-8 ">
{/* Global rating */}

Expand Down Expand Up @@ -734,8 +738,8 @@ const labels: { [index: string]: string } = {
1: 'Inutile',
2: 'Médiocre',
3: 'Passable',
4: 'Bon',
5: 'Excellent',
4: 'Bonne',
5: 'Excellente',
}

function getLabelText(value: number) {
Expand Down

0 comments on commit 2ff02a2

Please sign in to comment.