mirror of
https://github.com/danny-avila/LibreChat.git
synced 2025-12-18 09:20:15 +01:00
* chore: update docs * fix(StableDiffusion): optimize API responses and file handling, return expected metadata for Assistants endpoint
12 lines
618 B
JavaScript
12 lines
618 B
JavaScript
const path = require('path');
|
|
|
|
module.exports = {
|
|
root: path.resolve(__dirname, '..', '..'),
|
|
uploads: path.resolve(__dirname, '..', '..', 'uploads'),
|
|
clientPath: path.resolve(__dirname, '..', '..', 'client'),
|
|
dist: path.resolve(__dirname, '..', '..', 'client', 'dist'),
|
|
publicPath: path.resolve(__dirname, '..', '..', 'client', 'public'),
|
|
imageOutput: path.resolve(__dirname, '..', '..', 'client', 'public', 'images'),
|
|
structuredTools: path.resolve(__dirname, '..', 'app', 'clients', 'tools', 'structured'),
|
|
pluginManifest: path.resolve(__dirname, '..', 'app', 'clients', 'tools', 'manifest.json'),
|
|
};
|