You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I searched existing ideas and did not find a similar one
I added a very descriptive title
I've clearly described the feature request and motivation for it
Feature request
We used SQLChatMessageHistory for storing the conversation of Human/AI. The methods: add_ai_message, add_user_message can store the messages to connected sqlite db.
However, getting messages from db will show all of the message stored in table of db. The BaseMessage has many parameters such as content, id, name, and so on. So I think it would be nice to have this feature.
What feature?
When get the messages from sqlite db, I want to get only messages what I want. This means, the messages which are set the name is "name1" are shown by filtering feature.
Motivation
The tables in db has many data for many topics. We also create the dbs or tables for each topic. But it is violated about db's purpose, I think. So the filtering feature is neccessary for us.
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
Checked
Feature request
We used
SQLChatMessageHistory
for storing the conversation of Human/AI. The methods:add_ai_message
,add_user_message
can store the messages to connected sqlite db.However, getting messages from db will show all of the message stored in table of db. The
BaseMessage
has many parameters such ascontent
,id
,name
, and so on. So I think it would be nice to have this feature.What feature?
When get the messages from sqlite db, I want to get only messages what I want. This means, the messages which are set the name is "name1" are shown by filtering feature.
Motivation
The tables in db has many data for many topics. We also create the dbs or tables for each topic. But it is violated about db's purpose, I think. So the filtering feature is neccessary for us.
Proposal (If applicable)
Beta Was this translation helpful? Give feedback.
All reactions