mirror of
https://github.com/Mintplex-Labs/anything-llm.git
synced 2025-03-31 09:56:25 +00:00
V1 of agent support via built-in `@agent` that can be invoked alongside normal workspace RAG chat.
7 lines
162 B
JavaScript
7 lines
162 B
JavaScript
const OpenAIProvider = require("./openai.js");
|
|
const AnthropicProvider = require("./anthropic.js");
|
|
|
|
module.exports = {
|
|
OpenAIProvider,
|
|
AnthropicProvider,
|
|
};
|