diff --git a/ui/litellm-dashboard/src/lib/http/schema.d.ts b/ui/litellm-dashboard/src/lib/http/schema.d.ts index aaa42e0f3c3..6aa44e1f76f 100644 --- a/ui/litellm-dashboard/src/lib/http/schema.d.ts +++ b/ui/litellm-dashboard/src/lib/http/schema.d.ts @@ -24614,6 +24614,11 @@ export interface components { description: string; /** Model */ model: string; + /** + * Rules + * @default [] + */ + rules: components["schemas"]["CapabilityRule"][]; }; /** * CapabilityRouterConfig @@ -24665,6 +24670,19 @@ export interface components { /** Valid */ valid: boolean; }; + /** + * CapabilityRule + * @description One operator-declared condition and the coverage it implies when it matches the task. + */ + CapabilityRule: { + /** + * Boundary + * @enum {string} + */ + boundary: "supported" | "uncertain" | "unsupported"; + /** Rule */ + rule: string; + }; /** ChatCompletionAnnotation */ ChatCompletionAnnotation: { /**