Only include user and assistant messages when generating titles
(again)
This commit is contained in:
parent
a43a91c6ff
commit
cea5118cac
@ -172,7 +172,10 @@ Example response:
|
||||
|
||||
var msgs []msg
|
||||
for _, m := range messages {
|
||||
msgs = append(msgs, msg{string(m.Role), m.Content})
|
||||
switch m.Role {
|
||||
case api.MessageRoleAssistant, api.MessageRoleUser:
|
||||
msgs = append(msgs, msg{string(m.Role), m.Content})
|
||||
}
|
||||
}
|
||||
|
||||
// Serialize the conversation to JSON
|
||||
|
Loading…
Reference in New Issue
Block a user