mirror of
https://github.com/labring/FastGPT.git
synced 2025-07-24 22:03:54 +00:00
8 lines
180 B
TypeScript
8 lines
180 B
TypeScript
import { ModelDataStatusEnum } from '@/constants/redis';
|
|
export interface RedisModelDataItemType {
|
|
id: string;
|
|
q: string;
|
|
text: string;
|
|
status: `${ModelDataStatusEnum}`;
|
|
}
|