com.volcengine.ark.runtime.model.completion.chat.ChatCompletionChoiceLogprob Maven / Gradle / Ivy
package com.volcengine.ark.runtime.model.completion.chat;
import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
import java.util.List;
@JsonIgnoreProperties(ignoreUnknown = true)
public class ChatCompletionChoiceLogprob {
List content;
public List getContent() {
return content;
}
public void setContent(List content) {
this.content = content;
}
@Override
public String toString() {
return "ChatCompletionChoiceLogprob{" +
"content=" + content +
'}';
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy