Hello, have you considered publishing it to npm?
This would allow it to be run directly with npx without having to clone the entire project.
{
"name": "@huggingface/responses.js",
"packageManager": "pnpm@10.10.0",
"version": "0.1.0",
"type": "module",
"description": "Server for handling AI responses",
"repository": "https://github.com/huggingface/huggingface.js.git",
"publishConfig": {
"access": "public"
},
+ "bin": "./dist/index.js",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
}
OPENAI_BASE_URL="http://localhost:11434/v1" npx @huggingface/responses.js
Hello, have you considered publishing it to npm?
This would allow it to be run directly with
npxwithout having to clone the entire project.{ "name": "@huggingface/responses.js", "packageManager": "pnpm@10.10.0", "version": "0.1.0", "type": "module", "description": "Server for handling AI responses", "repository": "https://github.com/huggingface/huggingface.js.git", "publishConfig": { "access": "public" }, + "bin": "./dist/index.js", "main": "./dist/index.js", "module": "./dist/index.mjs", "types": "./dist/index.d.ts", }OPENAI_BASE_URL="http://localhost:11434/v1" npx @huggingface/responses.js