response.go 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. package eta_llm_http
  2. import "encoding/json"
  3. type BaseResponse struct {
  4. Ret int `json:"ret"`
  5. Msg string `json:"msg"`
  6. Success bool `json:"success"`
  7. Data json.RawMessage `json:"data"`
  8. }
  9. type SteamResponse struct {
  10. Data ChunkResponse `json:"data"`
  11. }
  12. // ChunkResponse 定义流式响应的结构体
  13. type ChunkResponse struct {
  14. ID string `json:"id"`
  15. Object string `json:"object"`
  16. Model string `json:"model"`
  17. Created int64 `json:"created"`
  18. Status *string `json:"status"`
  19. MessageType int `json:"message_type"`
  20. MessageID *string `json:"message_id"`
  21. IsRef bool `json:"is_ref"`
  22. Docs []string `json:"docs"`
  23. Choices []Choice `json:"choices"`
  24. }
  25. type RagBaseResponse struct {
  26. Data json.RawMessage `json:"data"`
  27. Msg string `json:"msg"`
  28. Code int `json:"code"`
  29. }
  30. // Choice 定义选择的结构体
  31. type Choice struct {
  32. Delta Delta `json:"delta"`
  33. Role string `json:"role"`
  34. }
  35. // Delta 定义增量的结构体
  36. type Delta struct {
  37. Content string `json:"content"`
  38. ToolCalls []ToolCall `json:"tool_calls"`
  39. }
  40. // ToolCall 定义工具调用的结构体
  41. type ToolCall struct {
  42. ID string `json:"id"`
  43. Type string `json:"type"`
  44. Function Function `json:"function"`
  45. }
  46. // Function 定义函数的结构体
  47. type Function struct {
  48. Name string `json:"name"`
  49. Arguments json.RawMessage `json:"arguments"`
  50. }
  51. type SearchDocsResponse struct {
  52. PageContent string `json:"page_content"`
  53. Metadata Metadata `json:"metadata"`
  54. Type string `json:"type"`
  55. Id string `json:"id"`
  56. Score float32 `json:"score"`
  57. }
  58. type Metadata struct {
  59. Source string `json:"source"`
  60. Id string `json:"id"`
  61. }
  62. type UploadDocsResponse struct {
  63. Id string `json:"id"`
  64. FiledFiles []json.RawMessage `json:"filed_files"`
  65. }