agent.api 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  1. import "../base.api"
  2. type (
  3. // The data of agent information | Agent信息
  4. AgentInfo {
  5. BaseIDInfo
  6. // name | 角色名称
  7. Name *string `json:"name,optional"`
  8. // role | 角色设定
  9. Role *string `json:"role,optional"`
  10. // status | 状态 1-正常 2-禁用
  11. Status *int `json:"status,optional"`
  12. // background | 背景介绍
  13. Background *string `json:"background,optional"`
  14. // examples | 对话案例
  15. Examples *string `json:"examples,optional"`
  16. }
  17. // The response data of agent list | Agent列表数据
  18. AgentListResp {
  19. BaseDataInfo
  20. // Agent list data | Agent列表数据
  21. Data AgentListInfo `json:"data"`
  22. }
  23. // Agent list data | Agent列表数据
  24. AgentListInfo {
  25. BaseListInfo
  26. // The API list data | Agent列表数据
  27. Data []AgentInfo `json:"data"`
  28. }
  29. // Get agent list request params | Agent列表请求参数
  30. AgentListReq {
  31. PageInfo
  32. // name | 角色名称
  33. Name *string `json:"name,optional"`
  34. // role | 角色设定
  35. Role *string `json:"role,optional"`
  36. // background | 背景介绍
  37. Background *string `json:"background,optional"`
  38. }
  39. // Agent information response | Agent信息返回体
  40. AgentInfoResp {
  41. BaseDataInfo
  42. // Agent information | Agent数据
  43. Data AgentInfo `json:"data"`
  44. }
  45. )
  46. @server(
  47. jwt: Auth
  48. group: agent
  49. middleware: Authority
  50. )
  51. service Wechat {
  52. // Create agent information | 创建Agent
  53. @handler createAgent
  54. post /agent/create (AgentInfo) returns (BaseMsgResp)
  55. // Update agent information | 更新Agent
  56. @handler updateAgent
  57. post /agent/update (AgentInfo) returns (BaseMsgResp)
  58. // Delete agent information | 删除Agent信息
  59. @handler deleteAgent
  60. post /agent/delete (IDsReq) returns (BaseMsgResp)
  61. // Get agent list | 获取Agent列表
  62. @handler getAgentList
  63. post /agent/list (AgentListReq) returns (AgentListResp)
  64. // Get agent by ID | 通过ID获取Agent
  65. @handler getAgentById
  66. post /agent (IDReq) returns (AgentInfoResp)
  67. }