Skip to content

Commit

Permalink
update sample data
Browse files Browse the repository at this point in the history
  • Loading branch information
rachhek committed Dec 12, 2024
1 parent e4a53e0 commit 999c6da
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 1 deletion.
1 change: 1 addition & 0 deletions use_case_research_assistant/data/sample_input.jsonl
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"question": "What are some generative ai products?", "company_name": "Microsoft", "website_filters": ["www.microsoft.com", "www.learn.microsoft.com"], "answers": ["hello"]}
11 changes: 10 additions & 1 deletion use_case_research_assistant/experiment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,22 @@ datasets:
mappings:
question: "${data.question}"
answer: "${data.answer}"

- name: research_assistant_new_training
source: data/sample_input.jsonl
description: "This dataset is for prompt experiments."
mappings:
question: "${data.question}"
company_name: "${data.company_name}"
website_filters: "${data.website_filters}"
answers: "${data.answers}"

evaluators:
- name: research_assistant_evaluation_flow
flow: flows/evaluation
datasets:
- name: research_assistant_test
reference: research_assistant_training
reference: research_assistant_new_training
source: eval_data.jsonl
description: "This dataset is for evaluating flows."
mappings:
Expand Down

0 comments on commit 999c6da

Please sign in to comment.