We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent faba6eb commit 4a846c1Copy full SHA for 4a846c1
deepeval/event/api.py
@@ -44,7 +44,6 @@ class Config:
44
use_enum_values = True
45
46
47
-
48
class APIFeedback(BaseModel):
49
provider: str
50
event_id: str = Field(alias="eventId")
deepeval/event/feedback.py
@@ -21,10 +21,10 @@ def send_feedback(
21
raise ValueError("'rating' must be between 1 and 5, inclusive.")
22
23
api_event = APIFeedback(
24
- event_id=event_id,
+ eventId=event_id,
25
provider=provider,
26
rating=rating,
27
- expected_response=expected_response,
+ expectedResponse=expected_response,
28
explanation=explanation,
29
)
30
api = Api()
0 commit comments