1 2 3 4 5 6 7 8
use async_trait::async_trait; use crate::domain::errors::Result; #[async_trait] pub trait LlmGateway: Send + Sync { async fn complete(&self, prompt: &str) -> Result<String>; }