You cannot 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 com.supervision.vo.rasa;
|
|
|
|
import lombok.Data;
|
|
|
|
@Data
|
|
public class RasaTalkVo {
|
|
|
|
/**
|
|
* 问题
|
|
*/
|
|
private String question;
|
|
/**
|
|
* 会话标识
|
|
*/
|
|
private String sessionId;
|
|
|
|
/**
|
|
* 模型id
|
|
*/
|
|
private String modelId;
|
|
|
|
}
|