mirror of
https://github.com/labring/FastGPT.git
synced 2025-07-25 06:14:06 +00:00
12 lines
237 B
TypeScript
12 lines
237 B
TypeScript
import { ModelDataStatusEnum } from '@/constants/model';
|
|
|
|
export interface PgKBDataItemType {
|
|
id: string;
|
|
q: string;
|
|
a: string;
|
|
status: `${ModelDataStatusEnum}`;
|
|
// model_id: string;
|
|
// user_id: string;
|
|
// kb_id: string;
|
|
}
|