Skip to content

Commit

Permalink
feat: Add QUESTION_ANSWERING and FACT_VERIFICATION enums to `Task…
Browse files Browse the repository at this point in the history
…Type` enum
  • Loading branch information
Fatih Aydın committed Sep 28, 2024
1 parent 057fb4c commit 5a20b97
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions src/Enums/TaskType.php
Original file line number Diff line number Diff line change
Expand Up @@ -40,4 +40,14 @@ enum TaskType: string
* Specifies that the embeddings will be used for clustering.
*/
case CLUSTERING = 'CLUSTERING';

/**
* Specifies that the given text will be used for question answering.
*/
case QUESTION_ANSWERING = 'QUESTION_ANSWERING';

/**
* Specifies that the given text will be used for fact verification.
*/
case FACT_VERIFICATION = 'FACT_VERIFICATION';
}

0 comments on commit 5a20b97

Please sign in to comment.