Skip to main content

MetaToolExecutionResponse

Type Alias MetaToolExecutionResponse 

Source
pub type MetaToolExecutionResponse = ToolExecutionResponse;
Expand description

Response from meta tool execution

Aliased Type§

pub struct MetaToolExecutionResponse {
    pub data: Value,
    pub error: Option<String>,
    pub log_id: String,
    pub successful: bool,
}

Fields§

§data: Value

Execution result data

§error: Option<String>

Error message if execution failed

§log_id: String

Log ID for debugging and tracing

§successful: bool

Whether the execution was successful This field is computed from the error field during deserialization