We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5cd20d2 commit f1dd0f6Copy full SHA for f1dd0f6
ui/litellm-dashboard/src/components/team/team_info.tsx
@@ -52,7 +52,9 @@ interface TeamData {
52
max_parallel_requests: number | null;
53
budget_reset_at: string | null;
54
model_id: string | null;
55
- litellm_model_table: string | null;
+ litellm_model_table: {
56
+ model_aliases: Record<string, string>;
57
+ } | null;
58
created_at: string;
59
};
60
keys: any[];
@@ -640,7 +642,6 @@ const TeamInfoView: React.FC<TeamInfoProps> = ({
640
642
)}
641
643
</Card>
644
- {/* Add Model Aliases Card */}
645
<ModelAliasesCard
646
teamId={teamId}
647
accessToken={accessToken}
0 commit comments