mirror of
https://github.com/BerriAI/litellm.git
synced 2026-09-07 08:26:10 +00:00
chore(ui): sync generated API types for capability rules
This commit is contained in:
parent
4a97051176
commit
4b774fea65
1 changed files with 18 additions and 0 deletions
18
ui/litellm-dashboard/src/lib/http/schema.d.ts
generated
vendored
18
ui/litellm-dashboard/src/lib/http/schema.d.ts
generated
vendored
|
|
@ -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: {
|
||||
/**
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue