mirror of
https://github.com/danny-avila/LibreChat.git
synced 2026-02-11 03:54:23 +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,
|
||
|
|
};
|