#[non_exhaustive]pub enum OperatorError {
Model(String),
Tool {
tool: String,
message: String,
},
ContextAssembly(String),
Retryable(String),
NonRetryable(String),
Other(Box<dyn Error + Send + Sync>),
}Expand description
Operator execution errors.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Model(String)
An error from the model/LLM provider.
Tool
An error during tool execution.
ContextAssembly(String)
Context assembly failed before the model call.
Retryable(String)
The operator failed but retrying might succeed. The orchestrator’s retry policy decides.
NonRetryable(String)
The operator failed and retrying won’t help. Budget exceeded, invalid input, safety refusal.
Other(Box<dyn Error + Send + Sync>)
Catch-all. Include context.
Trait Implementations§
Source§impl Debug for OperatorError
impl Debug for OperatorError
Source§impl Display for OperatorError
impl Display for OperatorError
Source§impl Error for OperatorError
impl Error for OperatorError
Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
Source§impl From<OperatorError> for EnvError
impl From<OperatorError> for EnvError
Source§fn from(source: OperatorError) -> Self
fn from(source: OperatorError) -> Self
Converts to this type from the input type.
Source§impl From<OperatorError> for OrchError
impl From<OperatorError> for OrchError
Source§fn from(source: OperatorError) -> Self
fn from(source: OperatorError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for OperatorError
impl !RefUnwindSafe for OperatorError
impl Send for OperatorError
impl Sync for OperatorError
impl Unpin for OperatorError
impl UnsafeUnpin for OperatorError
impl !UnwindSafe for OperatorError
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