UNPKG

@plastichub/osr-ai-tools

Version:

CLI and library for LLM tools

15 lines (13 loc) 319 B
#!/usr/bin/env node import yargs from 'yargs'; import { commands } from './commands'; import { logger } from './'; async function main() { try { const argv = await commands(yargs).argv; } catch (error) { logger.error('Error executing command:', error); process.exit(1); } } main();