decorators
Class info¶
🛈 DocStrings¶
Decorators for agent injection and execution.
with_nodes
¶
with_nodes(
pool: AgentPool, func: Callable[P, Awaitable[T]] | None = None
) -> (
Callable[P, Awaitable[T]]
| Callable[[Callable[P, Awaitable[T]]], Callable[P, Awaitable[T]]]
)
Inject nodes into function parameters.
Source code in src/llmling_agent/running/decorators.py
31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 |
|