You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
412 B
22 lines
412 B
package com.example.ainative.ai; |
|
|
|
import lombok.AllArgsConstructor; |
|
import lombok.Builder; |
|
import lombok.Data; |
|
import lombok.NoArgsConstructor; |
|
|
|
@Data |
|
@AllArgsConstructor |
|
@NoArgsConstructor |
|
@Builder |
|
public class AgentResponse { |
|
/** |
|
* AI 生成的对话内容 |
|
*/ |
|
private String content; |
|
|
|
/** |
|
* 业务状态标识 (比如: SUCCESS, NEED_INFO, ERROR) |
|
*/ |
|
private String status; |
|
}
|
|
|