pub enum SuiteKind {
Smoke,
ToolLoop,
}Expand description
The suites this runner knows. smoke and tool-loop exist in Phase 3;
the CLI rejects anything else as a usage error.
Variants§
Smoke
Cheap live smoke suite: exact text completion, streaming completion, one tool call.
ToolLoop
Multi-turn fake-tool conformance loop (feedback 02 suite 40): the model must read a fixture, run its test, write the patch, and deliver a final answer within the turn budget.
Implementations§
Trait Implementations§
impl Copy for SuiteKind
impl Eq for SuiteKind
impl StructuralPartialEq for SuiteKind
Auto Trait Implementations§
impl Freeze for SuiteKind
impl RefUnwindSafe for SuiteKind
impl Send for SuiteKind
impl Sync for SuiteKind
impl Unpin for SuiteKind
impl UnsafeUnpin for SuiteKind
impl UnwindSafe for SuiteKind
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.