when introducing a character without instructions send empty content

This commit is contained in:
vegu-ai-tools
2025-11-20 00:29:41 +02:00
parent 495d9b1abe
commit 4fd3e0d25e

View File

@@ -276,7 +276,7 @@ export default {
let payload = {};
if(typeof name === 'string' && !advanced) {
payload = { name: name };
payload = { name: name, content: " " };
} else if(typeof name === 'string' && advanced) {
return this.showAdvancedIntroduceCharacterDialog(name);
} else if(typeof name === 'object') {