mirror of
https://github.com/danny-avila/LibreChat.git
synced 2025-12-17 17:00:15 +01:00
14 lines
416 B
JavaScript
14 lines
416 B
JavaScript
|
|
const express = require('express');
|
||
|
|
const router = express.Router();
|
||
|
|
const openAI = require('./openAI');
|
||
|
|
const gptPlugins = require('./gptPlugins');
|
||
|
|
const anthropic = require('./anthropic');
|
||
|
|
// const google = require('./google');
|
||
|
|
|
||
|
|
router.use(['/azureOpenAI', '/openAI'], openAI);
|
||
|
|
router.use('/gptPlugins', gptPlugins);
|
||
|
|
router.use('/anthropic', anthropic);
|
||
|
|
// router.use('/google', google);
|
||
|
|
|
||
|
|
module.exports = router;
|