Package-level declarations

Types

Link copied to clipboard
open class AIAgentException(problem: String, throwable: Throwable? = null) : Exception

Represents a custom exception class for use in AI Agent-related processes.

Exception thrown when an agent exceeds the maximum allowed number of iterations during execution.

Link copied to clipboard

Exception thrown when an agent becomes stuck in a specific node during the execution of the agent graph. This typically occurs when the output produced by the node does not match any conditions on the available edges, preventing further progress in the graph execution.

Link copied to clipboard

This exception is thrown when an agent is terminated by a client request. It extends the AIAgentException class, providing a specific message indicating that the agent's operation was canceled by the client.