Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

MessageChatMemoryAdvisor and PromptChatMemoryAdvisor lack a way to pass custom Message metadata #2437

Open
sunyuhan1998 opened this issue Mar 11, 2025 · 2 comments

Comments

@sunyuhan1998
Copy link

Expected Behavior
I am trying to implement a persistent ChatMemory myself. In my persistent storage, I want each Message to have a custom unique primary key and other accompanying metadata (I think this is also a common requirement for many people). I will specify this when I construct the ChatClientRequestSpec, and then get it from the Message parameter when implementing the ChatMemory add method.

Current Behavior
I found that there is no part in the parameters of the ChatMemory add method that can carry custom metadata for the Message. Although the metadata property is provided in AbstractMessage, unfortunately, MessageChatMemoryAdvisor and PromptChatMemoryAdvisor create a new Message object when calling the add method, and do not pass any Metadata properties.

Context

I think I can use Advisor's adviseContext to achieve this goal. I can pass the metadata in by specifying params when constructing ChatClientRequestSpec, and then get them in MessageChatMemoryAdvisor and PromptChatMemoryAdvisor by getting the adviseContext of AdvisedRequest, add them to Message, and pass them to ChatMemory.

@sunyuhan1998
Copy link
Author

sunyuhan1998 commented Mar 11, 2025

I pushed a PR to try adding this ability

#2439

@ghdcksgml1
Copy link
Contributor

ghdcksgml1 commented Mar 15, 2025

I also think that passing the context along is a good approach.

Initially, I developed a way to include user information in the conversationId by joining it with a hyphen(-), but it didn't feel quite right.
So, I removed the Advisor and implemented the saving logic myself. 😅

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants