chat_records.api 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140
  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. // 会话ID
  11. SessionId *uint64 `json:"sessionId,optional"`
  12. // 用户ID
  13. UserId *uint64 `json:"userId,optional"`
  14. // 聊天ID
  15. BotId *uint64 `json:"botId,optional"`
  16. // 类型:1-微信 2-小程序card 3-智能体
  17. BotType *uint8 `json:"botType,optional,options=1|2|3"`
  18. Finish bool `json:"finish,optional"`
  19. }
  20. // The response data of chat records list | ChatRecords列表数据
  21. ChatRecordsListResp {
  22. BaseDataInfo
  23. // ChatRecords list data | ChatRecords列表数据
  24. Data ChatRecordsListInfo `json:"data"`
  25. }
  26. // ChatRecords list data | ChatRecords列表数据
  27. ChatRecordsListInfo {
  28. BaseListInfo
  29. // The API list data | ChatRecords列表数据
  30. Data []ChatRecordsInfo `json:"data"`
  31. }
  32. // Get chat records list request params | ChatRecords列表请求参数
  33. ChatRecordsListReq {
  34. PageInfo
  35. SessionId *uint64 `json:"sessionId,optional"`
  36. BotId *uint64 `json:"botId,optional"`
  37. BotType *uint8 `json:"botType,optional"`
  38. }
  39. // ChatRecords information response | ChatRecords信息返回体
  40. ChatRecordsInfoResp {
  41. BaseDataInfo
  42. // ChatRecords information | ChatRecords数据
  43. Data ChatRecordsInfo `json:"data"`
  44. }
  45. ChatRecommendReq {
  46. SessionId *uint64 `json:"sessionId"`
  47. }
  48. ChatRecommendResp {
  49. BaseDataInfo
  50. // The API list data | ChatRecords列表数据
  51. Data ChatRecommend `json:"data"`
  52. }
  53. ChatRecommend {
  54. Data []string `json:"data"`
  55. SessionId uint64 `json:"sessionId"`
  56. }
  57. ChatAskReq {
  58. CardId *uint64 `json:"cardId"`
  59. Question *string `json:"question"`
  60. SessionId *int `json:"sessionId"`
  61. }
  62. ChatAskResp {
  63. BaseDataInfo
  64. Data *string `json:"data"`
  65. }
  66. )
  67. @server(
  68. jwt: Auth
  69. group: chatrecords
  70. middleware: Miniprogram
  71. )
  72. service Wechat {
  73. // Create chat records information | 创建ChatRecords
  74. @handler submitApiChat
  75. post /api/chat/create (ChatRecordsInfo)
  76. // Create chat records information | 创建ChatRecords
  77. @handler answerApiChat
  78. post /api/chat/answer (ChatAskReq) returns (ChatAskResp)
  79. // Get chat records list | 获取ChatRecords列表
  80. @handler getApiChatList
  81. post /api/chat/list (ChatRecordsListReq) returns (ChatRecordsListResp)
  82. // Get chat records list | 获取ChatRecords列表
  83. @handler getApiRecommendChat
  84. post /api/chat/recommmend (ChatRecommendReq) returns (ChatRecommendResp)
  85. }
  86. @server(
  87. jwt: Auth
  88. group: chatrecords
  89. middleware: Authority
  90. )
  91. service Wechat {
  92. // Create chat records information | 创建ChatRecords
  93. @handler createChatRecords
  94. post /chat_records/create (ChatRecordsInfo) returns (BaseMsgResp)
  95. // Update chat records information | 更新ChatRecords
  96. @handler updateChatRecords
  97. post /chat_records/update (ChatRecordsInfo) returns (BaseMsgResp)
  98. // Delete chat records information | 删除ChatRecords信息
  99. @handler deleteChatRecords
  100. post /chat_records/delete (IDsReq) returns (BaseMsgResp)
  101. // Get chat records list | 获取ChatRecords列表
  102. @handler getChatRecordsList
  103. post /chat_records/list (ChatRecordsListReq) returns (ChatRecordsListResp)
  104. // Get chat records by ID | 通过ID获取ChatRecords
  105. @handler getChatRecordsById
  106. post /chat_records (IDReq) returns (ChatRecordsInfoResp)
  107. }