Translators registry
Register and instantiate translator implementations used by the package.
This module defines a lightweight registry for available translator components, including their public names, implementation classes, and default initialization arguments. It also provides a helper function to construct translator instances by name with optional runtime overrides.
The registry centralizes translator configuration so that translators can be referenced declaratively from task configurations, CLI options, or other factory-based workflows.
TranslatorRegistryEntry
dataclass
Store the specification required to instantiate a translator.
Instances of this dataclass define a registry entry for a translator, including its public name, the translator class to instantiate, and the default keyword arguments used during construction.
Source code in aatm\registries\translators.py
name
instance-attribute
Unique registry name used to identify the translator.
translator_class
instance-attribute
Translator class or constructor used to create the translator instance.
kwargs
instance-attribute
Default keyword arguments passed when instantiating the translator.
load_translator(name, **kwargs)
Load and instantiate a translator from the registry.
This function looks up a translator specification by name, copies its default keyword arguments, applies any user-provided overrides, and returns a new translator instance.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
name
|
str
|
Registry name of the translator to instantiate. |
required |
**kwargs
|
Any
|
Keyword arguments that override or extend the default constructor arguments stored in the registry entry. |
{}
|
Returns:
| Type | Description |
|---|---|
BaseTranslator
|
A newly instantiated translator corresponding to the requested registry entry. |
Raises:
| Type | Description |
|---|---|
ValueError
|
If no translator with the given name exists in the registry. |
TypeError
|
If the provided arguments are invalid for the translator constructor. |