UNPKG

llm-checker

Version:

Intelligent CLI tool with AI-powered model selection that analyzes your hardware and recommends optimal LLM models for your system

93 lines (92 loc) 2.4 kB
{ "name": "llm-checker", "version": "2.1.4", "description": "Intelligent CLI tool with AI-powered model selection that analyzes your hardware and recommends optimal LLM models for your system", "bin": { "llm-checker": "bin/enhanced_cli.js" }, "main": "src/index.js", "scripts": { "test": "jest", "build": "echo 'No build needed'", "dev": "node bin/enhanced_cli.js", "start": "node bin/enhanced_cli.js", "check": "node bin/enhanced_cli.js check", "recommend": "node bin/enhanced_cli.js recommend", "update-db": "node bin/enhanced_cli.js update-db", "ollama": "node bin/enhanced_cli.js ollama", "list-models": "node bin/enhanced_cli.js list-models", "ai-check": "node bin/enhanced_cli.js ai-check", "ai-run": "node bin/enhanced_cli.js ai-run", "benchmark": "cd ml-model && python python/benchmark_collector.py", "train-ai": "cd ml-model && python python/train_model.py", "postinstall": "echo '🎉 LLM Checker installed! Try: npm run check'" }, "dependencies": { "chalk": "^4.1.2", "commander": "^11.1.0", "inquirer": "^8.2.6", "node-fetch": "^2.7.0", "ora": "^5.4.1", "systeminformation": "^5.21.0", "table": "^6.8.1" }, "devDependencies": { "@types/node": "^20.0.0", "jest": "^29.7.0" }, "keywords": [ "llm", "ai", "intelligent-selector", "model-recommendation", "hardware-analysis", "machine-learning", "hardware", "compatibility", "cli", "ollama", "small-language-models", "sllm", "local-ai", "quantization", "inference", "gpu", "vram", "performance", "benchmark", "apple-silicon", "memory-optimization" ], "author": "Pavel Chmirenko <pavelchmirenko@gmail.com>", "funding": "https://buymeacoffee.com/pavelchmirenko", "license": "MIT", "repository": { "type": "git", "url": "git+https://github.com/Pavelevich/llm-checker.git" }, "homepage": "https://github.com/Pavelevich/llm-checker#readme", "bugs": { "url": "https://github.com/Pavelevich/llm-checker/issues" }, "engines": { "node": ">=16.0.0", "npm": ">=8.0.0" }, "os": [ "darwin", "linux", "win32" ], "preferGlobal": true, "files": [ "bin/", "src/", "analyzer/", "ml-model/", "README.md", "USAGE_GUIDE.md", "TECHNICAL_DOCS.md", "LICENSE" ] }