| const { removeNullishValues } = require('librechat-data-provider'); | |
| const generateArtifactsPrompt = require('~/app/clients/prompts/artifacts'); | |
| const buildOptions = (endpoint, parsedBody) => { | |
| const { | |
| examples, | |
| modelLabel, | |
| resendFiles = true, | |
| promptPrefix, | |
| iconURL, | |
| greeting, | |
| spec, | |
| artifacts, | |
| maxContextTokens, | |
| fileTokenLimit, | |
| ...modelOptions | |
| } = parsedBody; | |
| const endpointOption = removeNullishValues({ | |
| examples, | |
| endpoint, | |
| modelLabel, | |
| resendFiles, | |
| promptPrefix, | |
| iconURL, | |
| greeting, | |
| spec, | |
| maxContextTokens, | |
| fileTokenLimit, | |
| modelOptions, | |
| }); | |
| if (typeof artifacts === 'string') { | |
| endpointOption.artifactsPrompt = generateArtifactsPrompt({ endpoint, artifacts }); | |
| } | |
| return endpointOption; | |
| }; | |
| module.exports = buildOptions; | |