File tree Expand file tree Collapse file tree 7 files changed +22
-22
lines changed
apps/web/src/components/evaluations Expand file tree Collapse file tree 7 files changed +22
-22
lines changed Original file line number Diff line number Diff line change @@ -36,8 +36,8 @@ function ConfigurationSimpleForm({
36
36
value = { configuration . passDescription ?? '' }
37
37
name = 'passDescription'
38
38
label = 'Pass description'
39
- description = 'When should the response pass? '
40
- placeholder = 'No pass description '
39
+ description = 'Additional guidelines describing when the response is acceptable '
40
+ placeholder = 'The response promotes continued interaction '
41
41
onChange = { ( e ) =>
42
42
setConfiguration ( {
43
43
...configuration ,
@@ -53,8 +53,8 @@ function ConfigurationSimpleForm({
53
53
value = { configuration . failDescription ?? '' }
54
54
name = 'failDescription'
55
55
label = 'Fail description'
56
- description = 'When should the response fail? '
57
- placeholder = 'No fail description '
56
+ description = 'Additional guidelines describing when the response is not acceptable '
57
+ placeholder = 'The response discourages interaction '
58
58
onChange = { ( e ) =>
59
59
setConfiguration ( {
60
60
...configuration ,
Original file line number Diff line number Diff line change @@ -39,7 +39,7 @@ function ConfigurationSimpleForm({
39
39
< FormFieldGroup
40
40
layout = 'horizontal'
41
41
label = 'Minimum rating'
42
- description = 'When should the response be rated low? '
42
+ description = 'Additional guidelines describing when the response should be rated low'
43
43
>
44
44
< NumberInput
45
45
value = { configuration . minRating ?? undefined }
@@ -59,7 +59,7 @@ function ConfigurationSimpleForm({
59
59
< Input
60
60
value = { configuration . minRatingDescription ?? '' }
61
61
name = 'minRatingDescription'
62
- placeholder = 'No minimum rating description '
62
+ placeholder = 'The response discourages interaction '
63
63
onChange = { ( e ) =>
64
64
setConfiguration ( {
65
65
...configuration ,
@@ -75,7 +75,7 @@ function ConfigurationSimpleForm({
75
75
< FormFieldGroup
76
76
layout = 'horizontal'
77
77
label = 'Maximum rating'
78
- description = 'When should the response be rated high? '
78
+ description = 'Additional guidelines describing when the response should be rated high'
79
79
>
80
80
< NumberInput
81
81
value = { configuration . maxRating ?? undefined }
@@ -95,7 +95,7 @@ function ConfigurationSimpleForm({
95
95
< Input
96
96
value = { configuration . maxRatingDescription ?? '' }
97
97
name = 'maxRatingDescription'
98
- placeholder = 'No maximum rating description '
98
+ placeholder = 'The response promotes continued interaction '
99
99
onChange = { ( e ) =>
100
100
setConfiguration ( {
101
101
...configuration ,
Original file line number Diff line number Diff line change @@ -56,8 +56,8 @@ function ConfigurationSimpleForm<M extends HumanEvaluationMetric>({
56
56
value = { configuration . criteria ?? '' }
57
57
name = 'criteria'
58
58
label = 'Criteria'
59
- description = 'The criteria to judge against'
60
- placeholder = 'No criteria '
59
+ description = 'Optional instructions to guide the evaluators on the criteria to judge against'
60
+ placeholder = 'Judge the engagement of the response '
61
61
minRows = { 2 }
62
62
maxRows = { 4 }
63
63
onChange = { ( e ) =>
Original file line number Diff line number Diff line change @@ -33,7 +33,7 @@ function ConfigurationSimpleForm({
33
33
value = { configuration . criteria ?? '' }
34
34
name = 'criteria'
35
35
label = 'Criteria'
36
- description = 'The criteria to judge against'
36
+ description = 'Instructions to guide the LLM on the criteria to judge against'
37
37
placeholder = 'Judge the engagement of the response'
38
38
minRows = { 2 }
39
39
maxRows = { 4 }
@@ -49,8 +49,8 @@ function ConfigurationSimpleForm({
49
49
value = { configuration . passDescription ?? '' }
50
50
name = 'passDescription'
51
51
label = 'Pass description'
52
- description = 'When should the response pass? '
53
- placeholder = 'The response demonstrates continued interaction'
52
+ description = 'Additional guidelines describing when the response is acceptable '
53
+ placeholder = 'The response promotes continued interaction'
54
54
onChange = { ( e ) =>
55
55
setConfiguration ( {
56
56
...configuration ,
@@ -66,7 +66,7 @@ function ConfigurationSimpleForm({
66
66
value = { configuration . failDescription ?? '' }
67
67
name = 'failDescription'
68
68
label = 'Fail description'
69
- description = 'When should the response fail? '
69
+ description = 'Additional guidelines describing when the response is not acceptable '
70
70
placeholder = 'The response discourages interaction'
71
71
onChange = { ( e ) =>
72
72
setConfiguration ( {
Original file line number Diff line number Diff line change @@ -36,7 +36,7 @@ function ConfigurationSimpleForm({
36
36
value = { configuration . criteria ?? '' }
37
37
name = 'criteria'
38
38
label = 'Criteria'
39
- description = 'The criteria to judge against'
39
+ description = 'Instructions to guide the LLM on the criteria to judge against'
40
40
placeholder = 'Judge the similarity of the translation'
41
41
minRows = { 2 }
42
42
maxRows = { 4 }
@@ -52,7 +52,7 @@ function ConfigurationSimpleForm({
52
52
value = { configuration . passDescription ?? '' }
53
53
name = 'passDescription'
54
54
label = 'Pass description'
55
- description = 'When should the response adequately compare? '
55
+ description = 'Additional guidelines describing when the response adequately compares '
56
56
placeholder = 'The translation is almost identical'
57
57
onChange = { ( e ) =>
58
58
setConfiguration ( {
@@ -69,7 +69,7 @@ function ConfigurationSimpleForm({
69
69
value = { configuration . failDescription ?? '' }
70
70
name = 'failDescription'
71
71
label = 'Fail description'
72
- description = 'When should the response poorly compare? '
72
+ description = 'Additional guidelines describing when the response poorly compares '
73
73
placeholder = 'The translation is completely different'
74
74
onChange = { ( e ) =>
75
75
setConfiguration ( {
Original file line number Diff line number Diff line change 89
89
{ mode === 'create' && (
90
90
< FormField
91
91
label = 'Prompt'
92
- description = 'The custom evaluation prompt to judge against'
92
+ description = 'The custom evaluation prompt the LLM will use to judge against'
93
93
errors = { errors ?. [ 'prompt' ] }
94
94
>
95
95
< Alert
Original file line number Diff line number Diff line change @@ -37,7 +37,7 @@ function ConfigurationSimpleForm({
37
37
value = { configuration . criteria ?? '' }
38
38
name = 'criteria'
39
39
label = 'Criteria'
40
- description = 'The criteria to judge against'
40
+ description = 'Instructions to guide the LLM on the criteria to judge against'
41
41
placeholder = 'Judge the engagement of the response'
42
42
minRows = { 2 }
43
43
maxRows = { 4 }
@@ -52,7 +52,7 @@ function ConfigurationSimpleForm({
52
52
< FormFieldGroup
53
53
layout = 'horizontal'
54
54
label = 'Minimum rating'
55
- description = 'When should the response be rated low? '
55
+ description = 'Additional guidelines describing when the response should be rated low'
56
56
>
57
57
< NumberInput
58
58
value = { configuration . minRating ?? undefined }
@@ -88,7 +88,7 @@ function ConfigurationSimpleForm({
88
88
< FormFieldGroup
89
89
layout = 'horizontal'
90
90
label = 'Maximum rating'
91
- description = 'When should the response be rated high? '
91
+ description = 'Additional guidelines describing when the response should be rated high'
92
92
>
93
93
< NumberInput
94
94
value = { configuration . maxRating ?? undefined }
@@ -108,7 +108,7 @@ function ConfigurationSimpleForm({
108
108
< Input
109
109
value = { configuration . maxRatingDescription ?? '' }
110
110
name = 'maxRatingDescription'
111
- placeholder = 'The response demonstrates continued interaction'
111
+ placeholder = 'The response promotes continued interaction'
112
112
onChange = { ( e ) =>
113
113
setConfiguration ( {
114
114
...configuration ,
You can’t perform that action at this time.
0 commit comments