pub struct AssistantMessage {
pub role: RoleTrue,
pub content: Option<String>,
pub refusal: Option<String>,
pub tool_calls: Option<Vec<ToolCall>>,
pub name: Option<String>,
}
Fields§
§role: RoleTrue
This is the role of the message author
content: Option<String>
This is the content of the assistant message
refusal: Option<String>
This is the refusal message generated by the model
tool_calls: Option<Vec<ToolCall>>
This is the tool calls generated by the model
name: Option<String>
This is an optional name for the participant
Implementations§
Source§impl AssistantMessage
impl AssistantMessage
pub fn new(role: RoleTrue) -> AssistantMessage
Trait Implementations§
Source§impl Clone for AssistantMessage
impl Clone for AssistantMessage
Source§fn clone(&self) -> AssistantMessage
fn clone(&self) -> AssistantMessage
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for AssistantMessage
impl Debug for AssistantMessage
Source§impl Default for AssistantMessage
impl Default for AssistantMessage
Source§fn default() -> AssistantMessage
fn default() -> AssistantMessage
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AssistantMessage
impl<'de> Deserialize<'de> for AssistantMessage
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for AssistantMessage
impl PartialEq for AssistantMessage
Source§impl Serialize for AssistantMessage
impl Serialize for AssistantMessage
impl StructuralPartialEq for AssistantMessage
Auto Trait Implementations§
impl Freeze for AssistantMessage
impl RefUnwindSafe for AssistantMessage
impl Send for AssistantMessage
impl Sync for AssistantMessage
impl Unpin for AssistantMessage
impl UnwindSafe for AssistantMessage
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more