You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

161 lines
1.8 KiB

import { BaseEntity, PageQuery } from '@/api/base';
export interface ModelPromptsHistoryVO {
/**
* id
*/
id: string | number;
/**
* id
*/
promptId: string | number;
/**
*
*/
taskRoleDesc: string;
/**
*
*/
taskName: string;
/**
*
*/
taskRegion: string;
/**
*
*/
taskIndustry: string;
/**
*
*/
context: string;
/**
*
*/
description: string;
/**
*
*/
workflow: string;
/**
*
*/
outputDesc: string;
/**
*
*/
cautions: string;
/**
*
*/
modelVersion: string;
/**
*
*/
note: string;
}
export interface ModelPromptsHistoryForm extends BaseEntity {
/**
* id
*/
id?: string | number;
/**
* id
*/
promptId?: string | number;
/**
*
*/
taskRoleDesc?: string;
/**
*
*/
taskName?: string;
/**
*
*/
taskRegion?: string;
/**
*
*/
taskIndustry?: string;
/**
*
*/
context?: string;
/**
*
*/
description?: string;
/**
*
*/
workflow?: string;
/**
*
*/
outputDesc?: string;
/**
*
*/
cautions?: string;
/**
*
*/
modelVersion?: string;
/**
*
*/
note?: string;
}
export interface ModelPromptsHistoryQuery extends PageQuery {
/**
*
*/
taskName?: string;
/**
*
*/
taskRegion?: string;
/**
*
*/
taskIndustry?: string;
/**
*
*/
params?: any;
}