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.
IESExtension/src/main/java/cn/teammodel/model/dto/ai/ChatCompletionReqDto.java

22 lines
549 B

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

package cn.teammodel.model.dto.ai;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
import javax.validation.constraints.NotBlank;
@Data
public class ChatCompletionReqDto {
private String sessionId;
/**
* 预设的会话 id
*/
@ApiModelProperty("会话id没有则为空")
private String appId;
@ApiModelProperty("模型类型: 科大讯飞SparkMaxDeepSeekDeepSeek_Chat")
private String model = "SparkMax";
@NotBlank(message = "请输入消息内容")
private String text;
}