@prism-lang/confidence
Version:
Confidence extraction library for Prism - standardized patterns for extracting confidence values from LLMs and other sources
49 lines • 1.14 kB
JSON
{
"name": "@prism-lang/confidence",
"version": "1.2.3",
"description": "Confidence extraction library for Prism - standardized patterns for extracting confidence values from LLMs and other sources",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"license": "MIT",
"keywords": [
"prism",
"confidence",
"uncertainty",
"llm",
"ai",
"extraction",
"calibration"
],
"homepage": "https://docs.prismlang.dev/docs/confidence/",
"dependencies": {
"@prism-lang/core": "1.3.0"
},
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/node": "^20.11.30",
"dotenv": "^16.5.0",
"jest": "^29.7.0",
"ts-jest": "^29.1.2",
"typescript": "^5.4.3"
},
"files": [
"dist",
"src",
"README.md"
],
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/HaruHunab1320/Prism-TS.git",
"directory": "packages/prism-confidence"
},
"scripts": {
"build": "tsc -p tsconfig.build.json",
"test": "jest",
"typecheck": "tsc --noEmit",
"clean": "rm -rf dist",
"dev": "tsc -w"
}
}