Skip to main content

HasConfig

Trait HasConfig 

Source
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§

Source

type Config: Default + Send + Sync + 'static

Provider-specific configuration type.

Implementors§