Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions generated_types.json
Original file line number Diff line number Diff line change
Expand Up @@ -7861,6 +7861,19 @@
],
"description": "Dataset rows",
"title": "dataset_rows"
},
{
"type": "object",
"properties": {
"experiment_name": {
"type": "string"
}
},
"required": [
"experiment_name"
],
"description": "Experiment whose inputs and outputs should be used as dataset inputs and expected values",
"title": "experiment_name"
}
],
"description": "The dataset to use"
Expand Down
6 changes: 5 additions & 1 deletion py/src/braintrust/_generated_types.py
Original file line number Diff line number Diff line change
Expand Up @@ -2285,6 +2285,10 @@ class RunEvalData2(TypedDict):
data: Sequence[Any]


class RunEvalData3(TypedDict):
experiment_name: str


class TaskTask(TypedDict):
function_id: str
"""
Expand Down Expand Up @@ -4480,7 +4484,7 @@ class RunEval(TypedDict):
"""
Unique identifier for the project to run the eval in
"""
data: RunEvalData | RunEvalData1 | RunEvalData2
data: RunEvalData | RunEvalData1 | RunEvalData2 | RunEvalData3
"""
The dataset to use
"""
Expand Down
2 changes: 1 addition & 1 deletion py/src/braintrust/generated_types.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
"""Auto-generated file (content hash 776b6c295e852681) -- do not modify"""
"""Auto-generated file (content hash 267ce67890c684fe) -- do not modify"""

from ._generated_types import (
Acl,
Expand Down