mirror of
https://github.com/labring/FastGPT.git
synced 2025-12-26 04:32:50 +00:00
9 lines
191 B
TypeScript
9 lines
191 B
TypeScript
import type { DataSchema } from './mongoSchema';
|
|
|
|
export type DataType = 'QA' | 'abstract';
|
|
|
|
export interface DataListItem extends DataSchema {
|
|
trainingData: number;
|
|
totalData: number;
|
|
}
|