Skip to content
Open
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
7 changes: 7 additions & 0 deletions generated_types.json
Original file line number Diff line number Diff line change
Expand Up @@ -6453,6 +6453,13 @@
],
"description": "If true, disable real-time queries for this project. This can improve query performance for high-volume logs."
},
"monitor_charts_use_metrics_start": {
"type": [
"boolean",
"null"
],
"description": "If true, use metrics.start rather than created for monitor chart time bucket dimensions."
},
"default_preprocessor": {
"$ref": "#/components/schemas/NullableSavedFunctionId"
}
Expand Down
4 changes: 4 additions & 0 deletions py/src/braintrust/_generated_types.py
Original file line number Diff line number Diff line change
Expand Up @@ -1916,6 +1916,10 @@ class ProjectSettings(TypedDict):
"""
If true, disable real-time queries for this project. This can improve query performance for high-volume logs.
"""
monitor_charts_use_metrics_start: NotRequired[bool | None]
"""
If true, use metrics.start rather than created for monitor chart time bucket dimensions.
"""
default_preprocessor: NotRequired[NullableSavedFunctionId | None]


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 8edae789624e11d2) -- do not modify"""
"""Auto-generated file (content hash 37813d3baba101c0) -- do not modify"""

from ._generated_types import (
Acl,
Expand Down
Loading