use async_trait::async_trait; use anyhow::Result; #[async_trait] pub trait LLMClient { async fn generate(&self, prompt: &str) -> Result; }