pub trait Config:
Send
+ Sync
+ 'static {
type Storage: Storage;
type Provider: Provider + 'static;
type Env: Env + ToolDispatcher + 'static;
}Expand description
Configuration trait bundling the associated types for a runtime.
Each binary defines one Config impl that ties together the
concrete storage, LLM provider, and env implementations.
Required Associated Types§
Sourcetype Env: Env + ToolDispatcher + 'static
type Env: Env + ToolDispatcher + 'static
Node environment — event broadcasting, instruction discovery, and composite hook for tool dispatch.