Expand description
Factory registry for runtime components.
Maps kind strings (e.g. "provider.openai", "store.session.memory")
to factory invokers that deserialize a JSON config and produce a
Box<dyn AnyComponent>.
Structs§
- Factory
Registry - A registry that maps
kindstrings (e.g."provider.openai") toFactoryInvokerinstances.
Enums§
- Factory
Error - Errors from factory creation or registry operations.
Traits§
- Factory
Invoker - A factory invocable — given a JSON config and a
ComponentContext, produces aBox<dyn AnyComponent>.