Skip to content

Commit

Permalink
fix: ommited rebase changes
Browse files Browse the repository at this point in the history
  • Loading branch information
NiklasKoehneckeAA committed May 31, 2024
1 parent 61fee6f commit bf87edc
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions tests/evaluation/evaluation/test_argilla_evaluator.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,15 @@ class StubArgillaClient(ArgillaClient):
_datasets: dict[str, list[RecordData]] = {}
_score = 3.0

def create_dataset(
self,
workspace_id: str,
dataset_name: str,
fields: Sequence[Field],
questions: Sequence[Question],
) -> str:
return self.ensure_dataset_exists(workspace_id, dataset_name, fields, questions)

def ensure_dataset_exists(
self,
workspace_id: str,
Expand Down

0 comments on commit bf87edc

Please sign in to comment.