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.
15 lines
402 B
Java
15 lines
402 B
Java
package com.supervision.model.dify;
|
|
|
|
import lombok.Data;
|
|
|
|
import static com.supervision.common.constant.DifyConstants.CHAT_RESPONSE_MODE_BLOCKING;
|
|
|
|
@Data
|
|
public class DifyChatReqVO {
|
|
private String user;
|
|
private String response_mode = CHAT_RESPONSE_MODE_BLOCKING;
|
|
private DIFYChatReqInputVO inputs = new DIFYChatReqInputVO();
|
|
private String query;
|
|
private String conversation_id;
|
|
}
|