mirror of
https://github.com/Mintplex-Labs/anything-llm.git
synced 2024-11-11 09:10:13 +01:00
8 lines
162 B
JavaScript
8 lines
162 B
JavaScript
|
const OpenAIProvider = require("./openai.js");
|
||
|
const AnthropicProvider = require("./anthropic.js");
|
||
|
|
||
|
module.exports = {
|
||
|
OpenAIProvider,
|
||
|
AnthropicProvider,
|
||
|
};
|