You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: app/web_ui/src/routes/(app)/evals/[project_id]/[task_id]/create_evaluator/select_eval_template.svelte
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -412,7 +412,7 @@
412
412
<FormElement
413
413
label="Failure Example - Recommended"
414
414
description="An example of model output that should fail the eval."
415
-
info_description="Including an example helps the judge model understand the issue."
415
+
info_description="Examples help the judge model understand the issue. The format is flexible (plain text); you can include the entire input/output or just the relevant portion. You can include a description or multiple examples if needed."
416
416
inputType="textarea"
417
417
id="failure_example"
418
418
optional={true}
@@ -421,7 +421,7 @@
421
421
<FormElement
422
422
label="Passing Example"
423
423
description="An example of model output that should pass the eval."
424
-
info_description="Including an example helps the judge model understand the issue."
424
+
info_description="Examples help the judge model understand the issue. The format is flexible (plain text); you can include the entire input/output or just the relevant portion. You can include a description or multiple examples if needed."
-[Adding Custom Model or AI Provider from Code](#adding-custom-model-or-ai-provider-from-code)
44
46
-[Full API Reference](#full-api-reference)
45
47
@@ -49,6 +51,12 @@ The library has a [comprehensive set of docs](https://kiln-ai.github.io/Kiln/kil
49
51
pip install kiln-ai
50
52
```
51
53
54
+
## Connecting AI Providers (OpenAI, OpenRouter, Ollama, etc)
55
+
56
+
The easiest way to connect AI providers is to use the Kiln app UI. Once connected in the UI, credentials will be stored to `~/.kiln_ai/settings.yml`, which will be available to the library.
57
+
58
+
For configuring credentials from code or connecting custom servers/model, see [Adding Custom Model or AI Provider from Code](#adding-custom-model-or-ai-provider-from-code).
0 commit comments