ChatRequest.java 345 B

123456789101112131415161718192021
  1. package ai.huisuan.back.model;
  2. import lombok.Data;
  3. /**
  4. * @author 对话接口请求DTO
  5. */
  6. @Data
  7. public class ChatRequest {
  8. // 使用模型名称
  9. private String model="qwen2.5:0.5b";
  10. // 会话id
  11. private Integer sessionId;
  12. // 历史记录
  13. private History history;
  14. // 问题信息
  15. private Message question;
  16. }