chore(ui): sync generated API types for capability rules

This commit is contained in:
Tin Chi Lo 2026-09-01 20:50:13 -07:00
parent 4a97051176
commit 4b774fea65

View file

@ -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: {
/**