Implement optional author name for ChatMessage
This commit is contained in:
parent
ff9f8f9339
commit
6310c2f8c8
@ -46,13 +46,17 @@ impl<'de> Deserialize<'de> for Role {
|
||||
pub struct ChatMessage {
|
||||
pub role: Role,
|
||||
pub content: String,
|
||||
|
||||
#[serde(skip_serializing_if = "Option::is_none")]
|
||||
pub name: Option<String>,
|
||||
}
|
||||
|
||||
impl ChatMessage {
|
||||
pub fn new(role: Role, message: impl Into<String>) -> Self {
|
||||
pub fn new(role: Role, message: impl Into<String>, name: Option<String>) -> Self {
|
||||
Self {
|
||||
role,
|
||||
content: message.into()
|
||||
content: message.into(),
|
||||
name
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -76,7 +76,7 @@ mod tests {
|
||||
println!("Generating completion for prompt: {PROMPT}");
|
||||
let completion = ctx.create_chat_completion_sync(
|
||||
ChatHistoryBuilder::default()
|
||||
.messages(vec![ChatMessage::new(Role::User, PROMPT)])
|
||||
.messages(vec![ChatMessage::new(Role::User, PROMPT, None)])
|
||||
.model("gpt-3.5-turbo")
|
||||
).await;
|
||||
|
||||
@ -89,7 +89,7 @@ mod tests {
|
||||
println!("Generating streamed completion for prompt: {PROMPT}");
|
||||
let completion = ctx.create_chat_completion_streamed(
|
||||
ChatHistoryBuilder::default()
|
||||
.messages(vec![ChatMessage::new(Role::User, PROMPT)])
|
||||
.messages(vec![ChatMessage::new(Role::User, PROMPT, None)])
|
||||
.model("gpt-3.5-turbo")
|
||||
).await;
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user