forked from humanloop/humanloop-python
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathevaluator_version_id.py
More file actions
32 lines (24 loc) · 967 Bytes
/
evaluator_version_id.py
File metadata and controls
32 lines (24 loc) · 967 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
# This file was auto-generated by Fern from our API Definition.
import typing
import pydantic
from ..core.pydantic_utilities import IS_PYDANTIC_V2
from ..core.unchecked_base_model import UncheckedBaseModel
class EvaluatorVersionId(UncheckedBaseModel):
"""
Base model for specifying an Evaluator for an Evaluation.
"""
version_id: str = pydantic.Field()
"""
Unique identifier for the Version.
"""
orchestrated: typing.Optional[bool] = pydantic.Field(default=None)
"""
Whether the Evaluator is orchestrated by Humanloop. Default is `True`. If `False`, a log for the Evaluator should be submitted by the user via the API.
"""
if IS_PYDANTIC_V2:
model_config: typing.ClassVar[pydantic.ConfigDict] = pydantic.ConfigDict(extra="allow", frozen=True) # type: ignore # Pydantic v2
else:
class Config:
frozen = True
smart_union = True
extra = pydantic.Extra.allow