pub enum MockBehavior {
Success,
RetryableErrorThenSuccess {
remaining_errors: usize,
},
AlwaysRetryableError,
AlwaysNonRetryableError,
ToolUse {
tool_name: String,
tool_arguments: String,
},
ToolUseThenSuccess {
tool_name: String,
tool_arguments: String,
},
AlwaysInputTooLong,
InputTooLongThenSuccess {
remaining_errors: usize,
},
TextOnlyThenToolUse {
remaining_text_responses: usize,
tool_name: String,
tool_arguments: String,
},
ToolUseThenToolUse {
first_tool_name: String,
first_tool_arguments: String,
second_tool_name: String,
second_tool_arguments: String,
},
MultipleToolUses {
tool_uses: Vec<(String, String)>,
},
BehaviorQueue {
behaviors: Vec<MockBehavior>,
},
}Expand description
Mock behavior for the mock provider
Variants§
Success
Return successful responses
RetryableErrorThenSuccess
Return a retryable error N times, then succeed
AlwaysRetryableError
Always return a retryable error
AlwaysNonRetryableError
Always return a non-retryable error
ToolUse
Return a tool use response
ToolUseThenSuccess
Return a tool use response once, then success
AlwaysInputTooLong
Always return an InputTooLong error
InputTooLongThenSuccess
Return InputTooLong error N times, then succeed
TextOnlyThenToolUse
Return text-only responses N times, then a tool use response
ToolUseThenToolUse
Return two tool uses in sequence, then success
Fields
MultipleToolUses
Return multiple tool uses in a single response, then success
BehaviorQueue
Enables sequential multi-turn conversation testing by orchestrating predetermined agent responses
Fields
§
behaviors: Vec<MockBehavior>Trait Implementations§
Source§impl Clone for MockBehavior
impl Clone for MockBehavior
Source§fn clone(&self) -> MockBehavior
fn clone(&self) -> MockBehavior
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for MockBehavior
impl Debug for MockBehavior
Source§impl Default for MockBehavior
impl Default for MockBehavior
Source§fn default() -> MockBehavior
fn default() -> MockBehavior
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for MockBehavior
impl<'de> Deserialize<'de> for MockBehavior
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for MockBehavior
impl RefUnwindSafe for MockBehavior
impl Send for MockBehavior
impl Sync for MockBehavior
impl Unpin for MockBehavior
impl UnwindSafe for MockBehavior
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<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreCreates a shared type from an unshared type.