Skip to content

Commit 092569e

Browse files
chiang-danielclaude
andcommitted
Fix UI typos and legacy strings
Co-Authored-By: Claude Opus 4.6 (1M context) <[email protected]>
1 parent 2e1018b commit 092569e

7 files changed

Lines changed: 11 additions & 11 deletions

File tree

.config/legacy_guides/Model Support.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ Included models include common models like Claude, GPT-4, Llama, and many more.
3535

3636
Any Ollama model you have installed on your server will be available to use in Kiln. To add models, simply install them with the Ollama CLI `ollama pull <model_name>`.
3737

38-
Some Ollama models are included/tested, and will automtically appear in the model dropdown. Any untested Ollama models will still appear in the dropdown, but in the "Untested" section.
38+
Some Ollama models are included/tested, and will automatically appear in the model dropdown. Any untested Ollama models will still appear in the dropdown, but in the "Untested" section.
3939

4040
## Custom Models from Existing Providers
4141

.config/legacy_guides/Synthetic Data Generation.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ Synthetic data can help resolve this issue, and ensure it doesn't regress.
9292
5. Once the synthetic data tool is reliably generating correct data (with this model and guidance pair), scale up your generation to hundreds of samples.
9393
6. Save your new synthetic dataset
9494

95-
The new examples will be saved to your dataset, and will include a unique tag to idenity them (e.g. `synthetic_session_12345`). With this new dataset in hand you can resolve the issue:
95+
The new examples will be saved to your dataset, and will include a unique tag to identify them (e.g. `synthetic_session_12345`). With this new dataset in hand you can resolve the issue:
9696

9797
1. Simple: Fix the root prompt, and use this new dataset subset in your evaluations to ensure it works (and doesn't regress in the future)
9898
2. Advanced: [Fine-tune a model](Fine%20Tuning%20LLM%20Models%20Guide.md) with this data, so smaller and faster models learn to emulate your desired styles. Withhold a test set to ensure it worked.

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@
6868
6969
const columns = [
7070
{ key: "rating", label: "Rating" },
71-
{ key: "repairState", label: "Repair State" },
71+
{ key: "repairState", label: "Feedback" },
7272
{ key: "source", label: "Source" },
7373
{ key: "model", label: "Model" },
7474
{ key: "created_at", label: "Created At" },

app/web_ui/src/routes/(app)/fine_tune/[project_id]/[task_id]/create_finetune/+page.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -632,7 +632,7 @@
632632
}
633633
634634
const data_strategies_labels: Record<ChatStrategy, string> = {
635-
final_only: "Disabled - (Recommended)",
635+
final_only: "Final Response Only (Recommended)",
636636
two_message_cot: "Thinking - Learn both thinking and final response",
637637
final_and_intermediate:
638638
"Thinking - Learn both thinking and final response (Legacy Format)",

app/web_ui/src/routes/(app)/generate/[project_id]/[task_id]/synth/+page.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1398,7 +1398,7 @@
13981398
<div class="font-light flex flex-col gap-2">
13991399
<p>
14001400
Your existing synthetic data gen session is incompatible with your
1401-
current goal. You'll need to clear it's data to start a new session for
1401+
current goal. You'll need to clear its data to start a new session for
14021402
this goal.
14031403
</p>
14041404
<Warning warning_message="This action cannot be undone." />

app/web_ui/src/routes/(fullscreen)/setup/(setup)/connect_providers/connect_providers.svelte

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -387,13 +387,13 @@
387387
const disconnect_provider = async (provider: Provider) => {
388388
if (provider.id === "ollama") {
389389
alert(
390-
"Ollama automatically connects to the localhost Ollama instance when it is running. It can't be manually disconnected. To change your preferred Ollama URL, turn of your localhost Ollama instance then return to this screen.",
390+
"Ollama automatically connects to the localhost Ollama instance when it is running. It can't be manually disconnected. To change your preferred Ollama URL, turn off your Ollama instance, then return to this screen.",
391391
)
392392
return
393393
}
394394
if (
395395
!confirm(
396-
"Are you sure you want to disconnect this provider? Your connection details will be deleted and can not be recovered.",
396+
"Are you sure you want to disconnect this provider? Your connection details will be deleted and cannot be recovered.",
397397
)
398398
) {
399399
return
@@ -1084,7 +1084,7 @@
10841084
<FormElement
10851085
id="ollama_url"
10861086
label="Ollama URL"
1087-
info_description="It should included the http prefix, and the port number. For example, http://localhost:11434"
1087+
info_description="It should include the http prefix and the port number. For example, http://localhost:11434"
10881088
bind:value={custom_ollama_url}
10891089
placeholder="http://localhost:11434"
10901090
/>
@@ -1165,7 +1165,7 @@
11651165

11661166
<h3 class="text-lg font-bold flex flex-row gap-4">Connect Custom APIs</h3>
11671167
<p class="text-sm font-light mb-8">
1168-
Connect any any OpenAI compatible API by adding a base URL and API key.
1168+
Connect any OpenAI-compatible API by adding a base URL and API key.
11691169
</p>
11701170
{#if custom_openai_compatible_providers.length > 0}
11711171
<div class="flex flex-col gap-2">
@@ -1200,7 +1200,7 @@
12001200
label="API Name"
12011201
bind:value={new_provider_name}
12021202
placeholder="My home server"
1203-
info_description="A name for this endpoint for you use. Example: 'My home server'"
1203+
info_description="A name for this endpoint for you to use. Example: 'My home server'"
12041204
/>
12051205
<FormElement
12061206
id="base_url"

libs/core/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -330,7 +330,7 @@ See our docs for more information, including how to add these from the UI:
330330
You can also add these from code. The kiln_ai.utils.Config class helps you manage the Kiln config file (stored at `~/.kiln_ai/settings.yaml`):
331331

332332
```python
333-
# Addding an OpenAI compatible provider
333+
# Adding an OpenAI compatible provider
334334
name = "CustomOllama"
335335
base_url = "http://localhost:1234/api/v1"
336336
api_key = "12345"

0 commit comments

Comments
 (0)