004df79e66
Signed-off-by: Catty Steve <4795515+Catty2014@user.noreply.gitee.com>
8 lines
152 B
Rust
8 lines
152 B
Rust
use async_trait::async_trait;
|
|
use anyhow::Result;
|
|
|
|
#[async_trait]
|
|
pub trait LLMClient {
|
|
async fn generate(&self, prompt: &str) -> Result<String>;
|
|
}
|