pub struct AssistantMessage {Show 17 fields
pub id: String,
pub cost: f64,
pub mode: String,
pub model_id: String,
pub path: AssistantMessagePath,
pub provider_id: String,
pub session_id: String,
pub parent_id: String,
pub agent: String,
pub system: Vec<String>,
pub time: AssistantMessageTime,
pub tokens: AssistantMessageTokens,
pub error: Option<SessionError>,
pub summary: Option<bool>,
pub variant: Option<String>,
pub finish: Option<String>,
pub structured: Option<Value>,
}Expand description
An assistant-generated message.
Fields§
§id: StringUnique message identifier.
cost: f64Monetary cost of generating this message.
mode: StringThe mode used for generation.
model_id: StringThe model identifier used.
path: AssistantMessagePathFilesystem paths relevant to this message.
provider_id: StringThe provider identifier used.
session_id: StringThe session this message belongs to.
parent_id: StringParent message identifier.
agent: StringAgent name.
system: Vec<String>System prompt segments (not in OpenAPI spec, kept for backward compatibility).
time: AssistantMessageTimeTiming information.
tokens: AssistantMessageTokensToken usage breakdown.
error: Option<SessionError>Optional error that occurred during generation.
summary: Option<bool>Whether this message is a summary.
variant: Option<String>Variant identifier.
finish: Option<String>Finish reason.
structured: Option<Value>Structured output data.
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§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for AssistantMessage
impl Debug for AssistantMessage
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