LlmBackends
Registry mapping each specialty to the LlmBackend that serves it.
Usage
LlmBackends()debugging and review route to CodexCliBackend; general routes to ClaudeCliBackend.
Attributes
LLM_BACKENDS: dict[TSpecialty, LlmBackend]- Mapping from specialty to its backend instance.
Methods
| Name | Description |
|---|---|
| for_specialty() | Return the backend registered for a specialty. |
for_specialty()
Return the backend registered for a specialty.
Usage
for_specialty(specialty)Parameters
specialty: TSpecialty-
One of
debugging,review, orgeneral.
Returns
LlmBackend-
The LlmBackend instance that serves
specialty.