mirror of
https://github.com/Mintplex-Labs/anything-llm.git
synced 2024-11-13 02:00:10 +01:00
hide anthropic agent support due to incompatibilty for now
This commit is contained in:
parent
8ebe1a515b
commit
a025dfd76e
@ -162,8 +162,8 @@ function FirstTimeAgentUser() {
|
|||||||
more.
|
more.
|
||||||
<br />
|
<br />
|
||||||
<br />
|
<br />
|
||||||
Currently, agents only work with OpenAI and Anthropic as your
|
Currently, agents only work with OpenAI as your agent LLM. All
|
||||||
agent LLM. All providers will be supported in the future.
|
LLM providers will be supported in the future.
|
||||||
</p>
|
</p>
|
||||||
<p className="text-green-300/60 text-xs md:text-sm">
|
<p className="text-green-300/60 text-xs md:text-sm">
|
||||||
This feature is currently early access and fully custom agents
|
This feature is currently early access and fully custom agents
|
||||||
|
@ -5,7 +5,10 @@ import { AVAILABLE_LLM_PROVIDERS } from "@/pages/GeneralSettings/LLMPreference";
|
|||||||
import { CaretUpDown, MagnifyingGlass, X } from "@phosphor-icons/react";
|
import { CaretUpDown, MagnifyingGlass, X } from "@phosphor-icons/react";
|
||||||
import AgentModelSelection from "../AgentModelSelection";
|
import AgentModelSelection from "../AgentModelSelection";
|
||||||
|
|
||||||
const ENABLED_PROVIDERS = ["openai", "anthropic"];
|
const ENABLED_PROVIDERS = [
|
||||||
|
"openai",
|
||||||
|
// "anthropic"
|
||||||
|
];
|
||||||
|
|
||||||
const LLM_DEFAULT = {
|
const LLM_DEFAULT = {
|
||||||
name: "Please make a selection",
|
name: "Please make a selection",
|
||||||
|
Loading…
Reference in New Issue
Block a user