mirror of
https://github.com/danny-avila/LibreChat.git
synced 2025-12-17 08:50:15 +01:00
* chore: bump cohere-ai, fix firebase vulnerabilities by going down versions * feat: cohere rates and context windows * feat(createCoherePayload): transform openai payload for cohere compatibility * feat: cohere backend support * refactor(UnknownIcon): optimize icon render and add cohere * docs: add cohere to Compatible AI Endpoints * Update ai_endpoints.md
9 lines
221 B
JavaScript
9 lines
221 B
JavaScript
const createLLM = require('./createLLM');
|
|
const RunManager = require('./RunManager');
|
|
const createCoherePayload = require('./createCoherePayload');
|
|
|
|
module.exports = {
|
|
createLLM,
|
|
RunManager,
|
|
createCoherePayload,
|
|
};
|