Skip to content

honeyhive._generated.models.PostSessionRequestFeedback

PostSessionRequestFeedback

Bases: BaseModel

PostSessionRequestFeedback model

Source code in src/honeyhive/_generated/models/PostSessionRequestFeedback.py
 8
 9
10
11
12
13
14
15
16
17
18
19
20
class PostSessionRequestFeedback(BaseModel):
    """
    PostSessionRequestFeedback model
    """

    model_config = {
        "populate_by_name": True,
        "validate_assignment": True,
        "extra": "allow",
        "protected_namespaces": (),
    }

    ground_truth: Optional[Any] = Field(validation_alias="ground_truth", default=None)

ground_truth class-attribute instance-attribute

ground_truth: Optional[Any] = Field(
    validation_alias="ground_truth", default=None
)