15 lines
305 B
Rust
Raw Normal View History

use anyhow::Error;
use lib_infra::async_trait::async_trait;
mod entities;
pub mod open_ai;
pub mod stability_ai;
#[async_trait]
pub trait TextCompletion: Send + Sync {
type Input: Send + 'static;
type Output;
async fn text_completion(&self, params: Self::Input) -> Result<Self::Output, Error>;
}