mirror of
https://github.com/labring/FastGPT.git
synced 2025-07-27 00:17:31 +00:00
29 lines
1.1 KiB
TypeScript
29 lines
1.1 KiB
TypeScript
import { GET, POST, DELETE, PUT } from './request';
|
|
import type { ModelSchema } from '@/types/mongoSchema';
|
|
import { ModelUpdateParams } from '@/types/model';
|
|
import { TrainingItemType } from '../types/training';
|
|
|
|
export const getMyModels = () => GET<ModelSchema[]>('/model/list');
|
|
|
|
export const postCreateModel = (data: { name: string; serviceModelName: string }) =>
|
|
POST<ModelSchema>('/model/create', data);
|
|
|
|
export const delModelById = (id: string) => DELETE(`/model/del?modelId=${id}`);
|
|
|
|
export const getModelById = (id: string) => GET<ModelSchema>(`/model/detail?modelId=${id}`);
|
|
|
|
export const putModelById = (id: string, data: ModelUpdateParams) =>
|
|
PUT(`/model/update?modelId=${id}`, data);
|
|
|
|
export const postTrainModel = (id: string, form: FormData) =>
|
|
POST(`/model/train?modelId=${id}`, form, {
|
|
headers: {
|
|
'content-type': 'multipart/form-data'
|
|
}
|
|
});
|
|
|
|
export const putModelTrainingStatus = (id: string) => PUT(`/model/putTrainStatus?modelId=${id}`);
|
|
|
|
export const getModelTrainings = (id: string) =>
|
|
GET<TrainingItemType[]>(`/model/getTrainings?modelId=${id}`);
|