forked from phoenix/litellm-mirror
fix(time_to_first_token.tsx): require enterprise license for usage
This commit is contained in:
parent
3400596dd2
commit
8d1067c81c
6 changed files with 69 additions and 38 deletions
|
@ -91,6 +91,7 @@ interface ModelDashboardProps {
|
|||
userID: string | null;
|
||||
modelData: any;
|
||||
setModelData: any;
|
||||
premiumUser: boolean;
|
||||
}
|
||||
|
||||
interface EditModelModalProps {
|
||||
|
@ -233,6 +234,7 @@ const ModelDashboard: React.FC<ModelDashboardProps> = ({
|
|||
userID,
|
||||
modelData = { data: [] },
|
||||
setModelData,
|
||||
premiumUser,
|
||||
}) => {
|
||||
const [pendingRequests, setPendingRequests] = useState<any[]>([]);
|
||||
const [form] = Form.useForm();
|
||||
|
@ -1609,6 +1611,7 @@ const ModelDashboard: React.FC<ModelDashboardProps> = ({
|
|||
streamingModelMetricsCategories
|
||||
}
|
||||
customTooltip={customTooltip}
|
||||
premiumUser={premiumUser}
|
||||
/>
|
||||
</TabPanel>
|
||||
</TabPanels>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue