pub struct Message {
pub role: MessageRole,
pub content: String,
pub tool_calls: Option<Vec<ChatCompletionMessageToolCall>>,
pub tool_call_id: Option<String>,
pub reasoning: Option<String>,
}Expand description
A message in a conversation with an LLM
Fields§
§role: MessageRoleRole of the message sender (“system”, “user”, “assistant” or “tool”)
content: StringContent of the message
tool_calls: Option<Vec<ChatCompletionMessageToolCall>>The tools an LLM wants to invoke
tool_call_id: Option<String>Unique identifier of the tool call
reasoning: Option<String>Reasoning behind the message
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
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