diff --git a/ui/litellm-dashboard/src/components/playground/chat_ui/AdditionalModelSettings.tsx b/ui/litellm-dashboard/src/components/playground/chat_ui/AdditionalModelSettings.tsx index a5fadb813b6..6d5442fedc9 100644 --- a/ui/litellm-dashboard/src/components/playground/chat_ui/AdditionalModelSettings.tsx +++ b/ui/litellm-dashboard/src/components/playground/chat_ui/AdditionalModelSettings.tsx @@ -1,6 +1,6 @@ import { InfoCircleOutlined } from "@ant-design/icons"; import { Text } from "@tremor/react"; -import { Checkbox, InputNumber, Slider, Tooltip } from "antd"; +import { Checkbox, InputNumber, Popover, Slider, Tooltip, Typography } from "antd"; import React, { useEffect, useState } from "react"; interface AdditionalModelSettingsProps { @@ -69,17 +69,42 @@ const AdditionalModelSettings: React.FC = ({ {onMockTestFallbacksChange && ( - -
- onMockTestFallbacksChange(e.target.checked)} - > - Simulate failure to test fallbacks - - -
-
+
+ onMockTestFallbacksChange(e.target.checked)} + > + Simulate failure to test fallbacks + + + + Causes the first request to fail so the router tries fallbacks (if configured). Use + this to verify your fallback setup. + + + Behavior can differ when keys, teams, or router settings are configured.{" "} + + Learn more + + +
+ } + > + + + )}