pub trait ModelSelectorTrait: Send + Sync {
// Required method
fn select(
&self,
requirements: &AgentRequirements,
) -> Result<(String, String), LlmError>;
}Expand description
Trait for model selection based on LLM requirements.