pub trait HasConfig {
type Config: Default + Send + Sync + 'static;
}Expand description
Provides an associated configuration type for LLM provider builders.
Implement this alongside LLMProvider to expose provider-specific builder
options. Use NoConfig for providers with no special options.
Required Associated Types§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".