You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: schema/eval.schema.json
+3-2Lines changed: 3 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -26,6 +26,7 @@
26
26
"description": "Timestamp for when this record was created"
27
27
},
28
28
"source_data": {
29
+
"description": "Source of dataset used for evaluation. There are two options supported: HuggingFace dataset or url for other data source.",
29
30
"oneOf": [
30
31
{
31
32
"type": "array",
@@ -36,7 +37,7 @@
36
37
},
37
38
{
38
39
"type": "object",
39
-
"description": "Details about dataset used for evaluation",
40
+
"description": "Details about HuggingFace dataset used for evaluation",
40
41
"required": [
41
42
"dataset_name"
42
43
],
@@ -131,7 +132,7 @@
131
132
"properties": {
132
133
"name": {
133
134
"type": "string",
134
-
"description": "Model name in HuggingFace format (e.g. meta-llama/Llama-3.1-8B-Instruct)"
135
+
"description": "Model name in HuggingFace format (e.g. meta-llama/Llama-3.1-8B-Instruct for models available on HuggingFace or openai/azure/gpt-4o-mini-2024-07-18 for closed API models)"
Copy file name to clipboardExpand all lines: schema/eval_types.py
+6-3Lines changed: 6 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
# generated by datamodel-codegen:
2
2
# filename: eval.schema.json
3
-
# timestamp: 2025-10-13T22:57:16+00:00
3
+
# timestamp: 2025-10-14T21:00:44+00:00
4
4
5
5
from __future__ importannotations
6
6
@@ -62,7 +62,7 @@ class SourceMetadata(BaseModel):
62
62
classModelInfo(BaseModel):
63
63
name: str=Field(
64
64
...,
65
-
description='Model name in HuggingFace format (e.g. meta-llama/Llama-3.1-8B-Instruct)',
65
+
description='Model name in HuggingFace format (e.g. meta-llama/Llama-3.1-8B-Instruct for models available on HuggingFace or openai/azure/gpt-4o-mini-2024-07-18 for closed API models)',
66
66
)
67
67
developer: Optional[str] =Field(
68
68
None, description="Name of organization that provides the model (e.g. 'OpenAI')"
@@ -156,7 +156,10 @@ class EvaluationLog(BaseModel):
156
156
retrieved_timestamp: str=Field(
157
157
..., description='Timestamp for when this record was created'
158
158
)
159
-
source_data: Union[List[str], SourceData]
159
+
source_data: Union[List[str], SourceData] =Field(
160
+
...,
161
+
description='Source of dataset used for evaluation. There are two options supported: HuggingFace dataset or url for other data source.',
0 commit comments