package cn.iocoder.yudao.module.ai.controller.admin.model.vo.model;
|
|
import io.swagger.v3.oas.annotations.media.Schema;
|
import lombok.Data;
|
import lombok.experimental.Accessors;
|
import java.time.LocalDateTime;
|
|
@Schema(description = "管理后台 - AI 模型 Response VO")
|
@Data
|
@Accessors(chain = true)
|
public class AiModelRespVO {
|
|
@Schema(description = "编号", example = "1")
|
private Long id;
|
|
@Schema(description = "API 密钥编号", example = "1")
|
private Long keyId;
|
|
@Schema(description = "模型名字", example = "通义千问")
|
private String name;
|
|
@Schema(description = "模型标识", example = "qwen-plus")
|
private String model;
|
|
@Schema(description = "模型平台", example = "TongYi")
|
private String platform;
|
|
@Schema(description = "模型类型", example = "1")
|
private Integer type;
|
|
@Schema(description = "排序", example = "0")
|
private Integer sort;
|
|
@Schema(description = "状态", example = "0")
|
private Integer status;
|
|
@Schema(description = "温度")
|
private Double temperature;
|
|
@Schema(description = "最大 Token 数")
|
private Integer maxTokens;
|
|
@Schema(description = "最大上下文数")
|
private Integer maxContexts;
|
|
@Schema(description = "创建时间")
|
private LocalDateTime createTime;
|
|
}
|