response.go 1.9 KB

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