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.
13 lines
340 B
Java
13 lines
340 B
Java
2 months ago
|
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();
|
||
|
}
|