mirror of
https://github.com/danny-avila/LibreChat.git
synced 2025-09-21 21:50:49 +02:00

* 🔧 feat: Add configurable S3 URL refresh expiry time
* fix: Set default width and height for URLIcon component in case container style results in NaN
* refactor: Enhance auto-save functionality with debounced restore methods
* feat: Add support for additionalProperties in JSON schema conversion to Zod
* test: Add tests for additionalProperties handling in JSON schema to Zod conversion
* chore: Reorder import statements for better readability in ask route
* fix: Handle additional successful response status code (200) in SSE error handler
* fix: add missing rate limiting middleware for bedrock and agent chat routes
* fix: update moderation middleware to check feature flag before processing requests
* fix: add moderation middleware to chat routes for text moderation
* Revert "refactor: Enhance auto-save functionality with debounced restore methods"
This reverts commit d2e4134d1f
.
* refactor: Move base64 encoding/decoding functions to top-level scope and optimize input handling
47 lines
1.3 KiB
JavaScript
47 lines
1.3 KiB
JavaScript
const express = require('express');
|
|
const { EModelEndpoint } = require('librechat-data-provider');
|
|
const {
|
|
uaParser,
|
|
checkBan,
|
|
requireJwtAuth,
|
|
messageIpLimiter,
|
|
concurrentLimiter,
|
|
messageUserLimiter,
|
|
validateConvoAccess,
|
|
} = require('~/server/middleware');
|
|
const { isEnabled } = require('~/server/utils');
|
|
const gptPlugins = require('./gptPlugins');
|
|
const anthropic = require('./anthropic');
|
|
const custom = require('./custom');
|
|
const google = require('./google');
|
|
const openAI = require('./openAI');
|
|
|
|
const { LIMIT_CONCURRENT_MESSAGES, LIMIT_MESSAGE_IP, LIMIT_MESSAGE_USER } = process.env ?? {};
|
|
|
|
const router = express.Router();
|
|
|
|
router.use(requireJwtAuth);
|
|
router.use(checkBan);
|
|
router.use(uaParser);
|
|
|
|
if (isEnabled(LIMIT_CONCURRENT_MESSAGES)) {
|
|
router.use(concurrentLimiter);
|
|
}
|
|
|
|
if (isEnabled(LIMIT_MESSAGE_IP)) {
|
|
router.use(messageIpLimiter);
|
|
}
|
|
|
|
if (isEnabled(LIMIT_MESSAGE_USER)) {
|
|
router.use(messageUserLimiter);
|
|
}
|
|
|
|
router.use(validateConvoAccess);
|
|
|
|
router.use([`/${EModelEndpoint.azureOpenAI}`, `/${EModelEndpoint.openAI}`], openAI);
|
|
router.use(`/${EModelEndpoint.gptPlugins}`, gptPlugins);
|
|
router.use(`/${EModelEndpoint.anthropic}`, anthropic);
|
|
router.use(`/${EModelEndpoint.google}`, google);
|
|
router.use(`/${EModelEndpoint.custom}`, custom);
|
|
|
|
module.exports = router;
|