12345678910111213141516171819202122232425 |
- package com.backendsys.modules.ai.chat.entity;
- import lombok.AllArgsConstructor;
- import lombok.Data;
- import lombok.NoArgsConstructor;
- @Data
- public class ChatSseMessage {
- private String content;
- private String content_type; // (LOADING: 加载中, REPLY: 回复, THINK: 思考)
- private Long duration;
- public ChatSseMessage(String contentType, String content) {
- this.content = content;
- this.content_type = contentType;
- }
- public ChatSseMessage(String contentType, String content, Long duration) {
- this.content = content;
- this.content_type = contentType;
- this.duration = duration;
- }
- }
|