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.