Skip to content

Commit 99495e8

Browse files
committed
String consistency in UI
1 parent 358bd88 commit 99495e8

File tree

1 file changed

+5
-5
lines changed
  • app/web_ui/src/routes/(app)/evals/[project_id]/[task_id]/[eval_id]

1 file changed

+5
-5
lines changed

app/web_ui/src/routes/(app)/evals/[project_id]/[task_id]/[eval_id]/+page.svelte

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -165,7 +165,7 @@
165165
async function get_score_summary() {
166166
score_summary = null
167167
if (!current_eval_config_id) {
168-
score_summary_error = new KilnError("No eval config selected", null)
168+
score_summary_error = new KilnError("No evaluation method selected", null)
169169
return
170170
}
171171
try {
@@ -325,9 +325,9 @@
325325
326326
const results: [string, [unknown, string][]][] = []
327327
if (configs_options.length > 0) {
328-
results.push(["Select Eval Config", configs_options])
328+
results.push(["Select Eval Method", configs_options])
329329
}
330-
results.push(["Manage Eval Configs", [["add_config", "Add Eval Config"]]])
330+
results.push(["Manage Eval Methods", [["add_config", "Add Eval Method"]]])
331331
return results
332332
}
333333
@@ -460,7 +460,7 @@
460460
<FormElement
461461
hide_label={true}
462462
id="eval_config_select"
463-
label="Eval Config"
463+
label="Eval Method"
464464
inputType="select"
465465
bind:value={current_eval_config_id}
466466
select_options_grouped={get_eval_config_select_options(
@@ -665,7 +665,7 @@
665665
add_task_config_dialog?.show()
666666
}}
667667
>
668-
Add Task Config
668+
Add Run Method
669669
</button>
670670
{/if}
671671
</div>

0 commit comments

Comments
 (0)