mirror of
https://github.com/danny-avila/LibreChat.git
synced 2025-12-25 12:48:53 +01:00
35 lines
730 B
JavaScript
35 lines
730 B
JavaScript
const { removeNullishValues } = require('librechat-data-provider');
|
|
const artifactsPrompt = require('~/app/clients/prompts/artifacts');
|
|
|
|
const buildOptions = (endpoint, parsedBody) => {
|
|
const {
|
|
examples,
|
|
modelLabel,
|
|
resendFiles = true,
|
|
promptPrefix,
|
|
iconURL,
|
|
greeting,
|
|
spec,
|
|
artifacts,
|
|
...modelOptions
|
|
} = parsedBody;
|
|
const endpointOption = removeNullishValues({
|
|
examples,
|
|
endpoint,
|
|
modelLabel,
|
|
resendFiles,
|
|
promptPrefix,
|
|
iconURL,
|
|
greeting,
|
|
spec,
|
|
modelOptions,
|
|
});
|
|
|
|
if (artifacts === 'default') {
|
|
endpointOption.promptPrefix = `${promptPrefix ?? ''}\n${artifactsPrompt}`.trim();
|
|
}
|
|
|
|
return endpointOption;
|
|
};
|
|
|
|
module.exports = buildOptions;
|