diff --git a/ui/litellm-dashboard/src/components/general_settings.tsx b/ui/litellm-dashboard/src/components/general_settings.tsx index 6ea3fcc8a..e55bda48e 100644 --- a/ui/litellm-dashboard/src/components/general_settings.tsx +++ b/ui/litellm-dashboard/src/components/general_settings.tsx @@ -37,6 +37,16 @@ const GeneralSettings: React.FC = ({ const [form] = Form.useForm(); const [selectedCallback, setSelectedCallback] = useState(null); + let paramExplanation: { [key: string]: string } = { + "routing_strategy_args": "(dict) Arguments to pass to the routing strategy", + "routing_strategy": "(string) Routing strategy to use", + "allowed_fails": "(int) Number of times a deployment can fail before being added to cooldown", + "cooldown_time": "(int) time in seconds to cooldown a deployment after failure", + "num_retries": "(int) Number of retries for failed requests. Defaults to 0.", + "timeout": "(float) Timeout for requests. Defaults to None.", + "retry_after": "(int) Minimum time to wait before retrying a failed request", + } + useEffect(() => { if (!accessToken || !userRole || !userID) { return; @@ -108,6 +118,7 @@ const GeneralSettings: React.FC = ({ {param} +

{paramExplanation[param]}