pub struct ComposeResult {
pub graph: CompositionGraph,
pub attempts: u32,
pub synthesized: Vec<SynthesisResult>,
}Expand description
Result from the Composition Agent.
Fields§
§graph: CompositionGraph§attempts: u32Total LLM attempts used in the final composition round.
synthesized: Vec<SynthesisResult>Stages synthesized during this compose call (0 or 1).
Trait Implementations§
Auto Trait Implementations§
impl Freeze for ComposeResult
impl RefUnwindSafe for ComposeResult
impl Send for ComposeResult
impl Sync for ComposeResult
impl Unpin for ComposeResult
impl UnsafeUnpin for ComposeResult
impl UnwindSafe for ComposeResult
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