eta_response.go 413 B

123456789101112131415161718
  1. package bus_response
  2. import "eta/eta_api/utils/llm/eta_llm/eta_llm_http"
  3. type SearchDocsEtaResponse struct {
  4. Content string
  5. Docs []eta_llm_http.SearchDocsResponse
  6. }
  7. type AIGCEtaResponse struct {
  8. Answer string `json:"answer"`
  9. Docs []string `json:"docs"`
  10. }
  11. type FileChatBaseResponse struct {
  12. Data AIGCEtaResponse `json:"data"`
  13. Msg string `json:"msg"`
  14. Code int `json:"code"`
  15. }