File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -158,7 +158,7 @@ chat.export_eval(
158158Since our data is now is in JSONL format, before running the eval, we'll want to tweak our ` Task ` definition to load the JSONL dataset:
159159
160160``` python
161- from inspect_ai.dataset import jsonl_dataset
161+ from inspect_ai.dataset import json_dataset
162162
163163Task(dataset = jsonl_dataset(" my_eval_dataset.jsonl" ), ... )
164164```
@@ -177,7 +177,7 @@ Having the system prompt and conversation history included in your `dataset` is
177177``` {.python filename="my_eval.py"}
178178from chatlas import ChatOpenAI
179179from inspect_ai import Task, task
180- from inspect_ai.dataset import jsonl_dataset
180+ from inspect_ai.dataset import json_dataset
181181from inspect_ai.scorer import model_graded_qa
182182
183183# No system prompt needed since dataset already includes it
@@ -294,4 +294,4 @@ If there is no existing resource of input prompts to pull from, still try to avo
294294>
295295> Scenarios: Situations or problems the AI may encounter and needs to handle.
296296>
297- > Personas: Representative user profiles with distinct characteristics and needs.
297+ > Personas: Representative user profiles with distinct characteristics and needs.
You can’t perform that action at this time.
0 commit comments