1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
| package com.vincent.rsf.ai.gateway.service;
|
| import lombok.Data;
| import lombok.experimental.Accessors;
|
| import java.io.Serializable;
|
| @Data
| @Accessors(chain = true)
| public class GatewayStreamEvent implements Serializable {
|
| private String type;
|
| private String content;
|
| private String message;
|
| private String modelCode;
|
| }
|
|