ai_workflows / workflows /utils /feedback.py
theRealNG's picture
endpoints(course_learn): Add support for expectation_revision & suggest_expectation
3d8743c
raw
history blame
189 Bytes
from pydantic import BaseModel
from typing import List, Optional
class Feedback(BaseModel):
metric_type: Optional[str]
metric_score: Optional[float]
feedback_on: Optional[str]