chat_records.api 5.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206
  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. AgentId *uint64 `json:"agentId"`
  72. }
  73. GptMessageReq {
  74. ConversationId *string `json:"conversationId,optional"`
  75. FirstId *string `json:"firstId,optional"`
  76. Limit *int `json:"limit"`
  77. }
  78. GptMessageResp {
  79. BaseDataInfo
  80. Data GptMessageList `json:"data"`
  81. }
  82. GptMessageList {
  83. HasMore bool `json:"hasMore"`
  84. Data []Message `json:"data"`
  85. }
  86. Message {
  87. Id *string `json:"id"`
  88. ConversationId *string `json:"conversationId,optional"`
  89. Query *string `json:"query"`
  90. Answer *string `json:"answer"`
  91. Inputs interface{} `json:"inputs"`
  92. CreatedAt *int `json:"createdAt"`
  93. }
  94. GptsSessionReq {
  95. Limit *int `json:"limit"`
  96. LastId *string `json:"lastId,optional"`
  97. }
  98. GptsSessionResp {
  99. BaseDataInfo
  100. Data GptsSessionList `json:"data"`
  101. }
  102. GptsSessionList {
  103. HasMore bool `json:"hasMore"`
  104. Data []Session `json:"data"`
  105. }
  106. Session {
  107. Id *string `json:"id"`
  108. Name *string `json:"name"`
  109. CreatedAt *int `json:"createdAt"`
  110. Inputs interface{} `json:"inputs"`
  111. }
  112. )
  113. @server(
  114. group: chatrecords
  115. )
  116. service Wechat {
  117. // Create chat records information | 创建ChatRecords
  118. @handler gptsSubmitApiChat
  119. post /gpts/chat/submit (GptChatReq)
  120. // Create chat records information | 创建ChatRecords
  121. @handler gptsGetApiMessage
  122. post /gpts/chat/message (GptMessageReq) returns (GptMessageResp)
  123. // Create chat records information | 创建ChatRecords
  124. @handler gptsGetApiSession
  125. post /gpts/chat/session (GptsSessionReq) returns (GptsSessionResp)
  126. }
  127. @server(
  128. jwt: Auth
  129. group: chatrecords
  130. middleware: Miniprogram
  131. )
  132. service Wechat {
  133. // Create chat records information | 创建ChatRecords
  134. @handler submitApiChat
  135. post /api/chat/create (ChatRecordsInfo)
  136. // Create chat records information | 创建ChatRecords
  137. @handler answerApiChat
  138. post /api/chat/answer (ChatAskReq) returns (ChatAskResp)
  139. // Get chat records list | 获取ChatRecords列表
  140. @handler getApiChatList
  141. post /api/chat/list (ChatRecordsListReq) returns (ChatRecordsListResp)
  142. // Get chat records list | 获取ChatRecords列表
  143. @handler getApiRecommendChat
  144. post /api/chat/recommmend (ChatRecommendReq) returns (ChatRecommendResp)
  145. }
  146. @server(
  147. jwt: Auth
  148. group: chatrecords
  149. middleware: Authority
  150. )
  151. service Wechat {
  152. // Create chat records information | 创建ChatRecords
  153. @handler createChatRecords
  154. post /chat_records/create (ChatRecordsInfo) returns (BaseMsgResp)
  155. // Update chat records information | 更新ChatRecords
  156. @handler updateChatRecords
  157. post /chat_records/update (ChatRecordsInfo) returns (BaseMsgResp)
  158. // Delete chat records information | 删除ChatRecords信息
  159. @handler deleteChatRecords
  160. post /chat_records/delete (IDsReq) returns (BaseMsgResp)
  161. // Get chat records list | 获取ChatRecords列表
  162. @handler getChatRecordsList
  163. post /chat_records/list (ChatRecordsListReq) returns (ChatRecordsListResp)
  164. // Get chat records by ID | 通过ID获取ChatRecords
  165. @handler getChatRecordsById
  166. post /chat_records (IDReq) returns (ChatRecordsInfoResp)
  167. }