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