use-create-dataset.ts 6.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224
  1. import groupBy from 'lodash-es/groupBy'
  2. import type { MutationOptions } from '@tanstack/react-query'
  3. import { useMutation } from '@tanstack/react-query'
  4. import { createDocument, createFirstDocument, fetchDefaultProcessRule, fetchFileIndexingEstimate } from '../datasets'
  5. import { type IndexingType } from '@/app/components/datasets/create/step-two'
  6. import type { ChunkingMode, CrawlOptions, CrawlResultItem, CreateDocumentReq, CustomFile, DataSourceType, FileIndexingEstimateResponse, IndexingEstimateParams, NotionInfo, ProcessRule, ProcessRuleResponse, createDocumentResponse } from '@/models/datasets'
  7. import type { DataSourceProvider, NotionPage } from '@/models/common'
  8. export const getNotionInfo = (
  9. notionPages: NotionPage[],
  10. ) => {
  11. const workspacesMap = groupBy(notionPages, 'workspace_id')
  12. const workspaces = Object.keys(workspacesMap).map((workspaceId) => {
  13. return {
  14. workspaceId,
  15. pages: workspacesMap[workspaceId],
  16. }
  17. })
  18. return workspaces.map((workspace) => {
  19. return {
  20. workspace_id: workspace.workspaceId,
  21. pages: workspace.pages.map((page) => {
  22. const { page_id, page_name, page_icon, type } = page
  23. return {
  24. page_id,
  25. page_name,
  26. page_icon,
  27. type,
  28. }
  29. }),
  30. }
  31. }) as NotionInfo[]
  32. }
  33. export const getWebsiteInfo = (
  34. opts: {
  35. websiteCrawlProvider: DataSourceProvider
  36. websiteCrawlJobId: string
  37. websitePages: CrawlResultItem[]
  38. crawlOptions?: CrawlOptions
  39. },
  40. ) => {
  41. const { websiteCrawlProvider, websiteCrawlJobId, websitePages, crawlOptions } = opts
  42. return {
  43. provider: websiteCrawlProvider,
  44. job_id: websiteCrawlJobId,
  45. urls: websitePages.map(page => page.source_url),
  46. only_main_content: crawlOptions?.only_main_content,
  47. }
  48. }
  49. type GetFileIndexingEstimateParamsOptionBase = {
  50. docForm: ChunkingMode
  51. docLanguage: string
  52. indexingTechnique: IndexingType
  53. processRule: ProcessRule
  54. dataset_id: string
  55. }
  56. type GetFileIndexingEstimateParamsOptionFile = GetFileIndexingEstimateParamsOptionBase & {
  57. dataSourceType: DataSourceType.FILE
  58. files: CustomFile[]
  59. }
  60. const getFileIndexingEstimateParamsForFile = ({
  61. docForm,
  62. docLanguage,
  63. dataSourceType,
  64. files,
  65. indexingTechnique,
  66. processRule,
  67. dataset_id,
  68. }: GetFileIndexingEstimateParamsOptionFile): IndexingEstimateParams => {
  69. return {
  70. info_list: {
  71. data_source_type: dataSourceType,
  72. file_info_list: {
  73. file_ids: files.map(file => file.id) as string[],
  74. },
  75. },
  76. indexing_technique: indexingTechnique,
  77. process_rule: processRule,
  78. doc_form: docForm,
  79. doc_language: docLanguage,
  80. dataset_id,
  81. }
  82. }
  83. export const useFetchFileIndexingEstimateForFile = (
  84. options: GetFileIndexingEstimateParamsOptionFile,
  85. mutationOptions: MutationOptions<FileIndexingEstimateResponse> = {},
  86. ) => {
  87. return useMutation({
  88. mutationFn: async () => {
  89. return fetchFileIndexingEstimate(getFileIndexingEstimateParamsForFile(options))
  90. },
  91. ...mutationOptions,
  92. })
  93. }
  94. type GetFileIndexingEstimateParamsOptionNotion = GetFileIndexingEstimateParamsOptionBase & {
  95. dataSourceType: DataSourceType.NOTION
  96. notionPages: NotionPage[]
  97. }
  98. const getFileIndexingEstimateParamsForNotion = ({
  99. docForm,
  100. docLanguage,
  101. dataSourceType,
  102. notionPages,
  103. indexingTechnique,
  104. processRule,
  105. dataset_id,
  106. }: GetFileIndexingEstimateParamsOptionNotion): IndexingEstimateParams => {
  107. return {
  108. info_list: {
  109. data_source_type: dataSourceType,
  110. notion_info_list: getNotionInfo(notionPages),
  111. },
  112. indexing_technique: indexingTechnique,
  113. process_rule: processRule,
  114. doc_form: docForm,
  115. doc_language: docLanguage,
  116. dataset_id,
  117. }
  118. }
  119. export const useFetchFileIndexingEstimateForNotion = (
  120. options: GetFileIndexingEstimateParamsOptionNotion,
  121. mutationOptions: MutationOptions<FileIndexingEstimateResponse> = {},
  122. ) => {
  123. return useMutation({
  124. mutationFn: async () => {
  125. return fetchFileIndexingEstimate(getFileIndexingEstimateParamsForNotion(options))
  126. },
  127. ...mutationOptions,
  128. })
  129. }
  130. type GetFileIndexingEstimateParamsOptionWeb = GetFileIndexingEstimateParamsOptionBase & {
  131. dataSourceType: DataSourceType.WEB
  132. websitePages: CrawlResultItem[]
  133. crawlOptions?: CrawlOptions
  134. websiteCrawlProvider: DataSourceProvider
  135. websiteCrawlJobId: string
  136. }
  137. const getFileIndexingEstimateParamsForWeb = ({
  138. docForm,
  139. docLanguage,
  140. dataSourceType,
  141. websitePages,
  142. crawlOptions,
  143. websiteCrawlProvider,
  144. websiteCrawlJobId,
  145. indexingTechnique,
  146. processRule,
  147. dataset_id,
  148. }: GetFileIndexingEstimateParamsOptionWeb): IndexingEstimateParams => {
  149. return {
  150. info_list: {
  151. data_source_type: dataSourceType,
  152. website_info_list: getWebsiteInfo({
  153. websiteCrawlProvider,
  154. websiteCrawlJobId,
  155. websitePages,
  156. crawlOptions,
  157. }),
  158. },
  159. indexing_technique: indexingTechnique,
  160. process_rule: processRule,
  161. doc_form: docForm,
  162. doc_language: docLanguage,
  163. dataset_id,
  164. }
  165. }
  166. export const useFetchFileIndexingEstimateForWeb = (
  167. options: GetFileIndexingEstimateParamsOptionWeb,
  168. mutationOptions: MutationOptions<FileIndexingEstimateResponse> = {},
  169. ) => {
  170. return useMutation({
  171. mutationFn: async () => {
  172. return fetchFileIndexingEstimate(getFileIndexingEstimateParamsForWeb(options))
  173. },
  174. ...mutationOptions,
  175. })
  176. }
  177. export const useCreateFirstDocument = (
  178. mutationOptions: MutationOptions<createDocumentResponse, Error, CreateDocumentReq> = {},
  179. ) => {
  180. return useMutation({
  181. mutationFn: async (createDocumentReq: CreateDocumentReq,
  182. ) => {
  183. return createFirstDocument({ body: createDocumentReq })
  184. },
  185. ...mutationOptions,
  186. })
  187. }
  188. export const useCreateDocument = (
  189. datasetId: string,
  190. mutationOptions: MutationOptions<createDocumentResponse, Error, CreateDocumentReq> = {},
  191. ) => {
  192. return useMutation({
  193. mutationFn: async (req: CreateDocumentReq) => {
  194. return createDocument({ datasetId, body: req })
  195. },
  196. ...mutationOptions,
  197. })
  198. }
  199. export const useFetchDefaultProcessRule = (
  200. mutationOptions: MutationOptions<ProcessRuleResponse, Error, string> = {},
  201. ) => {
  202. return useMutation({
  203. mutationFn: async (url: string) => {
  204. return fetchDefaultProcessRule({ url })
  205. },
  206. ...mutationOptions,
  207. })
  208. }