2023-05-15 08:51:32 +08:00
|
|
|
import type { Fetcher } from 'swr'
|
|
|
|
import qs from 'qs'
|
2023-06-16 21:47:51 +08:00
|
|
|
import { del, get, patch, post, put } from './base'
|
2023-07-28 20:47:15 +08:00
|
|
|
import type {
|
|
|
|
CreateDocumentReq,
|
|
|
|
DataSet,
|
|
|
|
DataSetListResponse,
|
|
|
|
DocumentDetailResponse,
|
|
|
|
DocumentListResponse,
|
|
|
|
FileIndexingEstimateResponse,
|
|
|
|
HitTestingRecordsResponse,
|
|
|
|
HitTestingResponse,
|
2023-10-07 17:42:16 +08:00
|
|
|
IndexingEstimateParams,
|
2023-07-28 20:47:15 +08:00
|
|
|
IndexingEstimateResponse,
|
|
|
|
IndexingStatusBatchResponse,
|
|
|
|
IndexingStatusResponse,
|
|
|
|
ProcessRuleResponse,
|
|
|
|
RelatedAppResponse,
|
|
|
|
SegmentDetailModel,
|
|
|
|
SegmentUpdator,
|
|
|
|
SegmentsQuery,
|
|
|
|
SegmentsResponse,
|
|
|
|
createDocumentResponse,
|
|
|
|
} from '@/models/datasets'
|
2023-06-16 21:47:51 +08:00
|
|
|
import type { CommonResponse, DataSourceNotionWorkspace } from '@/models/common'
|
2023-09-27 16:06:49 +08:00
|
|
|
import type {
|
|
|
|
ApikeysListResponse,
|
|
|
|
CreateApiKeyResponse,
|
|
|
|
} from '@/models/app'
|
2023-11-18 11:53:35 +08:00
|
|
|
import type { RetrievalConfig } from '@/types/app'
|
2023-05-15 08:51:32 +08:00
|
|
|
|
|
|
|
// apis for documents in a dataset
|
|
|
|
|
|
|
|
type CommonDocReq = {
|
|
|
|
datasetId: string
|
|
|
|
documentId: string
|
|
|
|
}
|
|
|
|
|
2023-06-16 21:47:51 +08:00
|
|
|
type BatchReq = {
|
|
|
|
datasetId: string
|
|
|
|
batchId: string
|
|
|
|
}
|
|
|
|
|
2023-05-15 08:51:32 +08:00
|
|
|
export type SortType = 'created_at' | 'hit_count' | '-created_at' | '-hit_count'
|
|
|
|
|
|
|
|
export type MetadataType = 'all' | 'only' | 'without'
|
|
|
|
|
2023-09-27 10:31:46 +08:00
|
|
|
export const fetchDatasetDetail: Fetcher<DataSet, string> = (datasetId: string) => {
|
2023-09-15 20:54:20 +08:00
|
|
|
return get<DataSet>(`/datasets/${datasetId}`)
|
2023-05-15 08:51:32 +08:00
|
|
|
}
|
|
|
|
|
2023-11-18 11:53:35 +08:00
|
|
|
export const updateDatasetSetting: Fetcher<DataSet, { datasetId: string; body: Partial<Pick<DataSet, 'name' | 'description' | 'permission' | 'indexing_technique' | 'retrieval_model'>> }> = ({ datasetId, body }) => {
|
2023-09-15 20:54:20 +08:00
|
|
|
return patch<DataSet>(`/datasets/${datasetId}`, { body })
|
2023-05-15 08:51:32 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
export const fetchDatasetRelatedApps: Fetcher<RelatedAppResponse, string> = (datasetId: string) => {
|
2023-09-15 20:54:20 +08:00
|
|
|
return get<RelatedAppResponse>(`/datasets/${datasetId}/related-apps`)
|
2023-05-15 08:51:32 +08:00
|
|
|
}
|
|
|
|
|
2023-06-16 21:47:51 +08:00
|
|
|
export const fetchDatasets: Fetcher<DataSetListResponse, { url: string; params: { page: number; ids?: string[]; limit?: number } }> = ({ url, params }) => {
|
2023-05-15 08:51:32 +08:00
|
|
|
const urlParams = qs.stringify(params, { indices: false })
|
2023-09-15 20:54:20 +08:00
|
|
|
return get<DataSetListResponse>(`${url}?${urlParams}`)
|
2023-05-15 08:51:32 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
export const createEmptyDataset: Fetcher<DataSet, { name: string }> = ({ name }) => {
|
2023-09-15 20:54:20 +08:00
|
|
|
return post<DataSet>('/datasets', { body: { name } })
|
2023-05-15 08:51:32 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
export const deleteDataset: Fetcher<DataSet, string> = (datasetID) => {
|
2023-09-15 20:54:20 +08:00
|
|
|
return del<DataSet>(`/datasets/${datasetID}`)
|
2023-05-15 08:51:32 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
export const fetchDefaultProcessRule: Fetcher<ProcessRuleResponse, { url: string }> = ({ url }) => {
|
2023-09-15 20:54:20 +08:00
|
|
|
return get<ProcessRuleResponse>(url)
|
2023-05-15 08:51:32 +08:00
|
|
|
}
|
|
|
|
export const fetchProcessRule: Fetcher<ProcessRuleResponse, { params: { documentId: string } }> = ({ params: { documentId } }) => {
|
2023-09-15 20:54:20 +08:00
|
|
|
return get<ProcessRuleResponse>('/datasets/process-rule', { params: { document_id: documentId } })
|
2023-05-15 08:51:32 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
export const fetchDocuments: Fetcher<DocumentListResponse, { datasetId: string; params: { keyword: string; page: number; limit: number; sort?: SortType } }> = ({ datasetId, params }) => {
|
2023-09-15 20:54:20 +08:00
|
|
|
return get<DocumentListResponse>(`/datasets/${datasetId}/documents`, { params })
|
2023-05-15 08:51:32 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
export const createFirstDocument: Fetcher<createDocumentResponse, { body: CreateDocumentReq }> = ({ body }) => {
|
2023-09-15 20:54:20 +08:00
|
|
|
return post<createDocumentResponse>('/datasets/init', { body })
|
2023-05-15 08:51:32 +08:00
|
|
|
}
|
|
|
|
|
2023-06-16 21:47:51 +08:00
|
|
|
export const createDocument: Fetcher<createDocumentResponse, { datasetId: string; body: CreateDocumentReq }> = ({ datasetId, body }) => {
|
2023-09-15 20:54:20 +08:00
|
|
|
return post<createDocumentResponse>(`/datasets/${datasetId}/documents`, { body })
|
2023-05-15 08:51:32 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
export const fetchIndexingEstimate: Fetcher<IndexingEstimateResponse, CommonDocReq> = ({ datasetId, documentId }) => {
|
2023-09-15 20:54:20 +08:00
|
|
|
return get<IndexingEstimateResponse>(`/datasets/${datasetId}/documents/${documentId}/indexing-estimate`, {})
|
2023-05-15 08:51:32 +08:00
|
|
|
}
|
2023-06-16 21:47:51 +08:00
|
|
|
export const fetchIndexingEstimateBatch: Fetcher<IndexingEstimateResponse, BatchReq> = ({ datasetId, batchId }) => {
|
2023-09-15 20:54:20 +08:00
|
|
|
return get<IndexingEstimateResponse>(`/datasets/${datasetId}/batch/${batchId}/indexing-estimate`, {})
|
2023-06-16 21:47:51 +08:00
|
|
|
}
|
2023-05-15 08:51:32 +08:00
|
|
|
|
|
|
|
export const fetchIndexingStatus: Fetcher<IndexingStatusResponse, CommonDocReq> = ({ datasetId, documentId }) => {
|
2023-09-15 20:54:20 +08:00
|
|
|
return get<IndexingStatusResponse>(`/datasets/${datasetId}/documents/${documentId}/indexing-status`, {})
|
2023-05-15 08:51:32 +08:00
|
|
|
}
|
|
|
|
|
2023-06-16 21:47:51 +08:00
|
|
|
export const fetchIndexingStatusBatch: Fetcher<IndexingStatusBatchResponse, BatchReq> = ({ datasetId, batchId }) => {
|
2023-09-15 20:54:20 +08:00
|
|
|
return get<IndexingStatusBatchResponse>(`/datasets/${datasetId}/batch/${batchId}/indexing-status`, {})
|
2023-06-16 21:47:51 +08:00
|
|
|
}
|
|
|
|
|
2023-05-15 08:51:32 +08:00
|
|
|
export const fetchDocumentDetail: Fetcher<DocumentDetailResponse, CommonDocReq & { params: { metadata?: MetadataType } }> = ({ datasetId, documentId, params }) => {
|
2023-09-15 20:54:20 +08:00
|
|
|
return get<DocumentDetailResponse>(`/datasets/${datasetId}/documents/${documentId}`, { params })
|
2023-05-15 08:51:32 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
export const pauseDocIndexing: Fetcher<CommonResponse, CommonDocReq> = ({ datasetId, documentId }) => {
|
2023-09-15 20:54:20 +08:00
|
|
|
return patch<CommonResponse>(`/datasets/${datasetId}/documents/${documentId}/processing/pause`)
|
2023-05-15 08:51:32 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
export const resumeDocIndexing: Fetcher<CommonResponse, CommonDocReq> = ({ datasetId, documentId }) => {
|
2023-09-15 20:54:20 +08:00
|
|
|
return patch<CommonResponse>(`/datasets/${datasetId}/documents/${documentId}/processing/resume`)
|
2023-05-15 08:51:32 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
export const deleteDocument: Fetcher<CommonResponse, CommonDocReq> = ({ datasetId, documentId }) => {
|
2023-09-15 20:54:20 +08:00
|
|
|
return del<CommonResponse>(`/datasets/${datasetId}/documents/${documentId}`)
|
2023-05-15 08:51:32 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
export const archiveDocument: Fetcher<CommonResponse, CommonDocReq> = ({ datasetId, documentId }) => {
|
2023-09-15 20:54:20 +08:00
|
|
|
return patch<CommonResponse>(`/datasets/${datasetId}/documents/${documentId}/status/archive`)
|
2023-05-15 08:51:32 +08:00
|
|
|
}
|
|
|
|
|
2023-08-18 17:37:31 +08:00
|
|
|
export const unArchiveDocument: Fetcher<CommonResponse, CommonDocReq> = ({ datasetId, documentId }) => {
|
2023-09-15 20:54:20 +08:00
|
|
|
return patch<CommonResponse>(`/datasets/${datasetId}/documents/${documentId}/status/un_archive`)
|
2023-08-18 17:37:31 +08:00
|
|
|
}
|
|
|
|
|
2023-05-15 08:51:32 +08:00
|
|
|
export const enableDocument: Fetcher<CommonResponse, CommonDocReq> = ({ datasetId, documentId }) => {
|
2023-09-15 20:54:20 +08:00
|
|
|
return patch<CommonResponse>(`/datasets/${datasetId}/documents/${documentId}/status/enable`)
|
2023-05-15 08:51:32 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
export const disableDocument: Fetcher<CommonResponse, CommonDocReq> = ({ datasetId, documentId }) => {
|
2023-09-15 20:54:20 +08:00
|
|
|
return patch<CommonResponse>(`/datasets/${datasetId}/documents/${documentId}/status/disable`)
|
2023-05-15 08:51:32 +08:00
|
|
|
}
|
|
|
|
|
2023-06-16 21:47:51 +08:00
|
|
|
export const syncDocument: Fetcher<CommonResponse, CommonDocReq> = ({ datasetId, documentId }) => {
|
2023-09-15 20:54:20 +08:00
|
|
|
return get<CommonResponse>(`/datasets/${datasetId}/documents/${documentId}/notion/sync`)
|
2023-06-16 21:47:51 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
export const preImportNotionPages: Fetcher<{ notion_info: DataSourceNotionWorkspace[] }, { url: string; datasetId?: string }> = ({ url, datasetId }) => {
|
2023-09-15 20:54:20 +08:00
|
|
|
return get<{ notion_info: DataSourceNotionWorkspace[] }>(url, { params: { dataset_id: datasetId } })
|
2023-06-16 21:47:51 +08:00
|
|
|
}
|
|
|
|
|
2023-05-15 08:51:32 +08:00
|
|
|
export const modifyDocMetadata: Fetcher<CommonResponse, CommonDocReq & { body: { doc_type: string; doc_metadata: Record<string, any> } }> = ({ datasetId, documentId, body }) => {
|
2023-09-15 20:54:20 +08:00
|
|
|
return put<CommonResponse>(`/datasets/${datasetId}/documents/${documentId}/metadata`, { body })
|
2023-05-15 08:51:32 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
// apis for segments in a document
|
|
|
|
|
|
|
|
export const fetchSegments: Fetcher<SegmentsResponse, CommonDocReq & { params: SegmentsQuery }> = ({ datasetId, documentId, params }) => {
|
2023-09-15 20:54:20 +08:00
|
|
|
return get<SegmentsResponse>(`/datasets/${datasetId}/documents/${documentId}/segments`, { params })
|
2023-05-15 08:51:32 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
export const enableSegment: Fetcher<CommonResponse, { datasetId: string; segmentId: string }> = ({ datasetId, segmentId }) => {
|
2023-09-15 20:54:20 +08:00
|
|
|
return patch<CommonResponse>(`/datasets/${datasetId}/segments/${segmentId}/enable`)
|
2023-05-15 08:51:32 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
export const disableSegment: Fetcher<CommonResponse, { datasetId: string; segmentId: string }> = ({ datasetId, segmentId }) => {
|
2023-09-15 20:54:20 +08:00
|
|
|
return patch<CommonResponse>(`/datasets/${datasetId}/segments/${segmentId}/disable`)
|
2023-05-15 08:51:32 +08:00
|
|
|
}
|
|
|
|
|
2023-07-28 20:47:15 +08:00
|
|
|
export const updateSegment: Fetcher<{ data: SegmentDetailModel; doc_form: string }, { datasetId: string; documentId: string; segmentId: string; body: SegmentUpdator }> = ({ datasetId, documentId, segmentId, body }) => {
|
2023-09-15 20:54:20 +08:00
|
|
|
return patch<{ data: SegmentDetailModel; doc_form: string }>(`/datasets/${datasetId}/documents/${documentId}/segments/${segmentId}`, { body })
|
2023-07-28 20:47:15 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
export const addSegment: Fetcher<{ data: SegmentDetailModel; doc_form: string }, { datasetId: string; documentId: string; body: SegmentUpdator }> = ({ datasetId, documentId, body }) => {
|
2023-09-15 20:54:20 +08:00
|
|
|
return post<{ data: SegmentDetailModel; doc_form: string }>(`/datasets/${datasetId}/documents/${documentId}/segment`, { body })
|
2023-08-18 17:37:31 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
export const deleteSegment: Fetcher<CommonResponse, { datasetId: string; documentId: string; segmentId: string }> = ({ datasetId, documentId, segmentId }) => {
|
2023-09-15 20:54:20 +08:00
|
|
|
return del<CommonResponse>(`/datasets/${datasetId}/documents/${documentId}/segments/${segmentId}`)
|
2023-08-18 17:37:31 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
export const segmentBatchImport: Fetcher<{ job_id: string; job_status: string }, { url: string; body: FormData }> = ({ url, body }) => {
|
2023-09-15 20:54:20 +08:00
|
|
|
return post<{ job_id: string; job_status: string }>(url, { body }, { bodyStringify: false, deleteContentType: true })
|
2023-08-18 17:37:31 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
export const checkSegmentBatchImportProgress: Fetcher<{ job_id: string; job_status: string }, { jobID: string }> = ({ jobID }) => {
|
2023-09-15 20:54:20 +08:00
|
|
|
return get<{ job_id: string; job_status: string }>(`/datasets/batch_import_status/${jobID}`)
|
2023-07-28 20:47:15 +08:00
|
|
|
}
|
|
|
|
|
2023-05-15 08:51:32 +08:00
|
|
|
// hit testing
|
2023-11-18 11:53:35 +08:00
|
|
|
export const hitTesting: Fetcher<HitTestingResponse, { datasetId: string; queryText: string; retrieval_model: RetrievalConfig }> = ({ datasetId, queryText, retrieval_model }) => {
|
|
|
|
return post<HitTestingResponse>(`/datasets/${datasetId}/hit-testing`, { body: { query: queryText, retrieval_model } })
|
2023-05-15 08:51:32 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
export const fetchTestingRecords: Fetcher<HitTestingRecordsResponse, { datasetId: string; params: { page: number; limit: number } }> = ({ datasetId, params }) => {
|
2023-09-15 20:54:20 +08:00
|
|
|
return get<HitTestingRecordsResponse>(`/datasets/${datasetId}/queries`, { params })
|
2023-05-15 08:51:32 +08:00
|
|
|
}
|
|
|
|
|
2023-10-07 17:42:16 +08:00
|
|
|
export const fetchFileIndexingEstimate: Fetcher<FileIndexingEstimateResponse, IndexingEstimateParams> = (body: IndexingEstimateParams) => {
|
2023-09-15 20:54:20 +08:00
|
|
|
return post<FileIndexingEstimateResponse>('/datasets/indexing-estimate', { body })
|
2023-06-16 21:47:51 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
export const fetchNotionPagePreview: Fetcher<{ content: string }, { workspaceID: string; pageID: string; pageType: string }> = ({ workspaceID, pageID, pageType }) => {
|
2023-09-15 20:54:20 +08:00
|
|
|
return get<{ content: string }>(`notion/workspaces/${workspaceID}/pages/${pageID}/${pageType}/preview`)
|
2023-05-15 08:51:32 +08:00
|
|
|
}
|
2023-09-27 16:06:49 +08:00
|
|
|
|
|
|
|
export const fetchApiKeysList: Fetcher<ApikeysListResponse, { url: string; params: Record<string, any> }> = ({ url, params }) => {
|
|
|
|
return get<ApikeysListResponse>(url, params)
|
|
|
|
}
|
|
|
|
|
|
|
|
export const delApikey: Fetcher<CommonResponse, { url: string; params: Record<string, any> }> = ({ url, params }) => {
|
|
|
|
return del<CommonResponse>(url, params)
|
|
|
|
}
|
|
|
|
|
|
|
|
export const createApikey: Fetcher<CreateApiKeyResponse, { url: string; body: Record<string, any> }> = ({ url, body }) => {
|
|
|
|
return post<CreateApiKeyResponse>(url, body)
|
|
|
|
}
|
|
|
|
|
|
|
|
export const fetchDatasetApiBaseUrl: Fetcher<{ api_base_url: string }, string> = (url) => {
|
|
|
|
return get<{ api_base_url: string }>(url)
|
|
|
|
}
|
2023-12-18 23:28:25 +08:00
|
|
|
|
|
|
|
type FileTypesRes = {
|
|
|
|
allowed_extensions: string[]
|
|
|
|
}
|
|
|
|
|
|
|
|
export const fetchSupportFileTypes: Fetcher<FileTypesRes, { url: string }> = ({ url }) => {
|
|
|
|
return get<FileTypesRes>(url)
|
|
|
|
}
|