Derock
Derock
Try `chmod +x ./bin/main`
Try running `node scripts/startup.mjs` and make sure there aren't any errors.
If you run `./bin/main --help` does that work?
Unfortunately the pull request to add tcp_server to master of https://github.com/ggerganov/llama.cpp was closed, so you need to use the tcp_server branch.
I think the process is hanging on ssr with trpc trying to start the llama.cpp server. What environment variables are you using? Can you also try and set NODE_ENV=development this...
Can you try pulling the latest version and run that? (you will need to run `pnpm install` and `pnpm build` again) And can you also try running `./bin/main -l 3001...
Can you try using the following env: ```env # The web-server's HOST and PORT HOST=127.0.0.1 PORT=3000 # Disable this if you want to run llama.cpp#tcp_server on your own # Uses...
Also just pushed an update to main that should fix your `Invalid input` error.
i dont think we need to introduce a whole dependency for this, just use `node:crypto`, ```js import { randomBytes } from "node:crypto"; session({ secret: process.env.SESSION_PASSWORD ?? randomBytes(32).toString("hex"), ... }); ```...
Just ran into this issue. When using harbor registry, robot accounts are prefixed with `robot$`. In bash, anything prefixed with $ is expanded to the contents of that environment variable....