From a36d7dcb81708e068709e40ac078fb7139266aed Mon Sep 17 00:00:00 2001 From: Alejandro Tapia Date: Mon, 16 Feb 2026 12:05:56 -0800 Subject: [PATCH] Tooltip removed and replaced with Popover (triggered by icon only), including url to router settings --- .../chat_ui/AdditionalModelSettings.tsx | 49 ++++++++++++++----- 1 file changed, 37 insertions(+), 12 deletions(-) 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 + + +
+ } + > + + + )}