chat_records.api 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205
  1. import "../base.api"
  2. type (
  3. // The data of chat records information | ChatRecords信息
  4. ChatRecordsInfo {
  5. BaseIDInfo
  6. // 内容
  7. Content *string `json:"content,optional"`
  8. // 内容类型:1-提问 2-回答
  9. ContentType *uint8 `json:"contentType,optional"`
  10. // 角色类型:1-用户 2-智能体
  11. RoleType *string `json:"roleType,optional"`
  12. // 会话ID
  13. SessionId *uint64 `json:"sessionId,optional"`
  14. // 用户ID
  15. UserId *uint64 `json:"userId,optional"`
  16. // 聊天ID
  17. BotId *uint64 `json:"botId,optional"`
  18. // 类型:1-微信 2-小程序card 3-智能体
  19. BotType *uint8 `json:"botType,optional,options=1|2|3"`
  20. Finish bool `json:"finish,optional"`
  21. }
  22. // The response data of chat records list | ChatRecords列表数据
  23. ChatRecordsListResp {
  24. BaseDataInfo
  25. // ChatRecords list data | ChatRecords列表数据
  26. Data ChatRecordsListInfo `json:"data"`
  27. }
  28. // ChatRecords list data | ChatRecords列表数据
  29. ChatRecordsListInfo {
  30. BaseListInfo
  31. // The API list data | ChatRecords列表数据
  32. Data []ChatRecordsInfo `json:"data"`
  33. }
  34. // Get chat records list request params | ChatRecords列表请求参数
  35. ChatRecordsListReq {
  36. PageInfo
  37. SessionId *uint64 `json:"sessionId"`
  38. BotId *uint64 `json:"botId,optional"`
  39. BotType *uint8 `json:"botType,optional"`
  40. }
  41. // ChatRecords information response | ChatRecords信息返回体
  42. ChatRecordsInfoResp {
  43. BaseDataInfo
  44. // ChatRecords information | ChatRecords数据
  45. Data ChatRecordsInfo `json:"data"`
  46. }
  47. ChatRecommendReq {
  48. SessionId *uint64 `json:"sessionId"`
  49. }
  50. ChatRecommendResp {
  51. BaseDataInfo
  52. // The API list data | ChatRecords列表数据
  53. Data ChatRecommend `json:"data"`
  54. }
  55. ChatRecommend {
  56. Data []string `json:"data"`
  57. SessionId uint64 `json:"sessionId"`
  58. }
  59. ChatAskReq {
  60. CardId *uint64 `json:"cardId"`
  61. Question *string `json:"question"`
  62. SessionId *int `json:"sessionId"`
  63. }
  64. ChatAskResp {
  65. BaseDataInfo
  66. Data *string `json:"data"`
  67. }
  68. GptChatReq{
  69. ConversationId *string `json:"conversationId,optional"`
  70. Content *string `json:"content"`
  71. }
  72. GptMessageReq {
  73. ConversationId *string `json:"conversationId,optional"`
  74. FirstId *string `json:"firstId,optional"`
  75. Limit *int `json:"limit"`
  76. }
  77. GptMessageResp {
  78. BaseDataInfo
  79. Data GptMessageList `json:"data"`
  80. }
  81. GptMessageList {
  82. HasMore bool `json:"hasMore"`
  83. Data []Message `json:"data"`
  84. }
  85. Message {
  86. Id *string `json:"id"`
  87. ConversationId *string `json:"conversationId,optional"`
  88. Query *string `json:"query"`
  89. Answer *string `json:"answer"`
  90. Inputs interface{} `json:"inputs"`
  91. CreatedAt *int `json:"createdAt"`
  92. }
  93. GptsSessionReq {
  94. Limit *int `json:"limit"`
  95. LastId *string `json:"lastId,optional"`
  96. }
  97. GptsSessionResp {
  98. BaseDataInfo
  99. Data GptsSessionList `json:"data"`
  100. }
  101. GptsSessionList {
  102. HasMore bool `json:"hasMore"`
  103. Data []Session `json:"data"`
  104. }
  105. Session {
  106. Id *string `json:"id"`
  107. Name *string `json:"name"`
  108. CreatedAt *int `json:"createdAt"`
  109. Inputs interface{} `json:"inputs"`
  110. }
  111. )
  112. @server(
  113. group: chatrecords
  114. )
  115. service Wechat {
  116. // Create chat records information | 创建ChatRecords
  117. @handler gptsSubmitApiChat
  118. post /gpts/chat/submit (GptChatReq)
  119. // Create chat records information | 创建ChatRecords
  120. @handler gptsGetApiMessage
  121. post /gpts/chat/message (GptMessageReq) returns (GptMessageResp)
  122. // Create chat records information | 创建ChatRecords
  123. @handler gptsGetApiSession
  124. post /gpts/chat/session (GptsSessionReq) returns (GptsSessionResp)
  125. }
  126. @server(
  127. jwt: Auth
  128. group: chatrecords
  129. middleware: Miniprogram
  130. )
  131. service Wechat {
  132. // Create chat records information | 创建ChatRecords
  133. @handler submitApiChat
  134. post /api/chat/create (ChatRecordsInfo)
  135. // Create chat records information | 创建ChatRecords
  136. @handler answerApiChat
  137. post /api/chat/answer (ChatAskReq) returns (ChatAskResp)
  138. // Get chat records list | 获取ChatRecords列表
  139. @handler getApiChatList
  140. post /api/chat/list (ChatRecordsListReq) returns (ChatRecordsListResp)
  141. // Get chat records list | 获取ChatRecords列表
  142. @handler getApiRecommendChat
  143. post /api/chat/recommmend (ChatRecommendReq) returns (ChatRecommendResp)
  144. }
  145. @server(
  146. jwt: Auth
  147. group: chatrecords
  148. middleware: Authority
  149. )
  150. service Wechat {
  151. // Create chat records information | 创建ChatRecords
  152. @handler createChatRecords
  153. post /chat_records/create (ChatRecordsInfo) returns (BaseMsgResp)
  154. // Update chat records information | 更新ChatRecords
  155. @handler updateChatRecords
  156. post /chat_records/update (ChatRecordsInfo) returns (BaseMsgResp)
  157. // Delete chat records information | 删除ChatRecords信息
  158. @handler deleteChatRecords
  159. post /chat_records/delete (IDsReq) returns (BaseMsgResp)
  160. // Get chat records list | 获取ChatRecords列表
  161. @handler getChatRecordsList
  162. post /chat_records/list (ChatRecordsListReq) returns (ChatRecordsListResp)
  163. // Get chat records by ID | 通过ID获取ChatRecords
  164. @handler getChatRecordsById
  165. post /chat_records (IDReq) returns (ChatRecordsInfoResp)
  166. }