Hi,
When I use summarize mode to query, I met the following error:
2025-09-28 23:32:30,820 - chat.participants - ERROR - Error storing conversation: 'str' object has no attribute 'get'
# participants.py
# Create summary array with titles and descriptions
for item in handler.return_value['content']:
title = item.get('name', '')
description = item.get('description', '')
summary_array.append({
'title': title,
'description': description
})
I found that maybe the error is due to the different schema used in post_ranking.py (message = {"message_type": "result", "@type": "Summary", "content": self.handler.summary}).