feat: added name field to openai message
This commit is contained in:
parent
4c2848b24b
commit
9f67f4226b
|
@ -338,6 +338,7 @@ impl ChatCompletion {
|
|||
message: Message {
|
||||
role: "assistant".into(),
|
||||
content: output,
|
||||
name: None,
|
||||
},
|
||||
logprobs: return_logprobs
|
||||
.then(|| ChatCompletionLogprobs::from((details.tokens, details.top_tokens))),
|
||||
|
@ -413,6 +414,7 @@ fn default_request_messages() -> Vec<Message> {
|
|||
vec![Message {
|
||||
role: "user".to_string(),
|
||||
content: "My name is David and I".to_string(),
|
||||
name: None,
|
||||
}]
|
||||
}
|
||||
|
||||
|
@ -507,6 +509,8 @@ pub(crate) struct Message {
|
|||
pub role: String,
|
||||
#[schema(example = "My name is David and I")]
|
||||
pub content: String,
|
||||
#[schema(example = "\"David\"")]
|
||||
pub name: Option<String>,
|
||||
}
|
||||
|
||||
#[derive(Clone, Debug, Deserialize, ToSchema)]
|
||||
|
|
Loading…
Reference in New Issue