pub struct Message {
pub role: MessageRole,
pub content: MessageContent,
}Expand description
A message in the conversation.
Fields§
§role: MessageRoleMessage role.
content: MessageContentMessage content.
Implementations§
Source§impl Message
impl Message
Sourcepub fn assistant_with_tools(tool_calls: Vec<ToolCall>) -> Self
pub fn assistant_with_tools(tool_calls: Vec<ToolCall>) -> Self
Create an assistant message with tool calls.
Sourcepub fn tool_result(result: ToolCallResult) -> Self
pub fn tool_result(result: ToolCallResult) -> Self
Create a tool result message.
Sourcepub fn tool_calls(&self) -> Option<&[ToolCall]>
pub fn tool_calls(&self) -> Option<&[ToolCall]>
Get tool calls if this is a tool call 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 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