package cc.mrbird.febs.ai.req.memberTalkStream;
|
|
import io.swagger.annotations.ApiModel;
|
import io.swagger.annotations.ApiModelProperty;
|
import lombok.Data;
|
|
/**
|
* @author Administrator
|
*/
|
@Data
|
@ApiModel(value = "AiTalkAnswerStreamDto", description = "参数")
|
public class AiTalkAnswerStreamDto {
|
|
|
@ApiModelProperty(value = "状态:1-总结 0-回答问题", example = "10")
|
private Integer state;
|
|
|
@ApiModelProperty(value = "类型 1:亮点 2:建议 3:参考答案 4:知识点总结", example = "10")
|
private Integer type;
|
|
|
@ApiModelProperty(value = "会话ID", example = "10")
|
private String id;
|
|
|
@ApiModelProperty(value = "回答", example = "10")
|
private String reqContext;
|
|
|
}
|