Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -54,14 +54,14 @@
user?: string;
end_user?: string;
custom_llm_provider?: string;
metadata?: Record<string, any>;

Check warning on line 57 in ui/litellm-dashboard/src/components/view_logs/columns.tsx

View workflow job for this annotation

GitHub Actions / frontend-lint

Unexpected any. Specify a different type
cache_hit: string;
cache_key?: string;
request_tags?: Record<string, any>;

Check warning on line 60 in ui/litellm-dashboard/src/components/view_logs/columns.tsx

View workflow job for this annotation

GitHub Actions / frontend-lint

Unexpected any. Specify a different type
requester_ip_address?: string;
messages: string | any[] | Record<string, any>;

Check warning on line 62 in ui/litellm-dashboard/src/components/view_logs/columns.tsx

View workflow job for this annotation

GitHub Actions / frontend-lint

Unexpected any. Specify a different type

Check warning on line 62 in ui/litellm-dashboard/src/components/view_logs/columns.tsx

View workflow job for this annotation

GitHub Actions / frontend-lint

Unexpected any. Specify a different type
response: string | any[] | Record<string, any>;

Check warning on line 63 in ui/litellm-dashboard/src/components/view_logs/columns.tsx

View workflow job for this annotation

GitHub Actions / frontend-lint

Unexpected any. Specify a different type

Check warning on line 63 in ui/litellm-dashboard/src/components/view_logs/columns.tsx

View workflow job for this annotation

GitHub Actions / frontend-lint

Unexpected any. Specify a different type
proxy_server_request?: string | any[] | Record<string, any>;

Check warning on line 64 in ui/litellm-dashboard/src/components/view_logs/columns.tsx

View workflow job for this annotation

GitHub Actions / frontend-lint

Unexpected any. Specify a different type

Check warning on line 64 in ui/litellm-dashboard/src/components/view_logs/columns.tsx

View workflow job for this annotation

GitHub Actions / frontend-lint

Unexpected any. Specify a different type
session_id?: string;
status?: string;
completionStartTime?: string;
Expand Down Expand Up @@ -119,12 +119,12 @@
)
: "Time",
accessorKey: "startTime",
cell: (info: any) => <TimeCell utcTime={info.getValue()} />,

Check warning on line 122 in ui/litellm-dashboard/src/components/view_logs/columns.tsx

View workflow job for this annotation

GitHub Actions / frontend-lint

Unexpected any. Specify a different type
},
{
header: "Type",
id: "type",
cell: (info: any) => {

Check warning on line 127 in ui/litellm-dashboard/src/components/view_logs/columns.tsx

View workflow job for this annotation

GitHub Actions / frontend-lint

Unexpected any. Specify a different type
const row = info.row.original;
const sessionCount = row.session_total_count || 1;
const isMcp = MCP_CALL_TYPES.includes(row.call_type);
Expand Down Expand Up @@ -327,7 +327,7 @@
},
},
{
header: "Key Name",
header: "Key Alias",
accessorKey: "metadata.user_api_key_alias",
cell: (info: any) => (
<Tooltip title={String(info.getValue() || "-")}>
Expand Down
Loading