@@ -2354,11 +2354,6 @@ export type PdlContext17 =
23542354export type PdlId17 = string | null
23552355export type PdlIsLeaf17 = true
23562356export type Kind17 = "model"
2357- /**
2358- * Model name used by the backend.
2359- *
2360- */
2361- export type Model = LocalizedExpression | string
23622357/**
23632358 * Messages to send to the model.
23642359 *
@@ -2502,11 +2497,6 @@ export type PdlContext18 =
25022497export type PdlId18 = string | null
25032498export type PdlIsLeaf18 = true
25042499export type Kind18 = "model"
2505- /**
2506- * Name of the model following the LiteLLM convention.
2507- *
2508- */
2509- export type Model1 = LocalizedExpression | string
25102500/**
25112501 * Messages to send to the model.
25122502 *
@@ -2552,6 +2542,11 @@ export type PdlModelInput1 =
25522542 *
25532543 */
25542544export type Platform1 = "litellm"
2545+ /**
2546+ * Name of the model following the LiteLLM convention.
2547+ *
2548+ */
2549+ export type Model1 = LocalizedExpression | string
25552550/**
25562551 * Parameters to send to the model.
25572552 *
@@ -3113,7 +3108,6 @@ export interface LitellmModelBlock {
31133108 pdl__timing ?: PdlTiming | null
31143109 pdl__is_leaf ?: PdlIsLeaf18
31153110 kind ?: Kind18
3116- model : Model1
31173111 input ?: Input1
31183112 modelResponse ?: Modelresponse1
31193113 /**
@@ -3123,6 +3117,7 @@ export interface LitellmModelBlock {
31233117 pdl__usage ?: PdlUsage | null
31243118 pdl__model_input ?: PdlModelInput1
31253119 platform ?: Platform1
3120+ model : Model1
31263121 parameters ?: Parameters1
31273122}
31283123/**
@@ -3200,7 +3195,6 @@ export interface GraniteioModelBlock {
32003195 pdl__timing ?: PdlTiming | null
32013196 pdl__is_leaf ?: PdlIsLeaf17
32023197 kind ?: Kind17
3203- model : Model
32043198 input ?: Input
32053199 modelResponse ?: Modelresponse
32063200 /**
@@ -3210,8 +3204,7 @@ export interface GraniteioModelBlock {
32103204 pdl__usage ?: PdlUsage | null
32113205 pdl__model_input ?: PdlModelInput
32123206 platform ?: Platform
3213- backend : unknown
3214- processor ?: unknown
3207+ processor : unknown
32153208 parameters ?: Parameters
32163209}
32173210/**
0 commit comments