1 2 3 4 5 6
pub(crate) mod ollama; use crate::Result; trait LlmProvider { async fn generate(&self) -> Result<String>; }