mirror of
https://github.com/BerriAI/litellm.git
synced 2026-09-15 23:31:29 +00:00
chore(openapi): pick up cache_hit_filter field after rebase
This commit is contained in:
parent
c5a8918d58
commit
1e1db8944c
1 changed files with 4 additions and 0 deletions
4
ui/litellm-dashboard/src/lib/http/schema.d.ts
generated
vendored
4
ui/litellm-dashboard/src/lib/http/schema.d.ts
generated
vendored
|
|
@ -55075,6 +55075,8 @@ export interface operations {
|
|||
page_size?: number;
|
||||
/** @description Filter logs by status (e.g., success, failure) */
|
||||
status_filter?: string | null;
|
||||
/** @description Filter logs by cache state: 'hit' or 'miss'. Miss includes legacy rows with a null/unknown cache state */
|
||||
cache_hit_filter?: string | null;
|
||||
/** @description Filter logs by model */
|
||||
model?: string | null;
|
||||
/** @description Filter logs by model ID (litellm model deployment id) */
|
||||
|
|
@ -55185,6 +55187,8 @@ export interface operations {
|
|||
page_size?: number;
|
||||
/** @description Filter logs by status (e.g., success, failure) */
|
||||
status_filter?: string | null;
|
||||
/** @description Filter logs by cache state: 'hit' or 'miss'. Miss includes legacy rows with a null/unknown cache state */
|
||||
cache_hit_filter?: string | null;
|
||||
/** @description Filter logs by model */
|
||||
model?: string | null;
|
||||
/** @description Filter logs by model ID (litellm model deployment id) */
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue