pub struct ToolMessage {
pub id: MessageId,
pub content: String,
pub tool_call_id: ToolCallId,
pub error: Option<String>,
pub encrypted_value: Option<String>,
pub subagent_run_id: Option<SubagentRunId>,
pub metadata: Option<JsonObject>,
}Expand description
The result of a tool call, fed back to the model.
Fields§
§id: MessageIdMessage id.
content: StringThe result, already rendered to a string.
tool_call_id: ToolCallIdThe call this result answers.
error: Option<String>Set when the tool failed; content then holds whatever partial output
there was.
encrypted_value: Option<String>Opaque provider payload for zero-data-retention modes.
subagent_run_id: Option<SubagentRunId>The subagent that executed the call; absent means the parent agent.
Attributed independently of the call it answers — see
ToolCallResultEvent. A JSON
null is rejected.
metadata: Option<JsonObject>Extra information, open by key. Absent or an object — a JSON null
is rejected. See crate::metadata.
Trait Implementations§
Source§impl Clone for ToolMessage
impl Clone for ToolMessage
Source§fn clone(&self) -> ToolMessage
fn clone(&self) -> ToolMessage
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl ComposeSchema for ToolMessage
impl ComposeSchema for ToolMessage
Source§impl Debug for ToolMessage
impl Debug for ToolMessage
Source§impl Default for ToolMessage
impl Default for ToolMessage
Source§fn default() -> ToolMessage
fn default() -> ToolMessage
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ToolMessage
impl<'de> Deserialize<'de> for ToolMessage
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 Eq for ToolMessage
Source§impl From<ToolMessage> for Message
impl From<ToolMessage> for Message
Source§fn from(value: ToolMessage) -> Self
fn from(value: ToolMessage) -> Self
Converts to this type from the input type.
Source§impl JsonSchema for ToolMessage
impl JsonSchema for ToolMessage
Source§fn schema_id() -> Cow<'static, str>
fn schema_id() -> Cow<'static, str>
Returns a string that uniquely identifies the schema produced by this type. Read more
Source§fn json_schema(generator: &mut SchemaGenerator) -> Schema
fn json_schema(generator: &mut SchemaGenerator) -> Schema
Generates a JSON Schema for this type. Read more
Source§fn inline_schema() -> bool
fn inline_schema() -> bool
Whether JSON Schemas generated for this type should be included directly in parent schemas,
rather than being re-used where possible using the
$ref keyword. Read moreSource§impl PartialEq for ToolMessage
impl PartialEq for ToolMessage
Source§fn eq(&self, other: &ToolMessage) -> bool
fn eq(&self, other: &ToolMessage) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for ToolMessage
impl Serialize for ToolMessage
impl StructuralPartialEq for ToolMessage
Auto Trait Implementations§
impl Freeze for ToolMessage
impl RefUnwindSafe for ToolMessage
impl Send for ToolMessage
impl Sync for ToolMessage
impl Unpin for ToolMessage
impl UnsafeUnpin for ToolMessage
impl UnwindSafe for ToolMessage
Blanket Implementations§
impl<T> AgentState for T
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> DeserializeOwned for Twhere
T: for<'de> Deserialize<'de>,
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Checks if this value is equivalent to the given key. Read more
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.