ai.go 5.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206
  1. package aimod
  2. import (
  3. "eta/eta_api/global"
  4. "eta/eta_api/utils"
  5. "gorm.io/gorm"
  6. "time"
  7. )
  8. type AiChatTopic struct {
  9. AiChatTopicId int `orm:"column(ai_chat_topic_id);pk" gorm:"primaryKey"`
  10. TopicName string
  11. SysUserId int
  12. SysUserRealName string
  13. AssistantId string
  14. ThreadId string
  15. CreateTime time.Time
  16. ModifyTime time.Time
  17. }
  18. type AiChat struct {
  19. AiChatId int `orm:"column(ai_chat_id);pk" gorm:"primaryKey"`
  20. AiChatTopicId int
  21. Ask string
  22. AskUuid string
  23. Answer string
  24. Model string
  25. SysUserId int
  26. SysUserRealName string `description:"提问人名称"`
  27. OpenaiFileId string `description:"openai返回的文件id"`
  28. OpenaiFileName string `description:"文件名称"`
  29. OpenaiFilePath string `description:"文件路径"`
  30. CreateTime time.Time
  31. ModifyTime time.Time
  32. }
  33. type ChatReq struct {
  34. AiChatTopicId int `description:"主题id"`
  35. Ask string `description:"提问"`
  36. Model string `description:"模型"`
  37. }
  38. func GetAiChatByAsk(askUuid string) (item *AiChat, err error) {
  39. sql := `SELECT * FROM ai_chat WHERE ask_uuid=?`
  40. o := global.DbMap[utils.DbNameAI]
  41. err = o.Raw(sql, askUuid).First(&item).Error
  42. return
  43. }
  44. type ChatResp struct {
  45. AiChatTopicId int `description:"主题id"`
  46. Ask string `description:"提问"`
  47. Answer string `description:"回答"`
  48. Model string
  49. }
  50. // AddAiChatTopic 新增主题
  51. func AddAiChatTopic(item *AiChatTopic) (lastId int64, err error) {
  52. o := global.DbMap[utils.DbNameAI]
  53. err = o.Create(item).Error
  54. if err != nil {
  55. return
  56. }
  57. lastId = int64(item.AiChatTopicId)
  58. return
  59. }
  60. // AddAiChat 新增聊天
  61. func AddAiChat(item *AiChat) (lastId int64, err error) {
  62. o := global.DbMap[utils.DbNameAI]
  63. err = o.Create(item).Error
  64. if err != nil {
  65. return
  66. }
  67. lastId = int64(item.AiChatId)
  68. return
  69. }
  70. type AiChatTopicView struct {
  71. AiChatTopicId int `description:"主题id"`
  72. TopicName string `description:"主题名称"`
  73. CreateTime string `description:"创建时间"`
  74. ModifyTime string `description:"修改时间"`
  75. AssistantId string
  76. ThreadId string
  77. }
  78. func (obj *AiChatTopicView) AfterFind(tx *gorm.DB) (err error) {
  79. obj.CreateTime = utils.GormDateStrToDateTimeStr(obj.CreateTime)
  80. obj.ModifyTime = utils.GormDateStrToDateTimeStr(obj.ModifyTime)
  81. return
  82. }
  83. func GetAiChatTopicList(sysUserId int) (item []*AiChatTopicView, err error) {
  84. sql := ` SELECT * FROM ai_chat_topic WHERE sys_user_id=? ORDER BY create_time DESC `
  85. o := global.DbMap[utils.DbNameAI]
  86. err = o.Raw(sql, sysUserId).Find(&item).Error
  87. return
  88. }
  89. type AiChatTopicListResp struct {
  90. List []*AiChatTopicView
  91. }
  92. type AiChatView struct {
  93. AiChatId int `description:"记录id"`
  94. AiChatTopicId int `description:"主题id"`
  95. Ask string `description:"提问"`
  96. Answer string `description:"答案"`
  97. Model string
  98. OpenaiFileId string `description:"文件ID"`
  99. OpenaiFileName string `description:"文件名称"`
  100. OpenaiFilePath string `description:"文件路径"`
  101. CreateTime string `description:"创建时间"`
  102. ModifyTime string `description:"修改时间"`
  103. }
  104. var ModelViewMap = map[string]string{
  105. "gpt-4-1106-preview": "GPT-4 Turbo",
  106. "moonshot-v1-32k": "Kimi",
  107. // "moonshot-v1-8k": "Kimi",
  108. }
  109. func GetAiChatList(aiChatTopicId int) (item []*AiChatView, err error) {
  110. sql := ` SELECT * FROM ai_chat WHERE ai_chat_topic_id=? ORDER BY create_time ASC `
  111. o := global.DbMap[utils.DbNameAI]
  112. err = o.Raw(sql, aiChatTopicId).Find(&item).Error
  113. return
  114. }
  115. type AiChatDetailResp struct {
  116. List []*AiChatView
  117. }
  118. type TopicDeleteReq struct {
  119. AiChatTopicId int `description:"主题id"`
  120. }
  121. func DeleteTopic(topicId int) (err error) {
  122. o := global.DbMap[utils.DbNameAI]
  123. tx := o.Begin()
  124. defer func() {
  125. if err != nil {
  126. tx.Rollback()
  127. } else {
  128. tx.Commit()
  129. }
  130. }()
  131. sql := ` DELETE FROM ai_chat_topic WHERE ai_chat_topic_id=? `
  132. err = tx.Exec(sql, topicId).Error
  133. if err != nil {
  134. return err
  135. }
  136. sql = ` DELETE FROM ai_chat WHERE ai_chat_topic_id=? `
  137. err = tx.Exec(sql, topicId).Error
  138. if err != nil {
  139. return err
  140. }
  141. return err
  142. }
  143. type TopicEditReq struct {
  144. AiChatTopicId int `description:"主题id"`
  145. TopicName string `description:"主题名称"`
  146. }
  147. func GetAiChatTopicByTopicName(topicName string) (item *AiChatTopicView, err error) {
  148. sql := ` SELECT * FROM ai_chat_topic WHERE topic_name=? `
  149. o := global.DbMap[utils.DbNameAI]
  150. err = o.Raw(sql, topicName).First(&item).Error
  151. return
  152. }
  153. func EditTopic(topicId int, topicName string) (err error) {
  154. o := global.DbMap[utils.DbNameAI]
  155. sql := ` UPDATE ai_chat_topic SET topic_name=? WHERE ai_chat_topic_id=? `
  156. err = o.Exec(sql, topicName, topicId).Error
  157. return err
  158. }
  159. func (obj *AiChatTopic) GetAiChatTopicById() (item *AiChatTopicView, err error) {
  160. o := global.DbMap[utils.DbNameAI]
  161. sql := ` SELECT * FROM ai_chat_topic WHERE ai_chat_topic_id=? `
  162. err = o.Raw(sql, obj.AiChatTopicId).First(&item).Error
  163. return
  164. }
  165. type HistoryChat struct {
  166. Ask string
  167. Answer string
  168. OpenaiFileId []string `description:"文件ID"`
  169. }
  170. // 修改
  171. func (obj *AiChatTopic) Update(updateParams, whereParam map[string]interface{}) (err error) {
  172. to := global.DbMap[utils.DbNameAI]
  173. /*ptrStructOrTableName := "ai_chat_topic"
  174. qs := to.QueryTable(ptrStructOrTableName)
  175. for expr, exprV := range whereParam {
  176. qs = qs.Filter(expr, exprV)
  177. }
  178. err = qs.Update(updateParams)*/
  179. err = to.Model(obj).Where(whereParam).Updates(updateParams).Error
  180. return
  181. }