collection.go 8.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333
  1. package fastgpt
  2. import (
  3. "encoding/json"
  4. "errors"
  5. "fmt"
  6. "time"
  7. )
  8. type CollectionResp struct {
  9. Code int `json:"code"`
  10. StatusText string `json:"statusText"`
  11. Message string `json:"message"`
  12. Data string `json:"data"`
  13. }
  14. type CreateCollectionReq struct {
  15. DatasetId string `json:"datasetId"`
  16. ParentId string `json:"parentId,optional"`
  17. Name string `json:"name"`
  18. Type string `json:"type"`
  19. Metadata interface{} `json:"metadata,optional"`
  20. }
  21. type CreateTextCollectionReq struct {
  22. DatasetId string `json:"datasetId"`
  23. ParentId string `json:"parentId,optional"`
  24. Name string `json:"name"`
  25. Text string `json:"text"`
  26. Metadata interface{} `json:"metadata,optional"`
  27. TrainingType string `json:"trainingType,optional"`
  28. ChunkSize int `json:"chunkSize,optional"`
  29. ChunkSplitter string `json:"chunkSplitter,optional"`
  30. QaPrompt string `json:"qaPrompt,optional"`
  31. }
  32. type CreateTextCollectionResp struct {
  33. Code int `json:"code"`
  34. StatusText string `json:"statusText"`
  35. Message string `json:"message"`
  36. Data struct {
  37. CollectionID string `json:"collectionId"`
  38. Results struct {
  39. InsertLen int `json:"insertLen"`
  40. OverToken []any `json:"overToken"`
  41. Repeat []any `json:"repeat"`
  42. Error []any `json:"error"`
  43. } `json:"results"`
  44. } `json:"data"`
  45. }
  46. type CreateLinkCollectionReq struct {
  47. DatasetId string `json:"datasetId"`
  48. ParentId string `json:"parentId,optional"`
  49. Name string `json:"name"`
  50. Link string `json:"link"`
  51. Metadata interface{} `json:"metadata,optional"`
  52. TrainingType string `json:"trainingType,optional"`
  53. ChunkSize int `json:"chunkSize,optional"`
  54. ChunkSplitter string `json:"chunkSplitter,optional"`
  55. QaPrompt string `json:"qaPrompt,optional"`
  56. }
  57. type CreateLinkCollectionResp struct {
  58. Code int `json:"code"`
  59. StatusText string `json:"statusText"`
  60. Message string `json:"message"`
  61. Data struct {
  62. CollectionID string `json:"collectionId"`
  63. } `json:"data"`
  64. }
  65. type CreateFileCollectionReq struct {
  66. DatasetId string `json:"datasetId"`
  67. ParentId string `json:"parentId,optional"`
  68. Metadata interface{} `json:"metadata,optional"`
  69. TrainingType string `json:"trainingType,optional"`
  70. ChunkSize int `json:"chunkSize,optional"`
  71. ChunkSplitter string `json:"chunkSplitter,optional"`
  72. QaPrompt string `json:"qaPrompt,optional"`
  73. }
  74. type CreateFileCollectionResp struct {
  75. Code int `json:"code"`
  76. StatusText string `json:"statusText,optional"`
  77. Message string `json:"message,optional"`
  78. Data struct {
  79. CollectionID string `json:"collectionId,optional"`
  80. Results struct {
  81. InsertLen int `json:"insertLen"`
  82. OverToken []any `json:"overToken"`
  83. Repeat []any `json:"repeat"`
  84. Error []any `json:"error"`
  85. } `json:"results,optional"`
  86. } `json:"data,optional"`
  87. }
  88. type GetCollectionListReq struct {
  89. PageNum int `json:"pageNum,optional"`
  90. PageSize int `json:"pageSize,optional"`
  91. DatasetId string `json:"datasetId,optional"`
  92. ParentId string `json:"parentId,optional"`
  93. SearchText string `json:"searchText,optional"`
  94. }
  95. type CollectionInfo struct {
  96. ID string `json:"_id"`
  97. ParentID interface{} `json:"parentId"`
  98. TeamID string `json:"teamId"`
  99. TmbID string `json:"tmbId"`
  100. DatasetID struct {
  101. ID string `json:"_id"`
  102. ParentID interface{} `json:"parentId"`
  103. TeamID string `json:"teamId"`
  104. TmbID string `json:"tmbId"`
  105. Type string `json:"type"`
  106. Status string `json:"status"`
  107. Avatar string `json:"avatar"`
  108. Name string `json:"name"`
  109. VectorModel string `json:"vectorModel"`
  110. AgentModel string `json:"agentModel"`
  111. Intro string `json:"intro"`
  112. Permission string `json:"permission"`
  113. UpdateTime time.Time `json:"updateTime"`
  114. } `json:"datasetId"`
  115. Type string `json:"type"`
  116. Name string `json:"name"`
  117. TrainingType string `json:"trainingType"`
  118. ChunkSize int `json:"chunkSize"`
  119. ChunkSplitter string `json:"chunkSplitter"`
  120. QaPrompt string `json:"qaPrompt"`
  121. RawTextLength int `json:"rawTextLength"`
  122. HashRawText string `json:"hashRawText"`
  123. CreateTime time.Time `json:"createTime"`
  124. UpdateTime time.Time `json:"updateTime"`
  125. CanWrite bool `json:"canWrite"`
  126. SourceName string `json:"sourceName"`
  127. }
  128. type CollectionListResp struct {
  129. Code int `json:"code"`
  130. StatusText string `json:"statusText"`
  131. Message string `json:"message"`
  132. Data struct {
  133. PageNum int `json:"pageNum"`
  134. PageSize int `json:"pageSize"`
  135. Data []struct {
  136. ID string `json:"_id"`
  137. ParentID string `json:"parentId"`
  138. TmbID string `json:"tmbId"`
  139. Type string `json:"type"`
  140. Name string `json:"name"`
  141. UpdateTime time.Time `json:"updateTime"`
  142. DataAmount int `json:"dataAmount"`
  143. TrainingAmount int `json:"trainingAmount"`
  144. CanWrite bool `json:"canWrite"`
  145. RawLink string `json:"rawLink,omitempty"`
  146. } `json:"data"`
  147. Total int `json:"total"`
  148. } `json:"data"`
  149. }
  150. type CollectionDetailResp struct {
  151. Code int `json:"code"`
  152. StatusText string `json:"statusText"`
  153. Message string `json:"message"`
  154. Data CollectionInfo `json:"data"`
  155. }
  156. type UpdateCollectionReq struct {
  157. ID string `json:"id"`
  158. ParentId string `json:"parentId"`
  159. Name string `json:"name"`
  160. }
  161. // GetCollectionDetail 获取合集详情
  162. func GetCollectionDetail(id string) (collection *CollectionDetailResp, err error) {
  163. resp, err := NewResty().
  164. R().
  165. SetResult(&collection).
  166. SetQueryParam("id", id).
  167. Get("core/dataset/collection/detail")
  168. if err != nil {
  169. return nil, err
  170. }
  171. if resp.IsError() {
  172. return nil, errors.New(resp.String())
  173. }
  174. return
  175. }
  176. // GetCollectionList 获取合集列表
  177. func GetCollectionList(params *GetCollectionListReq) (collectionList *CollectionListResp, err error) {
  178. resp, err := NewResty().
  179. R().
  180. SetResult(&collectionList).
  181. SetBody(params).
  182. Post("core/dataset/collection/list")
  183. if err != nil {
  184. return nil, err
  185. }
  186. if resp.IsError() {
  187. return nil, errors.New(resp.String())
  188. }
  189. return
  190. }
  191. // CreateEmptyCollection 创建空合集
  192. func CreateEmptyCollection(data *CreateCollectionReq) (collection *CollectionResp, err error) {
  193. resp, err := NewResty().
  194. R().
  195. SetResult(&collection).
  196. SetBody(data).
  197. Post("core/dataset/collection/create")
  198. if err != nil {
  199. return nil, err
  200. }
  201. if resp.IsError() {
  202. return nil, errors.New(resp.String())
  203. }
  204. return
  205. }
  206. // CreateTextCollection 创建文本合集
  207. func CreateTextCollection(data *CreateTextCollectionReq) (collection *CreateTextCollectionResp, err error) {
  208. resp, err := NewResty().
  209. R().
  210. SetResult(&collection).
  211. SetBody(*data).
  212. Post("core/dataset/collection/create/text")
  213. if err != nil {
  214. fmt.Printf(err.Error())
  215. return nil, err
  216. }
  217. if resp.IsError() {
  218. return nil, errors.New(resp.String())
  219. }
  220. return
  221. }
  222. // CreateLinkCollection 创建链接合集
  223. func CreateLinkCollection(data *CreateLinkCollectionReq) (collection *CreateLinkCollectionResp, err error) {
  224. resp, err := NewResty().
  225. R().
  226. SetResult(&collection).
  227. SetBody(*data).
  228. Post("core/dataset/collection/create/link")
  229. if err != nil {
  230. fmt.Printf(err.Error())
  231. return nil, err
  232. }
  233. if resp.IsError() {
  234. return nil, errors.New(resp.String())
  235. }
  236. return
  237. }
  238. // CreateFileCollection 创建文件合集
  239. func CreateFileCollection(data *map[string]string, filePath string) (collection *CreateFileCollectionResp, err error) {
  240. dataString, _ := json.Marshal(*data)
  241. resp, err := NewResty().
  242. R().
  243. SetResult(&collection).
  244. SetFormData(map[string]string{"data": string(dataString)}).
  245. SetFile("file", filePath).
  246. Post("core/dataset/collection/create/localFile")
  247. fmt.Printf("%v, %v", err, resp.String())
  248. if err != nil {
  249. return nil, err
  250. }
  251. if resp.IsError() {
  252. return nil, errors.New(resp.String())
  253. }
  254. return
  255. }
  256. // UpdateCollection 修改合集
  257. func UpdateCollection(data *UpdateCollectionReq) (collection *CollectionResp, err error) {
  258. resp, err := NewResty().
  259. R().
  260. SetResult(&collection).
  261. SetBody(*data).
  262. Put("core/dataset/collection/update")
  263. if err != nil {
  264. return nil, err
  265. }
  266. if resp.IsError() {
  267. return nil, errors.New(resp.String())
  268. }
  269. return
  270. }
  271. // DeleteCollection 删除合集
  272. func DeleteCollection(id string) (collection *CollectionResp, err error) {
  273. resp, err := NewResty().
  274. R().
  275. SetResult(&collection).
  276. SetQueryParam("id", id).
  277. Delete("core/dataset/collection/delete")
  278. if err != nil {
  279. return nil, err
  280. }
  281. if resp.IsError() {
  282. return nil, errors.New(resp.String())
  283. }
  284. return
  285. }