pub enum Message {
System {
content: Content,
name: Option<String>,
},
User {
content: Content,
name: Option<String>,
},
Assistant {
content: Option<Content>,
name: Option<String>,
reasoning_content: Option<String>,
tool_calls: Option<Vec<ToolCall>>,
},
Tool {
content: Content,
tool_call_id: Option<String>,
},
Function {
content: Content,
name: Option<String>,
},
}Expand description
Chat message objects.
Variants§
System
System message, usually instructions for the model to respond in a certain way.
Fields
User
User message, typically request from user for the model to answer.
Fields
Assistant
Assistant role message, previous chat messages from the model.
Fields
Tool
Tool call role message, used to return function call result to the model.
Fields
Function
Function call role message. Deprecated in favor of tool.
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 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