ChatClient返回响应:返回实体类

This commit is contained in:
huangge1199 2025-05-17 13:11:25 +08:00
parent c96f375592
commit 3bbf091e93

View File

@ -20,11 +20,11 @@ import java.util.List;
@RestController
@RequestMapping("/res")
@Tag(name = "ChatClient返回响应")
public class ResControlle {
public class ResController {
private final ChatClient chatClient;
public ResControlle(ChatClient.Builder builder) {
public ResController(ChatClient.Builder builder) {
this.chatClient = builder.build();
}