mirror of
https://github.com/SillyTavern/SillyTavern.git
synced 2025-01-05 21:46:49 +01:00
Claude: Don't send empty text with images
This commit is contained in:
parent
bb9700b478
commit
3471d0be93
@ -195,7 +195,8 @@ export function convertClaudeMessages(messages, prefillString, useSysPrompt, use
|
||||
content.text = `${message.name}: ${content.text}`;
|
||||
}
|
||||
|
||||
return content;
|
||||
// If the text is empty, replace it with a zero-width space
|
||||
return { type: 'text', text: content.text || '\u200b' };
|
||||
}
|
||||
|
||||
return content;
|
||||
|
Loading…
Reference in New Issue
Block a user