user_llm_chat.go 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. package llm
  2. import (
  3. "errors"
  4. "eta/eta_api/global"
  5. "eta/eta_api/utils"
  6. "time"
  7. )
  8. type UserLlmChat struct {
  9. Id int `gorm:"primaryKey;autoIncrement;comment:会话主键"`
  10. UserId int `gorm:"comment:用户id"`
  11. ChatTitle string `gorm:"comment:会话标题"`
  12. IsDeleted int `gorm:"comment:是否删除"`
  13. CreatedTime time.Time `gorm:"comment:创建时间"`
  14. UpdateTime time.Time `gorm:"autoUpdateTime;comment:更新时间"`
  15. }
  16. type UserLlmChatListViewItem struct {
  17. Id int `gorm:"primaryKey;autoIncrement;comment:会话主键"`
  18. UserId int `gorm:"comment:用户id"`
  19. ChatTitle string `gorm:"comment:会话标题"`
  20. CreatedTime string `gorm:"comment:创建时间"`
  21. RecordCount int `gorm:"comment:会话记录数"`
  22. }
  23. func CovertItemToView(item UserLlmChat) UserLlmChatListViewItem {
  24. return UserLlmChatListViewItem{
  25. Id: item.Id,
  26. UserId: item.UserId,
  27. ChatTitle: item.ChatTitle,
  28. CreatedTime: item.CreatedTime.Format(utils.FormatDateTime),
  29. }
  30. }
  31. func (u *UserLlmChat) TableName() string {
  32. return "user_llm_chat"
  33. }
  34. func (u *UserLlmChat) CreateChatSession() (chatId int, err error) {
  35. o := global.DbMap[utils.DbNameAI]
  36. err = o.Create(u).Error
  37. if err != nil {
  38. return
  39. }
  40. chatId = u.Id
  41. return
  42. }
  43. func (u *UserLlmChat) RenameChatSession() (err error) {
  44. o := global.DbMap[utils.DbNameAI]
  45. var exists bool
  46. err = o.Model(&u).Select("1").Where("id = ?", u.Id).Scan(&exists).Error
  47. if err != nil {
  48. return
  49. }
  50. if !exists {
  51. err = errors.New("当前会话不存在")
  52. return
  53. }
  54. err = o.Select("chat_title").Updates(u).Error
  55. return
  56. }
  57. func (u *UserLlmChat) DeleteChatSession() (err error) {
  58. o := global.DbMap[utils.DbNameAI]
  59. err = o.Select("is_deleted").Updates(u).Error
  60. return
  61. }
  62. func GetUserChatList(userId int, monDay, toDay string) (chatList []UserLlmChat, err error) {
  63. o := global.DbMap[utils.DbNameAI]
  64. sql := `select ulc.id AS id ,ulc.user_id as user_id,ulc.chat_title as chat_title,ulc.created_time from user_llm_chat ulc where ulc.user_id=? and ` + utils.GenerateQuerySql(utils.ToDate, &utils.QueryParam{Column: "ulc.created_time"}) + ` BETWEEN ? and ? AND is_deleted=0 GROUP BY ulc.id order by ulc.created_time desc`
  65. err = o.Raw(sql, userId, monDay, toDay).Find(&chatList).Error
  66. return
  67. }