- package bus_response
- import "eta/eta_api/utils/llm/eta_llm/eta_llm_http"
- type SearchDocsEtaResponse struct {
- Content string
- Docs []eta_llm_http.SearchDocsResponse
- }
- type AIGCEtaResponse struct {
- Answer string `json:"answer"`
- Docs []string `json:"docs"`
- }
|