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.
160 lines
1.8 KiB
160 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;
|
|
}
|
|
|