liter-llm-cli 1.5.0

CLI for liter-llm — start an OpenAI-compatible proxy server or MCP tool server.
1
2
3
4
5
6
7
8
9
10
11
12
pub mod api;
pub mod mcp;

use clap::Subcommand;

#[derive(Subcommand)]
pub enum Command {
    /// Start the OpenAI-compatible proxy server.
    Api(api::ApiArgs),
    /// Start the MCP server exposing LLM operations as tools.
    Mcp(mcp::McpArgs),
}