+
-
-
-
-
-
-
-
-
-
-
- e.target.blur()}
- defaultValue={settings?.GenericOpenAiTokenLimit}
- required={true}
- autoComplete="off"
- />
-
-
);
diff --git a/frontend/src/components/SettingsButton/index.jsx b/frontend/src/components/SettingsButton/index.jsx
index ac2d22cd..19a4a17a 100644
--- a/frontend/src/components/SettingsButton/index.jsx
+++ b/frontend/src/components/SettingsButton/index.jsx
@@ -3,6 +3,7 @@ import paths from "@/utils/paths";
import { ArrowUUpLeft, Wrench } from "@phosphor-icons/react";
import { Link } from "react-router-dom";
import { useMatch } from "react-router-dom";
+import { ToolTipWrapper } from "../Footer";
export default function SettingsButton() {
const isInSettings = !!useMatch("/settings/*");
@@ -12,22 +13,32 @@ export default function SettingsButton() {
if (isInSettings)
return (
-
-
-
+
+
+
+
+
);
return (
-
-
-
+
+
+
+
+
);
}
diff --git a/frontend/src/components/SettingsSidebar/index.jsx b/frontend/src/components/SettingsSidebar/index.jsx
index 6b8f79e5..2d59d0ff 100644
--- a/frontend/src/components/SettingsSidebar/index.jsx
+++ b/frontend/src/components/SettingsSidebar/index.jsx
@@ -329,7 +329,7 @@ const SidebarOptions = ({ user = null }) => (
}
user={user}
flex={true}
@@ -338,7 +338,7 @@ const SidebarOptions = ({ user = null }) => (
<>
}
user={user}
flex={true}
diff --git a/frontend/src/components/WorkspaceChat/ChatContainer/PromptInput/index.jsx b/frontend/src/components/WorkspaceChat/ChatContainer/PromptInput/index.jsx
index b67f5492..fc46fbe9 100644
--- a/frontend/src/components/WorkspaceChat/ChatContainer/PromptInput/index.jsx
+++ b/frontend/src/components/WorkspaceChat/ChatContainer/PromptInput/index.jsx
@@ -12,6 +12,7 @@ import AvailableAgentsButton, {
} from "./AgentMenu";
import TextSizeButton from "./TextSizeMenu";
import SpeechToText from "./SpeechToText";
+import { Tooltip } from "react-tooltip";
export const PROMPT_INPUT_EVENT = "set_prompt_input";
export default function PromptInput({
@@ -134,14 +135,25 @@ export default function PromptInput({
{buttonDisabled ? (
) : (
-
+ <>
+
+
+ >
)}