forked from open-webui/open-webui
		
	fix: message after image generation
This commit is contained in:
		
							parent
							
								
									7f78e58488
								
							
						
					
					
						commit
						5a567ce4d0
					
				
					 2 changed files with 12 additions and 5 deletions
				
			
		|  | @ -308,7 +308,7 @@ | |||
| 					.map((file) => file.url.slice(file.url.indexOf(',') + 1)); | ||||
| 
 | ||||
| 				// Add images array only if it contains elements | ||||
| 				if (imageUrls && imageUrls.length > 0) { | ||||
| 				if (imageUrls && imageUrls.length > 0 && message.role === 'user') { | ||||
| 					baseMessage.images = imageUrls; | ||||
| 				} | ||||
| 
 | ||||
|  | @ -532,7 +532,8 @@ | |||
| 					.filter((message) => message) | ||||
| 					.map((message, idx, arr) => ({ | ||||
| 						role: message.role, | ||||
| 						...(message.files?.filter((file) => file.type === 'image').length > 0 ?? false | ||||
| 						...((message.files?.filter((file) => file.type === 'image').length > 0 ?? false) && | ||||
| 						message.role === 'user' | ||||
| 							? { | ||||
| 									content: [ | ||||
| 										{ | ||||
|  |  | |||
|  | @ -321,7 +321,7 @@ | |||
| 					.map((file) => file.url.slice(file.url.indexOf(',') + 1)); | ||||
| 
 | ||||
| 				// Add images array only if it contains elements | ||||
| 				if (imageUrls && imageUrls.length > 0) { | ||||
| 				if (imageUrls && imageUrls.length > 0 && message.role === 'user') { | ||||
| 					baseMessage.images = imageUrls; | ||||
| 				} | ||||
| 
 | ||||
|  | @ -545,7 +545,8 @@ | |||
| 					.filter((message) => message) | ||||
| 					.map((message, idx, arr) => ({ | ||||
| 						role: message.role, | ||||
| 						...(message.files?.filter((file) => file.type === 'image').length > 0 ?? false | ||||
| 						...((message.files?.filter((file) => file.type === 'image').length > 0 ?? false) && | ||||
| 						message.role === 'user' | ||||
| 							? { | ||||
| 									content: [ | ||||
| 										{ | ||||
|  | @ -688,7 +689,12 @@ | |||
| 
 | ||||
| 		if (messages.length == 2) { | ||||
| 			window.history.replaceState(history.state, '', `/c/${_chatId}`); | ||||
| 			await setChatTitle(_chatId, userPrompt); | ||||
| 
 | ||||
| 			if ($settings?.titleAutoGenerateModel) { | ||||
| 				await generateChatTitle(_chatId, userPrompt); | ||||
| 			} else { | ||||
| 				await setChatTitle(_chatId, userPrompt); | ||||
| 			} | ||||
| 		} | ||||
| 	}; | ||||
| 
 | ||||
|  |  | |||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue
	
	 Timothy J. Baek
						Timothy J. Baek