File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -3303,6 +3303,7 @@ components:
33033303 - product_analytics
33043304 - on_call_events
33053305 - errors
3306+ - llm_observability
33063307 example: "logs"
33073308 type: string
33083309 x-enum-varnames:
@@ -3320,6 +3321,7 @@ components:
33203321 - PRODUCT_ANALYTICS
33213322 - ON_CALL_EVENTS
33223323 - ERRORS
3324+ - LLM_OBSERVABILITY
33233325 FormulaAndFunctionMetricAggregation:
33243326 description: The aggregation methods available for metrics queries.
33253327 enum:
Original file line number Diff line number Diff line change @@ -18,6 +18,7 @@ export type FormulaAndFunctionEventsDataSource =
1818 | typeof PRODUCT_ANALYTICS
1919 | typeof ON_CALL_EVENTS
2020 | typeof ERRORS
21+ | typeof LLM_OBSERVABILITY
2122 | UnparsedObject ;
2223export const LOGS = "logs" ;
2324export const SPANS = "spans" ;
@@ -33,3 +34,4 @@ export const INCIDENT_ANALYTICS = "incident_analytics";
3334export const PRODUCT_ANALYTICS = "product_analytics" ;
3435export const ON_CALL_EVENTS = "on_call_events" ;
3536export const ERRORS = "errors" ;
37+ export const LLM_OBSERVABILITY = "llm_observability" ;
Original file line number Diff line number Diff line change @@ -375,6 +375,7 @@ export const TypingInfo: ModelTypingInfo = {
375375 "product_analytics" ,
376376 "on_call_events" ,
377377 "errors" ,
378+ "llm_observability" ,
378379 ] ,
379380 FormulaAndFunctionMetricAggregation : [
380381 "avg" ,
Original file line number Diff line number Diff line change @@ -18,6 +18,7 @@ export type FormulaAndFunctionEventsDataSource =
1818 | typeof PRODUCT_ANALYTICS
1919 | typeof ON_CALL_EVENTS
2020 | typeof ERRORS
21+ | typeof LLM_OBSERVABILITY
2122 | UnparsedObject ;
2223export const LOGS = "logs" ;
2324export const SPANS = "spans" ;
@@ -33,3 +34,4 @@ export const INCIDENT_ANALYTICS = "incident_analytics";
3334export const PRODUCT_ANALYTICS = "product_analytics" ;
3435export const ON_CALL_EVENTS = "on_call_events" ;
3536export const ERRORS = "errors" ;
37+ export const LLM_OBSERVABILITY = "llm_observability" ;
Original file line number Diff line number Diff line change @@ -224,6 +224,7 @@ export const TypingInfo: ModelTypingInfo = {
224224 "product_analytics" ,
225225 "on_call_events" ,
226226 "errors" ,
227+ "llm_observability" ,
227228 ] ,
228229 FormulaAndFunctionMetricAggregation : [
229230 "avg" ,
You can’t perform that action at this time.
0 commit comments