mirror of
https://github.com/danny-avila/LibreChat.git
synced 2025-12-17 08:50:15 +01:00
* chore: add eslint ignore unused var pattern * feat: add extractBaseURL helper for valid OpenAI reverse proxies, with tests * feat(OpenAIClient): add new chatCompletion using official OpenAI node SDK * fix(ci): revert change to FORCE_PROMPT condition
8 lines
198 B
JavaScript
8 lines
198 B
JavaScript
const { validateTools, loadTools } = require('./handleTools');
|
|
const handleOpenAIErrors = require('./handleOpenAIErrors');
|
|
|
|
module.exports = {
|
|
handleOpenAIErrors,
|
|
validateTools,
|
|
loadTools,
|
|
};
|