mirror of
https://github.com/danny-avila/LibreChat.git
synced 2025-12-17 08:50:15 +01:00
10 lines
227 B
JavaScript
10 lines
227 B
JavaScript
|
|
const instructions = require('./instructions');
|
||
|
|
const titlePrompts = require('./titlePrompts');
|
||
|
|
const refinePrompts = require('./refinePrompts');
|
||
|
|
|
||
|
|
module.exports = {
|
||
|
|
...refinePrompts,
|
||
|
|
...instructions,
|
||
|
|
...titlePrompts,
|
||
|
|
};
|