Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
56 commits
Select commit Hold shift + click to select a range
6b8ef0d
bump
ankrgyl Dec 25, 2025
3575fe8
add span types
ankrgyl Dec 26, 2025
9c5a8c7
add span type
ankrgyl Dec 29, 2025
3e3ec13
remove invoke context
ankrgyl Dec 29, 2025
f7037ba
Merge branch 'main' into facet-typespecs
ankrgyl Dec 30, 2025
3023583
Merge branch 'main' into facet-typespecs
ankrgyl Dec 31, 2025
2168c0b
bump types
ankrgyl Dec 31, 2025
846bc70
improve
ankrgyl Dec 31, 2025
b214ca5
Merge branch 'main' into facet-typespecs
ankrgyl Dec 31, 2025
e53688d
fix
ankrgyl Dec 31, 2025
323446c
bump
ankrgyl Jan 1, 2026
d0bfb2e
bump
ankrgyl Jan 1, 2026
1fc5c35
tweak
ankrgyl Jan 1, 2026
0a94c28
remove nullable function type thing
ankrgyl Jan 1, 2026
6128583
fix
ankrgyl Jan 2, 2026
49710c1
add_triggered_functions -> trigger_functions
ankrgyl Jan 2, 2026
6d583d0
Merge branch 'main' into facet-typespecs
ankrgyl Jan 2, 2026
2de65ff
update
ankrgyl Jan 2, 2026
e3e79fb
Merge branch 'main' into facet-typespecs
ankrgyl Jan 3, 2026
3781346
add tag merging logic
ankrgyl Jan 6, 2026
f9085e0
snapshot tests
ankrgyl Jan 6, 2026
f527d34
clean up
ankrgyl Jan 6, 2026
6844346
Merge branch 'facet-typespecs' into improve-tags-facets
ankrgyl Jan 6, 2026
2ce8692
add classifier type
ankrgyl Jan 6, 2026
0e5d4cb
bump types
ankrgyl Jan 6, 2026
94b9120
add classifier functions
ankrgyl Jan 6, 2026
00864c9
remove array delete
ankrgyl Jan 6, 2026
9c98ed0
Merge branch 'main' into facet-typespecs
ankrgyl Jan 6, 2026
a65d128
Merge branch 'main' into improve-tags
ankrgyl Jan 6, 2026
79e6554
Merge branch 'main' into improve-tags
ankrgyl Jan 7, 2026
af4af41
Merge branch 'main' into facet-typespecs
ankrgyl Jan 7, 2026
bfa1383
Merge branch 'improve-tags' into improve-tags-facets
ankrgyl Jan 7, 2026
e70535d
Merge branch 'main' into facet-typespecs
ankrgyl Jan 7, 2026
ed6d3fd
bump
ankrgyl Jan 7, 2026
6985457
bump
ankrgyl Jan 7, 2026
df239e6
Merge branch 'main' into facet-typespecs
ankrgyl Jan 7, 2026
1167d42
Merge branch 'main' into facet-typespecs
ankrgyl Jan 8, 2026
07d79a3
Merge branch 'main' into improve-tags
ankrgyl Jan 8, 2026
a121c02
Merge branch 'improve-tags' into improve-tags-facets
ankrgyl Jan 8, 2026
95aae05
Merge branch 'facet-typespecs' into improve-tags-facets
ankrgyl Jan 8, 2026
56375a6
otel: Add an optional custom header parser (#1246)
clutchski Jan 8, 2026
65e1d2f
rename agents to workflows (#1219)
edenh Jan 8, 2026
606a1e2
Merge branch 'main' into facet-typespecs
ankrgyl Jan 9, 2026
6361f79
Merge branch 'facet-typespecs' into improve-tags-facets
ankrgyl Jan 9, 2026
f8116da
regenerate
ankrgyl Jan 9, 2026
4d9b60d
Merge branch 'main' into facet-typespecs
ankrgyl Jan 10, 2026
8d191b1
allow pagination key override
ankrgyl Jan 10, 2026
44b73d4
fix compat test
ankrgyl Jan 10, 2026
a56dad5
Merge branch 'main' into facet-typespecs
ankrgyl Jan 10, 2026
faf6454
Merge branch 'facet-typespecs' into improve-tags-facets
ankrgyl Jan 10, 2026
2f80c66
Merge branch 'main' into improve-tags-facets
ankrgyl Jan 15, 2026
0929f8f
Merge branch 'main' into improve-tags-facets
ankrgyl Jan 16, 2026
74f909c
Merge branch 'main' into improve-tags-facets
ankrgyl Jan 16, 2026
b680084
Merge branch 'main' into improve-tags-facets
ankrgyl Jan 17, 2026
a0abaab
fix typespecs
ankrgyl Jan 17, 2026
842aab4
"no match"
edenh Jan 19, 2026
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
208 changes: 199 additions & 9 deletions generated_types.json
Original file line number Diff line number Diff line change
Expand Up @@ -558,6 +558,26 @@
"function_ids",
"triggered_xact_id"
]
},
{
"type": "object",
"properties": {
"kind": {
"type": "string",
"enum": [
"mark_attempt_failed"
]
},
"function_ids": {
"type": "array",
"items": {},
"minItems": 1
}
},
"required": [
"kind",
"function_ids"
]
}
]
},
Expand Down Expand Up @@ -1853,12 +1873,17 @@
],
"additionalProperties": {},
"description": "User-controlled metadata about the dataset"
},
"url_slug": {
"type": "string",
"description": "URL slug for the dataset. used to construct dataset URLs"
}
},
"required": [
"id",
"project_id",
"name"
"name",
"url_slug"
]
},
"DatasetEvent": {
Expand Down Expand Up @@ -2046,6 +2071,150 @@
"name"
]
},
"EvalStatusPage": {
"type": "object",
"properties": {
"id": {
"type": "string",
"format": "uuid",
"description": "Unique identifier for the eval status page"
},
"project_id": {
"type": "string",
"format": "uuid",
"description": "Unique identifier for the project that the eval status page belongs under"
},
"user_id": {
"type": [
"string",
"null"
],
"format": "uuid",
"description": "Identifies the user who created the eval status page"
},
"created": {
"type": [
"string",
"null"
],
"format": "date-time",
"description": "Date of eval status page creation"
},
"deleted_at": {
"type": [
"string",
"null"
],
"format": "date-time",
"description": "Date of eval status page deletion, or null if the eval status page is still active"
},
"name": {
"type": "string",
"description": "Name of the eval status page"
},
"description": {
"type": [
"string",
"null"
],
"description": "Textual description of the eval status page"
},
"logo_url": {
"type": [
"string",
"null"
],
"description": "URL of the logo to display on the page"
},
"theme": {
"$ref": "#/components/schemas/EvalStatusPageTheme"
},
"config": {
"$ref": "#/components/schemas/EvalStatusPageConfig"
}
},
"required": [
"id",
"project_id",
"name",
"theme",
"config"
],
"description": "A public eval status page that displays aggregate experiment results"
},
"EvalStatusPageConfig": {
"type": "object",
"properties": {
"score_columns": {
"type": [
"array",
"null"
],
"items": {
"type": "string"
},
"description": "The score columns to display on the page"
},
"metric_columns": {
"type": [
"array",
"null"
],
"items": {
"type": "string"
},
"description": "The metric columns to display on the page"
},
"grouping_field": {
"type": [
"string",
"null"
],
"description": "The metadata field to use for grouping experiments (model)"
},
"filter": {
"type": [
"string",
"null"
],
"description": "BTQL filter to apply to experiment data"
},
"sort_by": {
"type": [
"string",
"null"
],
"description": "Field to sort results by (format: 'score:<name>' or 'metric:<name>')"
},
"sort_order": {
"type": [
"string",
"null"
],
"enum": [
"asc",
"desc"
],
"description": "Sort order (ascending or descending)"
},
"api_key": {
"type": [
"string",
"null"
],
"description": "The API key used for fetching experiment data"
}
},
"description": "Configuration for what data to display"
},
"EvalStatusPageTheme": {
"type": "string",
"enum": [
"light",
"dark"
],
"description": "The theme for the page"
},
"Experiment": {
"type": "object",
"properties": {
Expand Down Expand Up @@ -3038,16 +3207,20 @@
"tool",
"scorer",
"task",
"workflow",
"custom_view",
"preprocessor",
"facet"
"facet",
"classifier"
]
},
"FunctionOutputType": {
"type": "string",
"enum": [
"completion",
"score",
"facet",
"tag",
"any"
]
},
Expand All @@ -3060,7 +3233,9 @@
"tool",
"custom_view",
"preprocessor",
"facet"
"facet",
"classifier",
"tag"
],
"default": "scorer",
"description": "The type of global function. Defaults to 'scorer'."
Expand All @@ -3077,7 +3252,9 @@
"tool",
"custom_view",
"preprocessor",
"facet"
"facet",
"classifier",
"tag"
]
},
"GitMetadataSettings": {
Expand Down Expand Up @@ -5904,13 +6081,24 @@
"type": "number",
"minimum": 0,
"maximum": 1
}
},
"description": "Map of choices to scores (0-1). Used by scorers."
},
"choice": {
"type": "array",
"items": {
"type": "string"
},
"description": "List of valid choices without score mapping. Used by classifiers that deposit output to tags."
},
"allow_no_match": {
"type": "boolean",
"description": "If true, adds a 'No match' option. When selected, no tag is deposited."
}
},
"required": [
"type",
"use_cot",
"choice_scores"
"use_cot"
]
},
"PromptSessionEvent": {
Expand Down Expand Up @@ -6739,7 +6927,8 @@
"tool",
"automation",
"facet",
"preprocessor"
"preprocessor",
"classifier"
],
"description": "Type of the span, for display purposes only"
},
Expand Down Expand Up @@ -7063,6 +7252,7 @@
"prompts",
"tools",
"scorers",
"classifiers",
"logs",
"monitor",
"for_review"
Expand Down Expand Up @@ -7503,7 +7693,7 @@
"license": {
"name": "Apache 2.0"
},
"x-internal-git-sha": "87ac73f4945a47eff2d4e42775ba4dbc58854c73"
"x-internal-git-sha": "c99d1e6fbf062688da7f1f22394c72ea480fe81a"
},
"paths": {},
"webhooks": {}
Expand Down
Loading
Loading