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: ValueExecution result data
error: Option<String>Error message if execution failed
log_id: StringLog ID for debugging and tracing
successful: boolWhether the execution was successful This field is computed from the error field during deserialization