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.
|
package cn.teammodel.model.dto.ai;
|
|
|
|
import lombok.Data;
|
|
|
|
import javax.validation.constraints.NotBlank;
|
|
|
|
@Data
|
|
public class ChatCompletionReqDto {
|
|
private String sessionId;
|
|
/**
|
|
* 预设的会话面具
|
|
*/
|
|
private Long appId;
|
|
@NotBlank(message = "请输入消息内容")
|
|
private String text;
|
|
} |