UNPKG

llmatic

Version:

Use self-hosted LLMs with an OpenAI compatible API

13 lines (9 loc) 331 B
import { readPackageJson } from "./cli-utils.ts"; import { program } from "commander"; const { version, description } = await readPackageJson(); program .version(version) .description(description) .command("config", "configure LLMatic") .command("start", "start LLMatic server"); await program.parseAsync(process.argv);