package deepseek;import java.util.List;public class DpRequestBean {/*** messages : [{"content":"介绍一下你","role":"system"}]* model : deepseek-chat* frequency_penalty : 0* max_tokens : 2048* presence_penalty : 0* response_format : {"type":"text"}* stop : null* stream : false* stream_options : null* temperature : 1* top_p : 1* tools : null* tool_choice : none* logprobs : false* top_logprobs : null*/private String model;private int frequency_penalty;private int max_tokens;private int presence_penalty;/*** type : text*/private ResponseFormatBean response_format;private Object stop;private boolean stream;private Object stream_options;private int temperature;private int top_p;private Object tools;private String tool_choice;private boolean logprobs;private Object top_logprobs;/*** content : 介绍一下你* role : system*/private List<MessagesBean> messages;public String getModel() {return model;}public void setModel(String model) {this.model = model;}public int getFrequency_penalty() {return frequency_penalty;}public void setFrequency_penalty(int frequency_penalty) {this.frequency_penalty = frequency_penalty;}public int getMax_tokens() {return max_tokens;}public void setMax_tokens(int max_tokens) {this.max_tokens = max_tokens;}public int getPresence_penalty() {return presence_penalty;}public void setPresence_penalty(int presence_penalty) {this.presence_penalty = presence_penalty;}public ResponseFormatBean getResponse_format() {return response_format;}public void setResponse_format(ResponseFormatBean response_format) {this.response_format = response_format;}public Object getStop() {return stop;}public void setStop(Object stop) {this.stop = stop;}public boolean isStream() {return stream;}public void setStream(boolean stream) {this.stream = stream;}public Object getStream_options() {return stream_options;}public void setStream_options(Object stream_options) {this.stream_options = stream_options;}public int getTemperature() {return temperature;}public void setTemperature(int temperature) {this.temperature = temperature;}public int getTop_p() {return top_p;}public void setTop_p(int top_p) {this.top_p = top_p;}public Object getTools() {return tools;}public void setTools(Object tools) {this.tools = tools;}public String getTool_choice() {return tool_choice;}public void setTool_choice(String tool_choice) {this.tool_choice = tool_choice;}public boolean isLogprobs() {return logprobs;}public void setLogprobs(boolean logprobs) {this.logprobs = logprobs;}public Object getTop_logprobs() {return top_logprobs;}public void setTop_logprobs(Object top_logprobs) {this.top_logprobs = top_logprobs;}public List<MessagesBean> getMessages() {return messages;}public void setMessages(List<MessagesBean> messages) {this.messages = messages;}public static class ResponseFormatBean {private String type;public String getType() {return type;}public void setType(String type) {this.type = type;}}public static class MessagesBean {private String content;private String role;public String getContent() {return content;}public void setContent(String content) {this.content = content;}public String getRole() {return role;}public void setRole(String role) {this.role = role;}}}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。