Exception: Agentic::Errors::LlmTimeoutError
- Defined in:
- lib/agentic/errors/llm_error.rb
Overview
Error raised when the request to the LLM times out
Instance Attribute Summary
Attributes inherited from LlmError
Instance Method Summary collapse
-
#initialize(message, context: nil) ⇒ LlmTimeoutError
constructor
A new instance of LlmTimeoutError.
-
#retryable? ⇒ Boolean
Whether this error is retryable.
Constructor Details
#initialize(message, context: nil) ⇒ LlmTimeoutError
Returns a new instance of LlmTimeoutError.
159 160 161 |
# File 'lib/agentic/errors/llm_error.rb', line 159 def initialize(, context: nil) super(, context: context) end |
Instance Method Details
#retryable? ⇒ Boolean
Returns Whether this error is retryable.
164 165 166 |
# File 'lib/agentic/errors/llm_error.rb', line 164 def retryable? true end |