pub struct RunResult {
pub id: Option<String>,
pub text: Option<String>,
pub tool_outputs: Vec<(String, String)>,
}
Expand description
Structured run result aligning with Python’s RunResult basics.
Fields§
§id: Option<String>
§text: Option<String>
§tool_outputs: Vec<(String, String)>
Optional summaries of tool calls executed during the run: (name, output JSON or text)
Trait Implementations§
Auto Trait Implementations§
impl Freeze for RunResult
impl RefUnwindSafe for RunResult
impl Send for RunResult
impl Sync for RunResult
impl Unpin for RunResult
impl UnwindSafe for RunResult
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