mirror of
https://github.com/BerriAI/litellm.git
synced 2026-09-13 23:11:40 +00:00
fix(ui): clarify blank TPM/RPM hint on budget modals (#40697)
Co-authored-by: jesus <jesus@berri.ai> Co-authored-by: Devin AI <158243242+devin-ai-integration[bot]@users.noreply.github.com>
This commit is contained in:
parent
27f8d2a9ba
commit
49f94cf832
2 changed files with 4 additions and 4 deletions
|
|
@ -82,7 +82,7 @@ const BudgetModal: React.FC<BudgetModalProps> = ({ isModalVisible, setIsModalVis
|
|||
control={form.control}
|
||||
name="tpm_limit"
|
||||
label="Max Tokens per minute"
|
||||
description="Default is model limit."
|
||||
description="Leave blank for no LiteLLM limit. Provider rate limits still apply."
|
||||
>
|
||||
{({ ref, value, onChange, ...field }) => (
|
||||
<Input
|
||||
|
|
@ -99,7 +99,7 @@ const BudgetModal: React.FC<BudgetModalProps> = ({ isModalVisible, setIsModalVis
|
|||
control={form.control}
|
||||
name="rpm_limit"
|
||||
label="Max Requests per minute"
|
||||
description="Default is model limit."
|
||||
description="Leave blank for no LiteLLM limit. Provider rate limits still apply."
|
||||
>
|
||||
{({ ref, value, onChange, ...field }) => (
|
||||
<Input
|
||||
|
|
|
|||
|
|
@ -88,7 +88,7 @@ const EditBudgetModal: React.FC<EditBudgetModalProps> = ({ isModalVisible, setIs
|
|||
control={form.control}
|
||||
name="tpm_limit"
|
||||
label="Max Tokens per minute"
|
||||
description="Default is model limit."
|
||||
description="Leave blank for no LiteLLM limit. Provider rate limits still apply."
|
||||
>
|
||||
{({ ref, value, onChange, ...field }) => (
|
||||
<Input
|
||||
|
|
@ -105,7 +105,7 @@ const EditBudgetModal: React.FC<EditBudgetModalProps> = ({ isModalVisible, setIs
|
|||
control={form.control}
|
||||
name="rpm_limit"
|
||||
label="Max Requests per minute"
|
||||
description="Default is model limit."
|
||||
description="Leave blank for no LiteLLM limit. Provider rate limits still apply."
|
||||
>
|
||||
{({ ref, value, onChange, ...field }) => (
|
||||
<Input
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue