parent
db817ecf8d
commit
a6032ba527
@ -0,0 +1,70 @@
|
||||
package com.ruoyi.framework.web.service;
|
||||
|
||||
import lombok.Data;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* ClassName: DeepSeekResponse
|
||||
* Package: com.ruoyi.framework.web.service
|
||||
* Description:
|
||||
*
|
||||
* @Author wangxy
|
||||
* @Create 2025/2/24 10:38
|
||||
* @Version 1.0
|
||||
*/
|
||||
@Data
|
||||
public class DeepSeekResponse {
|
||||
|
||||
private String id;
|
||||
|
||||
private String object;
|
||||
|
||||
private Integer created;
|
||||
|
||||
private String model;
|
||||
|
||||
private List<Choices> choices;
|
||||
|
||||
private Usage usage;
|
||||
|
||||
private String system_fingerprint;
|
||||
|
||||
@Data
|
||||
public static class Choices {
|
||||
|
||||
private Integer index;
|
||||
|
||||
private Message message;
|
||||
|
||||
private String logprobs;
|
||||
|
||||
private String finish_reason;
|
||||
|
||||
@Data
|
||||
public static class Message {
|
||||
private String role;
|
||||
private String content;
|
||||
}
|
||||
}
|
||||
|
||||
@Data
|
||||
public static class Usage {
|
||||
private Integer prompt_tokens;
|
||||
|
||||
private Integer completion_tokens;
|
||||
|
||||
private Integer total_tokens;
|
||||
|
||||
private Prompt_tokens_details prompt_tokens_details;
|
||||
|
||||
private Integer prompt_cache_hit_tokens;
|
||||
|
||||
private Integer prompt_cache_miss_tokens;
|
||||
|
||||
@Data
|
||||
public static class Prompt_tokens_details {
|
||||
private Integer cached_tokens;
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Reference in new issue