import type { Fetcher } from 'swr' import { del, download, get, patch, post, put, upload } from './base' import type { AccountIntegrate, ApiBasedExtension, CodeBasedExtension, CommonResponse, DataSourceNotion, FileUploadConfigResponse, ICurrentWorkspace, IWorkspace, InitValidateStatusResponse, InvitationResponse, LangGeniusVersionResponse, Member, ModerateResponse, OauthResponse, PluginProvider, Provider, ProviderAnthropicToken, ProviderAzureToken, SetupStatusResponse, UserProfileOriginResponse, } from '@/models/common' import type { UpdateOpenAIKeyResponse, ValidateOpenAIKeyResponse, } from '@/models/app' import type { DefaultModelResponse, Model, ModelItem, ModelLoadBalancingConfig, ModelParameterRule, ModelProvider, ModelTypeEnum, } from '@/app/components/header/account-setting/model-provider-page/declarations' import type { RETRIEVE_METHOD } from '@/types/app' import type { SystemFeatures } from '@/types/feature' type LoginSuccess = { result: 'success' data: { access_token: string; refresh_token: string } } type LoginFail = { result: 'fail' data: string code: string message: string } type LoginResponse = LoginSuccess | LoginFail export const login: Fetcher }> = ({ url, body }) => { return post(url, { body }) as Promise } export const fetchNewToken: Fetcher }> = ({ body }) => { return post('/refresh-token', { body }) as Promise } export const setup: Fetcher }> = ({ body }) => { return post('/setup', { body }) } export const initValidate: Fetcher }> = ({ body }) => { return post('/init', { body }) } export const fetchInitValidateStatus = () => { return get('/init') } export const fetchSetupStatus = () => { return get('/setup') } export const fetchUserProfile: Fetcher }> = ({ url, params }) => { return get(url, params, { needAllResponseContent: true }) } export const updateUserProfile: Fetcher }> = ({ url, body }) => { return post(url, { body }) } export const logout: Fetcher }> = ({ url, params }) => { return get(url, params) } export const fetchLanggeniusVersion: Fetcher }> = ({ url, params }) => { return get(url, { params }) } export const oauth: Fetcher }> = ({ url, params }) => { return get(url, { params }) } export const oneMoreStep: Fetcher }> = ({ url, body }) => { return post(url, { body }) } export const fetchMembers: Fetcher<{ accounts: Member[] | null }, { url: string; params: Record }> = ({ url, params }) => { return get<{ accounts: Member[] | null }>(url, { params }) } export const fetchTypes = ({ url, params }: any) => { console.log('查询类型列表') return get(url, { params }) // return new Promise((resolve) => { // setTimeout(() => { // const arr: any = [] // for (let i = 1; i < 10; i++) { // arr.push({ // id: i, // name: `类型${i}`, // relation: i % 2, // }) // } // resolve({ // data: arr, // }) // }, 1000) // }) } export const fetchKnowledges = ({ url, params }: any) => { console.log('查询知识服务', params, url) return get(url, { params }) // return new Promise((resolve) => { // setTimeout(() => { // const arr: any = [] // for (let i = 1; i < 10; i++) { // arr.push({ // id: i, // serviceType: i % 3 + 1, // serviceName: `深圳口岸服务网${i}`, // url: '74.10.28.118', // status: i % 2, // time: '2021-09-22 14:22:22', // }) // } // resolve({ // data: arr, // }) // }, 1000) // }) } export const fetchMoulds = ({ url, params }: any) => { console.log('查询知识库模板', params, url) return get<{ accounts: Member[] | null }>(url, { params }) // return new Promise((resolve) => { // setTimeout(() => { // const arr: any = [] // for (let i = 1; i < 2; i++) { // // /files/7be8a2ca-a633-473c-8bcf-b73ee9fd7738/file-preview?timestamp=1744947616&nonce=a4107f3e163bbb0da255914e2ccabaf3&sign=H82Wk2VbWjXXEyzRUhGyNQlR-PG8NEGy5ijCEF0IKgo= // arr.push({ // id: '7be8a2ca-a633-473c-8bcf-b73ee9fd7738', // fileName: `文件${i}.doc`, // }) // } // resolve({ // data: arr, // }) // }, 1000) // }) } export const fetchProviders: Fetcher }> = ({ url, params }) => { return get(url, { params }) } export const validateProviderKey: Fetcher = ({ url, body }) => { return post(url, { body }) } export const updateProviderAIKey: Fetcher = ({ url, body }) => { return post(url, { body }) } export const fetchAccountIntegrates: Fetcher<{ data: AccountIntegrate[] | null }, { url: string; params: Record }> = ({ url, params }) => { return get<{ data: AccountIntegrate[] | null }>(url, { params }) } export const inviteMember: Fetcher }> = ({ url, body }) => { return post(url, { body }) } export const updateMemberRole: Fetcher }> = ({ url, body }) => { return put(url, { body }) } export const deleteMemberOrCancelInvitation: Fetcher = ({ url }) => { return del(url) } export const addType = ({ url, body }: any) => { console.log('新增类型', url, body) return post(url, { body }) } export const editType = ({ url, body }: any) => { console.log('编辑类型', url, body) return patch(url, { body }) } export const delType = ({ url, body }: any) => { console.log('删除类型', url, body) return del(url, { body }) } export const addKnowledge = ({ url, body }: any) => { console.log('新增知识', body, url) return post(url, { body }) } export const editKnowledge = ({ url, body }: any) => { console.log('编辑知识', body, url) return patch(url, { body }) } export const delKnowledge = ({ url, body }: any) => { console.log('删除知识', url, body) return del(url, { body }) } export const addMouldFile = ({ url, body }: any) => { console.log('新增模板文件', body, url) return upload({ xhr: new XMLHttpRequest(), data: body, }, false, url) } export const delMouldFile = ({ url, body }: any) => { console.log('删除模板文件', url) return del(url) } export const downloadMouldFile = ({ url, fileName }: any) => { console.log('下载模板文件', url, fileName) return download(url, {}, { fileName }) } export const handleExamine = ({ url, body }: any) => { // return post(url, { body }) console.log('处理上下线审核', body) return new Promise((resolve) => { setTimeout(() => { resolve({ result: 'success', }) }, 1000) }) } export const applyExamine = ({ url, body }: any) => { // return post(url, { body }) console.log('提交上下线审核', body) return new Promise((resolve) => { setTimeout(() => { resolve({ result: 'success', }) }, 1000) }) } export const fetchFilePreview: Fetcher<{ content: string }, { fileID: string }> = ({ fileID }) => { return get<{ content: string }>(`/files/${fileID}/preview`) } export const fetchCurrentWorkspace: Fetcher }> = ({ url, params }) => { return get(url, { params }) } export const updateCurrentWorkspace: Fetcher }> = ({ url, body }) => { return post(url, { body }) } export const fetchWorkspaces: Fetcher<{ workspaces: IWorkspace[] }, { url: string; params: Record }> = ({ url, params }) => { return get<{ workspaces: IWorkspace[] }>(url, { params }) } export const switchWorkspace: Fetcher }> = ({ url, body }) => { return post(url, { body }) } export const fetchDataSource: Fetcher<{ data: DataSourceNotion[] }, { url: string }> = ({ url }) => { return get<{ data: DataSourceNotion[] }>(url) } export const syncDataSourceNotion: Fetcher = ({ url }) => { return get(url) } export const updateDataSourceNotionAction: Fetcher = ({ url }) => { return patch(url) } export const fetchPluginProviders: Fetcher = (url) => { return get(url) } export const validatePluginProviderKey: Fetcher = ({ url, body }) => { return post(url, { body }) } export const updatePluginProviderAIKey: Fetcher = ({ url, body }) => { return post(url, { body }) } export const invitationCheck: Fetcher = ({ url, params }) => { return get(url, { params }) } export const activateMember: Fetcher = ({ url, body }) => { return post(url, { body }) } export const fetchModelProviders: Fetcher<{ data: ModelProvider[] }, string> = (url) => { return get<{ data: ModelProvider[] }>(url) } export type ModelProviderCredentials = { credentials?: Record load_balancing: ModelLoadBalancingConfig } export const fetchModelProviderCredentials: Fetcher = (url) => { return get(url) } export const fetchModelLoadBalancingConfig: Fetcher<{ credentials?: Record load_balancing: ModelLoadBalancingConfig }, string> = (url) => { return get<{ credentials?: Record load_balancing: ModelLoadBalancingConfig }>(url) } export const fetchModelProviderModelList: Fetcher<{ data: ModelItem[] }, string> = (url) => { return get<{ data: ModelItem[] }>(url) } export const fetchModelList: Fetcher<{ data: Model[] }, string> = (url) => { return get<{ data: Model[] }>(url) } export const validateModelProvider: Fetcher = ({ url, body }) => { return post(url, { body }) } export const validateModelLoadBalancingCredentials: Fetcher = ({ url, body }) => { return post(url, { body }) } export const setModelProvider: Fetcher = ({ url, body }) => { return post(url, { body }) } export const deleteModelProvider: Fetcher = ({ url, body }) => { return del(url, { body }) } export const changeModelProviderPriority: Fetcher = ({ url, body }) => { return post(url, { body }) } export const setModelProviderModel: Fetcher = ({ url, body }) => { return post(url, { body }) } export const deleteModelProviderModel: Fetcher = ({ url }) => { return del(url) } export const getPayUrl: Fetcher<{ url: string }, string> = (url) => { return get<{ url: string }>(url) } export const fetchDefaultModal: Fetcher<{ data: DefaultModelResponse }, string> = (url) => { return get<{ data: DefaultModelResponse }>(url) } export const updateDefaultModel: Fetcher = ({ url, body }) => { return post(url, { body }) } export const fetchModelParameterRules: Fetcher<{ data: ModelParameterRule[] }, string> = (url) => { return get<{ data: ModelParameterRule[] }>(url) } export const fetchFileUploadConfig: Fetcher = ({ url }) => { return get(url) } export const fetchNotionConnection: Fetcher<{ data: string }, string> = (url) => { return get(url) as Promise<{ data: string }> } export const fetchDataSourceNotionBinding: Fetcher<{ result: string }, string> = (url) => { return get(url) as Promise<{ result: string }> } export const fetchApiBasedExtensionList: Fetcher = (url) => { return get(url) as Promise } export const fetchApiBasedExtensionDetail: Fetcher = (url) => { return get(url) as Promise } export const addApiBasedExtension: Fetcher = ({ url, body }) => { return post(url, { body }) as Promise } export const updateApiBasedExtension: Fetcher = ({ url, body }) => { return post(url, { body }) as Promise } export const deleteApiBasedExtension: Fetcher<{ result: string }, string> = (url) => { return del(url) as Promise<{ result: string }> } export const fetchCodeBasedExtensionList: Fetcher = (url) => { return get(url) as Promise } export const moderate = (url: string, body: { app_id: string; text: string }) => { return post(url, { body }) as Promise } type RetrievalMethodsRes = { retrieval_method: RETRIEVE_METHOD[] } export const fetchSupportRetrievalMethods: Fetcher = (url) => { return get(url) } export const getSystemFeatures = () => { return get('/system-features') } export const enableModel = (url: string, body: { model: string; model_type: ModelTypeEnum }) => patch(url, { body }) export const disableModel = (url: string, body: { model: string; model_type: ModelTypeEnum }) => patch(url, { body }) export const sendForgotPasswordEmail: Fetcher = ({ url, body }) => post(url, { body }) export const verifyForgotPasswordToken: Fetcher = ({ url, body }) => { return post(url, { body }) as Promise } export const changePasswordWithToken: Fetcher = ({ url, body }) => post(url, { body }) export const uploadRemoteFileInfo = (url: string, isPublic?: boolean) => { return post<{ id: string; name: string; size: number; mime_type: string; url: string }>('/remote-files/upload', { body: { url } }, { isPublicAPI: isPublic }) } export const sendEMailLoginCode = (email: string, language = 'en-US') => post('/email-code-login', { body: { email, language } }) export const emailLoginWithCode = (data: { email: string; code: string; token: string }) => post('/email-code-login/validity', { body: data }) export const sendResetPasswordCode = (email: string, language = 'en-US') => post('/forgot-password', { body: { email, language } }) export const verifyResetPasswordCode = (body: { email: string; code: string; token: string }) => post('/forgot-password/validity', { body }) export const sendDeleteAccountCode = () => get('/account/delete/verify') export const verifyDeleteAccountCode = (body: { code: string; token: string }) => post('/account/delete', { body }) export const submitDeleteAccountFeedback = (body: { feedback: string; email: string }) => post('/account/delete/feedback', { body }) export const getDocDownloadUrl = (doc_name: string) => get<{ url: string }>('/compliance/download', { params: { doc_name } }, { silent: true }) export const fetchStatistic = ({ url, params }: any) => { console.log('查询知识总览', url, params) return get(url, { params }) } export const fetchLog = ({ url, params }: any) => { console.log('查询训练日志列表', url, params) // return get(url, { params }) return new Promise((resolve) => { setTimeout(() => { const arr: any = [] for (let i = 1; i < 10; i++) { arr.push({ id: i, version: `${i}.${i}.${i}`, time: '2022-02-02 02:21:23', }) } resolve({ data: arr, has_more: false, limit: 10, total: 100, page: 1, }) }, 1000) }) } export const fetchIntentType = ({ url, params }: any) => { console.log('查询意图类型', url, params) // return get(url, { params }) return new Promise((resolve) => { setTimeout(() => { const arr: any = [] for (let i = 1; i < 10; i++) { arr.push({ id: i, name: `意图类型_${i}`, binding_count: i, }) } resolve({ data: arr, has_more: false, limit: 10, total: 100, page: 1, }) }, 1000) }) } export const fetchIntentName = ({ url, params }: any) => { console.log('查询意图名称', url, params) // return get(url, { params }) return new Promise((resolve) => { setTimeout(() => { const arr: any = [] for (let i = 1; i < 10; i++) { arr.push({ id: i, name: `意图名称_${i}`, }) } resolve({ data: arr, has_more: false, limit: 10, total: 100, page: 1, }) }, 1000) }) } export const fetchCorpus = ({ url, params }: any) => { console.log('查询训练语料列表', url, params) // return get(url, { params }) return new Promise((resolve) => { setTimeout(() => { const arr: any = [] for (let i = 1; i < 10; i++) { arr.push({ id: i, name: `语料_${i}`, relation: i % 2, }) } resolve({ data: arr, has_more: false, limit: 10, total: 100, page: 1, }) }, 1000) }) } export const addCorpus = ({ url, body }: any) => { console.log('新增训练语料', url, body) return post(url, { body }) } export const editCorpus = ({ url, body }: any) => { console.log('编辑训练语料', url, body) return patch(url, { body }) } export const delCorpus = ({ url, body }: any) => { console.log('删除训练语料', url, body) return del(url, { body }) } export const addCorpusQuestion = ({ url, body }: any) => { console.log('新增训练语料-相似问题', url, body) return post(url, { body }) } export const editCorpusQuestion = ({ url, body }: any) => { console.log('编辑训练语料-相似问题', url, body) return patch(url, { body }) } export const delCorpusQuestion = ({ url, body }: any) => { console.log('删除训练语料-相似问题', url, body) return del(url, { body }) } export const fetchDepts = ({ url, params }: any) => { console.log('查询部门列表', params, url) // return get(url, { params }) return new Promise((resolve) => { setTimeout(() => { const arr: any = [] for (let i = 1; i < 3; i++) { const dept1: any = { id: `${i}`, name: `部门_${i}`, children: [], } for (let j = 1; j < 4; j++) { const dept2: any = { id: `${i}_${j}`, name: `部门_${i}-${j}`, children: [], } for (let k = 1; k < 5; k++) { const dept3: any = { id: `${i}_${j}_${k}`, name: `部门_${i}-${j}-${k}`, relation: k % 2, } dept2.children.push(dept3) } dept1.children.push(dept2) } arr.push(dept1) } resolve({ data: arr, }) }, 1000) }) } export const fetchDeptUsers = ({ url, params }: any) => { console.log('查询部门用户列表', params, url) // return get(url, { params }) return new Promise((resolve) => { setTimeout(() => { const arr: any = [] for (let i = 1; i < 3; i++) { const dept1: any = { id: `${i}`, name: `部门_${i}`, children: [], } for (let j = 1; j < 4; j++) { const dept2: any = { id: `${i}_${j}`, name: `部门_${i}-${j}`, children: [], } for (let k = 1; k < 5; k++) { const dept3: any = { id: `${i}_${j}_${k}`, name: `用户_${i}-${j}-${k}`, relation: k % 2, } dept2.children.push(dept3) } dept1.children.push(dept2) } arr.push(dept1) } resolve({ data: arr, }) }, 1000) }) }