pub struct Message {
pub role: String,
pub content: String,
pub name: Option<String>,
pub tool_calls: Option<Vec<ToolCall>>,
pub tool_call_id: Option<String>,
pub metadata: HashMap<String, Value>,
}Expand description
A message in a conversation.
Messages are the core unit of communication in chat applications.
Fields§
§role: StringThe role of the message sender (e.g., “user”, “assistant”, “system”)
content: StringThe content of the message
name: Option<String>Optional message name/identifier
tool_calls: Option<Vec<ToolCall>>Optional function/tool call information
tool_call_id: Option<String>Optional tool call ID (for tool responses)
metadata: HashMap<String, Value>Additional metadata
Implementations§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Message
impl<'de> Deserialize<'de> for Message
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
impl StructuralPartialEq for Message
Auto Trait Implementations§
impl Freeze for Message
impl RefUnwindSafe for Message
impl Send for Message
impl Sync for Message
impl Unpin for Message
impl UnsafeUnpin for Message
impl UnwindSafe for Message
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