Label Initial Prompt

This commit is contained in:
AbdBarho
2023-01-07 17:24:43 +01:00
parent 4ecdc57621
commit 53814d77ab
9 changed files with 210 additions and 25 deletions
+13 -2
View File
@@ -1,9 +1,11 @@
export enum TaskCategory {
Create,
Evaluate,
Create = "Create",
Evaluate = "Evaluate",
Label = "Label",
}
export const TaskTypes = [
// create
{
label: "Create Initial Prompts",
desc: "Write initial prompts to help Open Assistant to try replying to diverse messages.",
@@ -31,6 +33,7 @@ export const TaskTypes = [
overview: "Given the following conversation, provide an adequate reply",
instruction: "Provide the assistant`s reply",
},
// evaluate
{
label: "Rank User Replies",
category: TaskCategory.Evaluate,
@@ -52,4 +55,12 @@ export const TaskTypes = [
pathname: "/evaluate/rank_initial_prompts",
type: "rank_initial_prompts",
},
// label
{
label: "Label Initial Prompt",
desc: "Provide labels for a prompt.",
category: TaskCategory.Label,
pathname: "/label/label_initial_prompt",
type: "label_initial_prompt",
},
];