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("模型类型: 科大讯飞:SparkMax;DeepSeek:DeepSeek_Chat")
private String model = "SparkMax";
@NotBlank(message = "请输入消息内容")
private String text;
}