diff --git a/frontend/src/components/SettingsSidebar/index.jsx b/frontend/src/components/SettingsSidebar/index.jsx
index 54cf9b4a1..97b088eca 100644
--- a/frontend/src/components/SettingsSidebar/index.jsx
+++ b/frontend/src/components/SettingsSidebar/index.jsx
@@ -21,7 +21,6 @@ import { useTranslation } from "react-i18next";
import showToast from "@/utils/toast";
import System from "@/models/system";
import Option from "./MenuOption";
-import { FineTuningAlert } from "@/pages/FineTuning/Banner";
export default function SettingsSidebar() {
const { t } = useTranslation();
@@ -178,7 +177,6 @@ export default function SettingsSidebar() {
-
>
);
}
diff --git a/frontend/src/components/WorkspaceChat/ChatContainer/PromptInput/AgentMenu/index.jsx b/frontend/src/components/WorkspaceChat/ChatContainer/PromptInput/AgentMenu/index.jsx
index bc98b45b4..e0121e1d5 100644
--- a/frontend/src/components/WorkspaceChat/ChatContainer/PromptInput/AgentMenu/index.jsx
+++ b/frontend/src/components/WorkspaceChat/ChatContainer/PromptInput/AgentMenu/index.jsx
@@ -1,8 +1,6 @@
import { useEffect, useRef, useState } from "react";
import { Tooltip } from "react-tooltip";
-import { At, Flask, X } from "@phosphor-icons/react";
-import ModalWrapper from "@/components/ModalWrapper";
-import { useModal } from "@/hooks/useModal";
+import { At } from "@phosphor-icons/react";
import { useIsAgentSessionActive } from "@/utils/chat/agent";
export default function AvailableAgentsButton({ showing, setShowAgents }) {
@@ -107,7 +105,6 @@ export function AvailableAgents({
- {showing && }
>
);
}
@@ -116,71 +113,3 @@ export function useAvailableAgents() {
const [showAgents, setShowAgents] = useState(false);
return { showAgents, setShowAgents };
}
-
-const SEEN_FT_AGENT_MODAL = "anythingllm_seen_first_time_agent_modal";
-function FirstTimeAgentUser() {
- const { isOpen, openModal, closeModal } = useModal();
- useEffect(() => {
- function firstTimeShow() {
- if (!window) return;
- if (!window.localStorage.getItem(SEEN_FT_AGENT_MODAL)) openModal();
- }
- firstTimeShow();
- }, []);
-
- const dismiss = () => {
- closeModal();
- window.localStorage.setItem(SEEN_FT_AGENT_MODAL, 1);
- };
-
- return (
-
-
-
-
-
-
- You just discovered Agents!
-
-
-
-
-
-
- Agents are your LLM, but with special abilities that{" "}
- do something beyond chatting with your documents.
-
-
- Now you can use agents for real-time web search and scraping,
- saving documents to your browser, summarizing documents, and
- more.
-
-
- This feature is currently early access and fully custom agents
- with custom integrations & code execution will be in a future
- update.
-