mirror of
https://github.com/danny-avila/LibreChat.git
synced 2025-12-26 05:08:50 +01:00
25 lines
684 B
JavaScript
25 lines
684 B
JavaScript
const { removeNullishValues } = require('librechat-data-provider');
|
|
const artifactsPrompt = require('~/app/clients/prompts/artifacts');
|
|
|
|
const buildOptions = (endpoint, parsedBody) => {
|
|
// eslint-disable-next-line no-unused-vars
|
|
const { promptPrefix, assistant_id, iconURL, greeting, spec, artifacts, ...modelOptions } =
|
|
parsedBody;
|
|
const endpointOption = removeNullishValues({
|
|
endpoint,
|
|
promptPrefix,
|
|
assistant_id,
|
|
iconURL,
|
|
greeting,
|
|
spec,
|
|
modelOptions,
|
|
});
|
|
|
|
if (artifacts === 'default') {
|
|
endpointOption.promptPrefix = `${promptPrefix ?? ''}\n${artifactsPrompt}`.trim();
|
|
}
|
|
|
|
return endpointOption;
|
|
};
|
|
|
|
module.exports = buildOptions;
|