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
8 changes: 8 additions & 0 deletions generated_types.json
Original file line number Diff line number Diff line change
Expand Up @@ -8010,6 +8010,14 @@
"distance_threshold": {
"type": "number",
"description": "Maximum distance to nearest centroid. If exceeded, returns no_match."
},
"btql_filter": {
"type": "string",
"description": "Per-topic-map BTQL filter that was applied when this version was generated. Absent on versions generated before this was recorded."
},
"automation_btql_filter": {
"type": "string",
"description": "Automation-level BTQL filter that was applied when this version was generated. Absent on versions generated before this was recorded."
}
},
"required": [
Expand Down
8 changes: 8 additions & 0 deletions py/src/braintrust/_generated_types.py
Original file line number Diff line number Diff line change
Expand Up @@ -3428,6 +3428,14 @@ class TopicMapData(TypedDict):
"""
Maximum distance to nearest centroid. If exceeded, returns no_match.
"""
btql_filter: NotRequired[str | None]
"""
Per-topic-map BTQL filter that was applied when this version was generated. Absent on versions generated before this was recorded.
"""
automation_btql_filter: NotRequired[str | None]
"""
Automation-level BTQL filter that was applied when this version was generated. Absent on versions generated before this was recorded.
"""


class ViewData(TypedDict):
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 da3ed4d7e6b51d9c) -- do not modify"""
"""Auto-generated file (content hash 18e2255a8ff33bf3) -- do not modify"""

from ._generated_types import (
Acl,
Expand Down
Loading