mirror of
https://github.com/vitalityAI/therapist.git
synced 2025-04-05 12:30:16 -04:00
fix: doesnt hang up on call hangup
This commit is contained in:
parent
d337240c0b
commit
93420f8184
|
@ -39,7 +39,7 @@ model Message {
|
|||
|
||||
createdAt DateTime @default(now())
|
||||
role Role
|
||||
content String
|
||||
content String @default("")
|
||||
|
||||
session Session @relation(fields: [sessionId], references: [id])
|
||||
sessionId String @db.ObjectId
|
||||
|
|
|
@ -36,7 +36,10 @@ export const chat = async (callId) => {
|
|||
for (let msg of msgs) {
|
||||
messages.push({
|
||||
role: convertRole(msg.role),
|
||||
content: msg.content,
|
||||
content:
|
||||
msg.content.length > 0
|
||||
? msg.content
|
||||
: "This message was not recorded correctly.",
|
||||
});
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user