diff options
Diffstat (limited to 'tools/compare-models/package.json')
| -rw-r--r-- | tools/compare-models/package.json | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/tools/compare-models/package.json b/tools/compare-models/package.json new file mode 100644 index 00000000..94307292 --- /dev/null +++ b/tools/compare-models/package.json @@ -0,0 +1,27 @@ +{ + "name": "@karakeep/compare-models", + "version": "0.1.0", + "description": "Standalone tool to compare tagging performance between AI models", + "bin": { + "compare-models": "dist/index.js" + }, + "scripts": { + "build": "tsc && chmod +x dist/index.js", + "run": "tsx --env-file=./.env src/index.ts", + "typecheck": "tsc --noEmit" + }, + "dependencies": { + "@karakeep/sdk": "workspace:^", + "chalk": "^5.3.0", + "openai": "^4.86.1", + "zod": "^3.24.2", + "zod-to-json-schema": "^3.24.3" + }, + "devDependencies": { + "@karakeep/shared": "workspace:^", + "@karakeep/trpc": "workspace:^", + "@types/node": "^24", + "tsx": "^4.8.1", + "typescript": "^5.9" + } +} |
