exceptions
Class info¶
Classes¶
Name | Children | Inherits |
---|---|---|
ChainAbortedError llmling_agent.tasks.exceptions Agent chain was aborted by user. |
||
JobError llmling_agent.tasks.exceptions General task-related exception. |
||
JobRegistrationError llmling_agent.tasks.exceptions Task could not get registered. |
||
RunAbortedError llmling_agent.tasks.exceptions Run was aborted by user. |
||
ToolSkippedError llmling_agent.tasks.exceptions Tool execution was skipped by user. |
🛈 DocStrings¶
ChainAbortedError
¶
Bases: JobError
Agent chain was aborted by user.
Source code in src/llmling_agent/tasks/exceptions.py
18 19 |
|
JobError
¶
Bases: LLMLingError
General task-related exception.
Source code in src/llmling_agent/tasks/exceptions.py
6 7 |
|
JobRegistrationError
¶
Bases: JobError
Task could not get registered.
Source code in src/llmling_agent/tasks/exceptions.py
22 23 |
|