Note: The gemini-pro-vision model (for text-and-image input) is not yet optimized for multi-turn conversations. Make sure to use gemini-pro and text-only input for chat use cases.

This commit is contained in:
ikechan8370 2023-12-15 20:26:05 +08:00
parent 4dc5d6fe77
commit 22dcb0405b
5 changed files with 185 additions and 111 deletions

View file

@ -80,7 +80,7 @@ export async function imageVariation (imageUrl, n = 1, size = '512x512') {
return response.data.data?.map(pic => pic.b64_json)
}
async function resizeAndCropImage (inputFilePath, outputFilePath, size = 512) {
export async function resizeAndCropImage (inputFilePath, outputFilePath, size = 512) {
// Determine the maximum dimension of the input image
let sharp
try {