mirror of
https://github.com/danny-avila/LibreChat.git
synced 2025-09-22 06:00:56 +02:00

* WIP: gemini-1.5 support * feat: extended vertex ai support * fix: handle possibly undefined modelName * fix: gpt-4-turbo-preview invalid vision model * feat: specify `fileConfig.imageOutputType` and make PNG default image conversion type * feat: better truncation for errors including base64 strings * fix: gemini inlineData formatting * feat: RAG augmented prompt for gemini-1.5 * feat: gemini-1.5 rates and token window * chore: adjust tokens, update docs, update vision Models * chore: add back `ChatGoogleVertexAI` for chat models via vertex ai * refactor: ask/edit controllers to not use `unfinished` field for google endpoint * chore: remove comment * chore(ci): fix AppService test * chore: remove comment * refactor(GoogleSearch): use `GOOGLE_SEARCH_API_KEY` instead, issue warning for old variable * chore: bump data-provider to 0.5.4 * chore: update docs * fix: condition for gemini-1.5 using generative ai lib * chore: update docs * ci: add additional AppService test for `imageOutputType` * refactor: optimize new config value `imageOutputType` * chore: bump CONFIG_VERSION * fix(assistants): avatar upload
68 lines
2.5 KiB
JavaScript
68 lines
2.5 KiB
JavaScript
const sharp = require('sharp');
|
|
const fs = require('fs').promises;
|
|
const fetch = require('node-fetch');
|
|
const { resizeAndConvert } = require('./resize');
|
|
const { logger } = require('~/config');
|
|
|
|
/**
|
|
* Uploads an avatar image for a user. This function can handle various types of input (URL, Buffer, or File object),
|
|
* processes the image to a square format, converts it to target format, and returns the resized buffer.
|
|
*
|
|
* @param {Object} params - The parameters object.
|
|
* @param {string} params.userId - The unique identifier of the user for whom the avatar is being uploaded.
|
|
* @param {string} options.desiredFormat - The desired output format of the image.
|
|
* @param {(string|Buffer|File)} params.input - The input representing the avatar image. Can be a URL (string),
|
|
* a Buffer, or a File object.
|
|
*
|
|
* @returns {Promise<any>}
|
|
* A promise that resolves to a resized buffer.
|
|
*
|
|
* @throws {Error} Throws an error if the user ID is undefined, the input type is invalid, the image fetching fails,
|
|
* or any other error occurs during the processing.
|
|
*/
|
|
async function resizeAvatar({ userId, input, desiredFormat }) {
|
|
try {
|
|
if (userId === undefined) {
|
|
throw new Error('User ID is undefined');
|
|
}
|
|
|
|
let imageBuffer;
|
|
if (typeof input === 'string') {
|
|
const response = await fetch(input);
|
|
|
|
if (!response.ok) {
|
|
throw new Error(`Failed to fetch image from URL. Status: ${response.status}`);
|
|
}
|
|
imageBuffer = await response.buffer();
|
|
} else if (input instanceof Buffer) {
|
|
imageBuffer = input;
|
|
} else if (typeof input === 'object' && input instanceof File) {
|
|
const fileContent = await fs.readFile(input.path);
|
|
imageBuffer = Buffer.from(fileContent);
|
|
} else {
|
|
throw new Error('Invalid input type. Expected URL, Buffer, or File.');
|
|
}
|
|
|
|
const { width, height } = await sharp(imageBuffer).metadata();
|
|
const minSize = Math.min(width, height);
|
|
const squaredBuffer = await sharp(imageBuffer)
|
|
.extract({
|
|
left: Math.floor((width - minSize) / 2),
|
|
top: Math.floor((height - minSize) / 2),
|
|
width: minSize,
|
|
height: minSize,
|
|
})
|
|
.toBuffer();
|
|
|
|
const { buffer } = await resizeAndConvert({
|
|
inputBuffer: squaredBuffer,
|
|
desiredFormat,
|
|
});
|
|
return buffer;
|
|
} catch (error) {
|
|
logger.error('Error uploading the avatar:', error);
|
|
throw error;
|
|
}
|
|
}
|
|
|
|
module.exports = { resizeAvatar };
|