| 12345678910111213141516171819202122232425262728 |
- package com.template.model.pojo;
- import lombok.Data;
- import java.util.List;
- /**
- * @Author: xwt
- * @Date: 2025/2/27 星期四 16:11
- * @Description: com.template.model.pojo
- * @Version: 1.0
- */
- @Data
- public class DeepSeekResponse {
- private List<Choice> choices;
- @Data
- public static class Choice {
- private Message message;
- @Data
- public static class Message {
- private String role;
- private String content;
- }
- }
- }
|