diff --git a/frontend/src/components/WorkspaceChat/ChatContainer/PromptInput/AgentMenu/index.jsx b/frontend/src/components/WorkspaceChat/ChatContainer/PromptInput/AgentMenu/index.jsx index ef73cb656382513829cc0eea4c404028c27b2588..8407c68dbc8f1ee407cfa2e3b630c3b7698b05d3 100644 --- a/frontend/src/components/WorkspaceChat/ChatContainer/PromptInput/AgentMenu/index.jsx +++ b/frontend/src/components/WorkspaceChat/ChatContainer/PromptInput/AgentMenu/index.jsx @@ -162,8 +162,8 @@ function FirstTimeAgentUser() { more. <br /> <br /> - Currently, agents only work with OpenAI and Anthropic as your - agent LLM. All providers will be supported in the future. + Currently, agents only work with OpenAI as your agent LLM. All + LLM providers will be supported in the future. </p> <p className="text-green-300/60 text-xs md:text-sm"> This feature is currently early access and fully custom agents diff --git a/frontend/src/pages/WorkspaceSettings/AgentConfig/AgentLLMSelection/index.jsx b/frontend/src/pages/WorkspaceSettings/AgentConfig/AgentLLMSelection/index.jsx index f1b9974709007ca0112fa198766cbaf0bd913553..af6ae7549573788f2a042ac521090ce55751e11f 100644 --- a/frontend/src/pages/WorkspaceSettings/AgentConfig/AgentLLMSelection/index.jsx +++ b/frontend/src/pages/WorkspaceSettings/AgentConfig/AgentLLMSelection/index.jsx @@ -5,7 +5,10 @@ import { AVAILABLE_LLM_PROVIDERS } from "@/pages/GeneralSettings/LLMPreference"; import { CaretUpDown, MagnifyingGlass, X } from "@phosphor-icons/react"; import AgentModelSelection from "../AgentModelSelection"; -const ENABLED_PROVIDERS = ["openai", "anthropic"]; +const ENABLED_PROVIDERS = [ + "openai", + // "anthropic" +]; const LLM_DEFAULT = { name: "Please make a selection",