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
7
8
9

use serde::{Deserialize, Serialize};


#[derive(Debug, Clone, clap::ValueEnum, Serialize, Deserialize)]
pub enum Provider {
    Bedrock,
    Ollama,
}