#[non_exhaustive]pub enum AgentError {
Session(SessionError),
Tool(ToolError),
Llm(LlmError),
State(StateError),
InvalidOutput {
expected: &'static str,
reason: String,
text: String,
},
UnknownAgent(String),
TransferRequested(String),
TransferFailed(String),
SessionClosed,
Timeout,
Config(String),
Other(String),
}Expand description
Errors that can occur during agent execution.
A model failure arrives as AgentError::Llm with its kind intact, so a
caller can branch on it:
use gemini_adk_rs::error::AgentError;
use gemini_adk_rs::llm::LlmError;
let err = AgentError::from(LlmError::Api { status: 429, message: "slow down".into() });
assert!(err.as_llm().is_some_and(LlmError::is_rate_limited));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.
Session(SessionError)
A wire-level session error (WebSocket, auth, setup).
Tool(ToolError)
A tool execution error.
Llm(LlmError)
The model call failed; the LlmError says how.
State(StateError)
Reading or writing session state failed.
InvalidOutput
The model’s reply did not match the requested output type, even after it was asked to correct it.
Fields
UnknownAgent(String)
The requested agent was not found in the registry.
TransferRequested(String)
The agent requested a transfer to another agent.
TransferFailed(String)
An agent transfer was attempted but failed.
SessionClosed
The underlying session has been closed.
Timeout
The operation timed out.
Config(String)
A configuration error.
Other(String)
A catch-all for other errors.
Implementations§
Trait Implementations§
Source§impl Debug for AgentError
impl Debug for AgentError
Source§impl Display for AgentError
impl Display for AgentError
Source§impl Error for AgentError
impl Error for AgentError
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<ConfigError> for AgentError
impl From<ConfigError> for AgentError
Source§fn from(err: ConfigError) -> AgentError
fn from(err: ConfigError) -> AgentError
Converts to this type from the input type.
Source§impl From<LlmError> for AgentError
impl From<LlmError> for AgentError
Source§fn from(source: LlmError) -> AgentError
fn from(source: LlmError) -> AgentError
Converts to this type from the input type.
Source§impl From<SessionError> for AgentError
impl From<SessionError> for AgentError
Source§fn from(source: SessionError) -> AgentError
fn from(source: SessionError) -> AgentError
Converts to this type from the input type.
Source§impl From<StateError> for AgentError
impl From<StateError> for AgentError
Source§fn from(source: StateError) -> AgentError
fn from(source: StateError) -> AgentError
Converts to this type from the input type.
Source§impl From<ToolError> for AgentError
impl From<ToolError> for AgentError
Source§fn from(source: ToolError) -> AgentError
fn from(source: ToolError) -> AgentError
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for AgentError
impl !RefUnwindSafe for AgentError
impl Send for AgentError
impl Sync for AgentError
impl Unpin for AgentError
impl !UnwindSafe for AgentError
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
§impl<S> FromSample<S> for S
impl<S> FromSample<S> for S
fn from_sample_(s: S) -> S
§impl<T> FutureExt for T
impl<T> FutureExt for T
§fn with_context(self, otel_cx: Context) -> WithContext<Self>
fn with_context(self, otel_cx: Context) -> WithContext<Self>
§fn with_current_context(self) -> WithContext<Self>
fn with_current_context(self) -> WithContext<Self>
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§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 more§impl<T> IntoRequest<T> for T
impl<T> IntoRequest<T> for T
§fn into_request(self) -> Request<T>
fn into_request(self) -> Request<T>
Wrap the input message
T in a tonic::Request§impl<L> LayerExt<L> for L
impl<L> LayerExt<L> for L
§fn named_layer<S>(&self, service: S) -> Layered<<L as Layer<S>>::Service, S>where
L: Layer<S>,
fn named_layer<S>(&self, service: S) -> Layered<<L as Layer<S>>::Service, S>where
L: Layer<S>,
Applies the layer to a service and wraps it in [
Layered].