Jameson Grieve

Results 6 comments of Jameson Grieve

`npm start` requires that `next build` be run prior in order to have a production build. `npm run build`, or you can run it in dev mode with `npm run...

`next` is a JS command. It has to be run through Node or similar. That `warn` shouldn't cause an issue but it's not occurring for me on Windows. Fresh clone...

Can we please see "some strange tensor error" and the prompt to convert, as well as your Llama related env settings? Are you running in a local, remote or containerized...

You're pointing at the correct file. Here's mine for reference. `MODEL_PATH=G:/llm/Agent-LLM/models/alpaca-7b/ggml-model-q4_1.bin`

This appears to be an Axios issue. Best workaround is to check for "Network Error" and elaborate IE "Communication error. Is the server running? Are the ports defined correctly?"

Example of self-solving chain step parallelism, use how you please: ```python import asyncio import random class Step: def __init__(self, id, name, dependencies=[]): self.id = id self.name = name self.dependencies =...