Merge branch 'feat/char-secrets'

This commit is contained in:
Grail Finder
2026-02-10 11:05:09 +03:00
28 changed files with 1951 additions and 602 deletions

View File

@@ -946,7 +946,7 @@ func summarizeChat(args map[string]string) []byte {
return []byte("No chat history to summarize.")
}
// Format chat history for the agent
chatText := chatToText(true) // include system and tool messages
chatText := chatToText(chatBody.Messages, true) // include system and tool messages
return []byte(chatText)
}