mirror of
https://github.com/danny-avila/LibreChat.git
synced 2025-12-17 00:40:14 +01:00
refactor(addImages): use in functions agent response and assure generated images are included in the response (#1120)
This commit is contained in:
parent
5c1e44eff7
commit
af69763103
3 changed files with 137 additions and 7 deletions
|
|
@ -1,23 +1,68 @@
|
|||
/**
|
||||
* The `addImages` function corrects any erroneous image URLs in the `responseMessage.text`
|
||||
* and appends image observations from `intermediateSteps` if they are not already present.
|
||||
*
|
||||
* @function
|
||||
* @module addImages
|
||||
*
|
||||
* @param {Array.<Object>} intermediateSteps - An array of objects, each containing an observation.
|
||||
* @param {Object} responseMessage - An object containing the text property which might have image URLs.
|
||||
*
|
||||
* @property {string} intermediateSteps[].observation - The observation string which might contain an image markdown.
|
||||
* @property {string} responseMessage.text - The text which might contain image URLs.
|
||||
*
|
||||
* @example
|
||||
*
|
||||
* const intermediateSteps = [
|
||||
* { observation: '' }
|
||||
* ];
|
||||
* const responseMessage = { text: 'Some text with ' };
|
||||
*
|
||||
* addImages(intermediateSteps, responseMessage);
|
||||
*
|
||||
* console.log(responseMessage.text);
|
||||
* // Outputs: 'Some text with \n'
|
||||
*
|
||||
* @returns {void}
|
||||
*/
|
||||
function addImages(intermediateSteps, responseMessage) {
|
||||
if (!intermediateSteps || !responseMessage) {
|
||||
return;
|
||||
}
|
||||
|
||||
// Correct any erroneous URLs in the responseMessage.text first
|
||||
intermediateSteps.forEach((step) => {
|
||||
const { observation } = step;
|
||||
if (!observation || !observation.includes('![')) {
|
||||
return;
|
||||
}
|
||||
|
||||
// Extract the image file path from the observation
|
||||
const observedImagePath = observation.match(/\(\/images\/.*\.\w*\)/g)[0];
|
||||
const match = observation.match(/\/images\/.*\.\w*/);
|
||||
if (!match) {
|
||||
return;
|
||||
}
|
||||
const essentialImagePath = match[0];
|
||||
|
||||
// Check if the responseMessage already includes the image file path
|
||||
if (!responseMessage.text.includes(observedImagePath)) {
|
||||
// If the image file path is not found, append the whole observation
|
||||
const regex = /!\[.*?\]\((.*?)\)/g;
|
||||
let matchErroneous;
|
||||
while ((matchErroneous = regex.exec(responseMessage.text)) !== null) {
|
||||
if (matchErroneous[1] && !matchErroneous[1].startsWith('/images/')) {
|
||||
responseMessage.text = responseMessage.text.replace(matchErroneous[1], essentialImagePath);
|
||||
}
|
||||
}
|
||||
});
|
||||
|
||||
// Now, check if the responseMessage already includes the correct image file path and append if not
|
||||
intermediateSteps.forEach((step) => {
|
||||
const { observation } = step;
|
||||
if (!observation || !observation.includes('![')) {
|
||||
return;
|
||||
}
|
||||
const observedImagePath = observation.match(/\(\/images\/.*\.\w*\)/g);
|
||||
if (observedImagePath && !responseMessage.text.includes(observedImagePath[0])) {
|
||||
responseMessage.text += '\n' + observation;
|
||||
if (this.options.debug) {
|
||||
console.debug('added image from intermediateSteps');
|
||||
if (process.env.DEBUG_PLUGINS) {
|
||||
console.debug('[addImages] added image from intermediateSteps');
|
||||
}
|
||||
}
|
||||
});
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue