| | |
| | | package cn.iocoder.yudao.module.ai.controller.admin.model.vo.model; |
| | | |
| | | import lombok.*; |
| | | import io.swagger.v3.oas.annotations.media.Schema; |
| | | import cn.iocoder.yudao.framework.common.pojo.PageParam; |
| | | import io.swagger.v3.oas.annotations.media.Schema; |
| | | import lombok.Data; |
| | | import lombok.EqualsAndHashCode; |
| | | |
| | | @Schema(description = "管理后台 - API 模型分页 Request VO") |
| | | @Schema(description = "管理后台 - AI 模型分页 Request VO") |
| | | @Data |
| | | @EqualsAndHashCode(callSuper = true) |
| | | public class AiModelPageReqVO extends PageParam { |
| | | |
| | | @Schema(description = "模型名字", example = "张三") |
| | | @Schema(description = "模型名称") |
| | | private String name; |
| | | |
| | | @Schema(description = "模型标识", example = "gpt-3.5-turbo-0125") |
| | | private String model; |
| | | @Schema(description = "模型类型") |
| | | private Integer type; |
| | | |
| | | @Schema(description = "模型平台", example = "OpenAI") |
| | | @Schema(description = "平台") |
| | | private String platform; |
| | | |
| | | } |
| | | @Schema(description = "状态") |
| | | private Integer status; |
| | | |
| | | } |