Fix: generate title from user message — use only text parts (#1279)

Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
This commit is contained in:
Mateo Ortegon 2025-10-31 20:09:46 -04:00 committed by GitHub
parent 6a02d4fa9a
commit d366de3c86
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 12 additions and 8 deletions

View file

@ -108,9 +108,9 @@ export function convertToUIMessages(messages: DBMessage[]): ChatMessage[] {
}));
}
export function getTextFromMessage(message: ChatMessage): string {
export function getTextFromMessage(message: ChatMessage | UIMessage): string {
return message.parts
.filter((part) => part.type === 'text')
.map((part) => part.text)
.map((part) => (part as { type: 'text'; text: string}).text)
.join('');
}