registry
Class info¶
Classes¶
| Name | Children | Inherits |
|---|---|---|
| BaseRegistry llmling_agent.utils.baseregistry Base class for registries providing item storage and change notifications. |
||
Jobllmling_agent_config.task A task is a piece of work that can be executed by an agent. |
||
| JobRegistrationError llmling_agent.tasks.exceptions Task could not get registered. |
||
| TaskRegistry llmling_agent.tasks.registry Registry for managing tasks. |
🛈 DocStrings¶
Task definition and registry for agents.
TaskRegistry
¶
Bases: BaseRegistry[str, Job[Any, Any]]
Registry for managing tasks.
Source code in src/llmling_agent/tasks/registry.py
12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 | |
register
¶
Register a task with name.
Creates a copy of the task with the name set.
Source code in src/llmling_agent/tasks/registry.py
27 28 29 30 31 32 33 | |