-
Notifications
You must be signed in to change notification settings - Fork 184
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
#51 add memory #87
#51 add memory #87
Conversation
<artifactId>spring-boot-starter-data-redis</artifactId> | ||
</dependency> | ||
|
||
<dependency> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
确定使用这个 orm 框架,或许可以考虑下 mybatis-flux?
<artifactId>spring-boot-starter-data-elasticsearch</artifactId> | ||
</dependency> | ||
|
||
<dependency> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
尽量别用hutool吧
<version>5.7.5</version> | ||
</dependency> | ||
|
||
<dependency> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
可以用 spring boot 自己的序列化框架 jackson
@@ -0,0 +1,38 @@ | |||
package com.alibaba.cloud.ai.memory.entity; | |||
|
|||
import lombok.Data; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
lombok 也别在基架项目里用
Well done. I had a quick review of the code and overall it is what we expect to add for the chat memory feature. The main problem I want to point out is the boundaries of what the framework should do and what the user application should do. As a framework, we need to focus more on basic memory-related component definitions and make sure they are extensible. |
#51