hide anthropic agent support due to incompatibilty for now

This commit is contained in:
timothycarambat 2024-04-16 19:44:32 -07:00
parent 8ebe1a515b
commit a025dfd76e
2 changed files with 6 additions and 3 deletions

View File

@ -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

View File

@ -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",