-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathdatapoint_response.py
More file actions
40 lines (31 loc) · 1.31 KB
/
datapoint_response.py
File metadata and controls
40 lines (31 loc) · 1.31 KB
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
33
34
35
36
37
38
39
40
# 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
from .chat_message import ChatMessage
from .datapoint_response_target_value import DatapointResponseTargetValue
class DatapointResponse(UncheckedBaseModel):
inputs: typing.Optional[typing.Dict[str, str]] = pydantic.Field(default=None)
"""
The inputs to the prompt template.
"""
messages: typing.Optional[typing.List[ChatMessage]] = pydantic.Field(default=None)
"""
List of chat messages to provide to the model.
"""
target: typing.Optional[typing.Dict[str, DatapointResponseTargetValue]] = pydantic.Field(default=None)
"""
Object with criteria necessary to evaluate generations with this Datapoint. This is passed in as an argument to Evaluators when used in an Evaluation.
"""
id: str = pydantic.Field()
"""
Unique identifier for the Datapoint. Starts with `dp_`.
"""
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