| | |
| | | |
| | | 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 = "编号", requiredMode = Schema.RequiredMode.REQUIRED, example = "2630") |
| | | @Schema(description = "编号", example = "1") |
| | | private Long id; |
| | | |
| | | @Schema(description = "API 秘钥编号", example = "22042") |
| | | @Schema(description = "API 密钥编号", example = "1") |
| | | private Long keyId; |
| | | |
| | | @Schema(description = "模型名字", example = "张三") |
| | | @Schema(description = "模型名字", example = "通义千问") |
| | | private String name; |
| | | |
| | | @Schema(description = "模型标识", example = "gpt-3.5-turbo-0125") |
| | | @Schema(description = "模型标识", example = "qwen-plus") |
| | | private String model; |
| | | |
| | | @Schema(description = "模型平台", example = "OpenAI") |
| | | @Schema(description = "模型平台", example = "TongYi") |
| | | private String platform; |
| | | |
| | | @Schema(description = "模型类型", example = "1") |
| | | private Integer type; |
| | | |
| | | @Schema(description = "排序", example = "1") |
| | | @Schema(description = "排序", example = "0") |
| | | private Integer sort; |
| | | |
| | | @Schema(description = "状态", example = "2") |
| | | @Schema(description = "状态", example = "0") |
| | | private Integer status; |
| | | |
| | | @Schema(description = "温度参数", example = "1") |
| | | @Schema(description = "温度") |
| | | private Double temperature; |
| | | |
| | | @Schema(description = "单条回复的最大 Token 数量", example = "4096") |
| | | @Schema(description = "最大 Token 数") |
| | | private Integer maxTokens; |
| | | |
| | | @Schema(description = "上下文的最大 Message 数量", example = "8192") |
| | | @Schema(description = "最大上下文数") |
| | | private Integer maxContexts; |
| | | |
| | | @Schema(description = "创建时间", requiredMode = Schema.RequiredMode.REQUIRED) |
| | | @Schema(description = "创建时间") |
| | | private LocalDateTime createTime; |
| | | |
| | | } |