hiramu-cli 0.1.23

A command-line interface tool for interacting with large language models (LLMs) on AWS Bedrock and generating text based on prompts.
Documentation
1
2
3
4
5
6
pub trait Generate {
    fn generate(
        &self,
        question: &str,
    ) -> impl std::future::Future<Output = ()> + Send;
}