1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
| package cn.huge.module.ai.domain.vo;
|
| import lombok.Data;
|
| /**
| * @title: AI对话请求类
| * @description: 用于AI流式对话请求的VO对象
| * @company:hugeinfo
| * @time: 2024-12-25 15:10:30
| * @version 1.0.0
| */
| @Data
| public class AiChatVo {
| // 案件详情
| private String caseText;
|
| // 用户问题
| private String query;
|
| // 会话ID,第一次对话为空,多轮对话时需要传入
| private String conversationId;
|
| // 响应模式,可选值为"streaming"或"blocking",默认为"streaming"
| private String responseMode;
| }
|
|