Skip to content

Commit

Permalink
minor refactor (backend): set input_value of HumanEvaluationScenario(…
Browse files Browse the repository at this point in the history
…Input & Output) to be of type 'Any'
  • Loading branch information
aybruhm committed Nov 27, 2024
1 parent 2de3761 commit 7163376
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions agenta-backend/agenta_backend/models/shared_models.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,12 +54,12 @@ class EvaluationScenarioOutput(BaseModel):

class HumanEvaluationScenarioInput(BaseModel):
input_name: str
input_value: str
input_value: Any


class HumanEvaluationScenarioOutput(BaseModel):
variant_id: str
variant_output: str
variant_output: Any


class TemplateType(enum.Enum):
Expand Down

0 comments on commit 7163376

Please sign in to comment.