Trying to run this locally and once I get past a few gotchas (local.env, needing to be renamed to .env) and needing to `pip3 install poetry`. I start getting back responses like "D I'm sure I'm doing something wrong :)
Thanks for the callout! We'll add the local.env instructions to the readme. Are you using it with input docs or without? Locally it uses GPT4all which isn't nearly as good as Llama or Falcon. I saw a project that is docker for Llama 2 so we might use that instead!
Show HN: RAGstack – private ChatGPT for enterprise VPCs, built with Llama 2
21–30 of 31 posts
Re: Show HN: RAGstack – private ChatGPT for enterprise VPCs, built with Llama 2
#22Re: Show HN: RAGstack – private ChatGPT for enterprise VPCs, built with Llama 2
#23This looks like a great project. Given the costs, I imagine many might want to run on dedicated hardware with GPU - yet: > GPT4All: When you run locally, RAGstack will download and deploy Nomic AI's gpt4all model, which runs on consumer CPUs. > Falcon-7b: On the cloud, RAGstack deploys Technology Innovation Institute's falcon-7b model onto a GPU-enabled GKE cluster. > LLama 2: On the cloud, RAGstack can also deploy t…
In terms of cost - just ran our deployed cluster through GCP's pricing calculator and it's about $300 USD per month. Definitely not cheap for individual use, but pretty affordable for enterprise use. Running the 40B parameter version will be significantly more.
Re: Show HN: RAGstack – private ChatGPT for enterprise VPCs, built with Llama 2
#24So this dumps the documents returned from the vector store into a prompt to the LLM. How does it work when there are many documents returned? What's the upper limit there?
Upper limit depends on the model, Llama 2 is 4k including the prompt.
Re: Show HN: RAGstack – private ChatGPT for enterprise VPCs, built with Llama 2
#25Approximately, what would the hourly cost of running this be on Google Cloud? >In the default-pool > Nodes tab, set: >Machine Configuration from General Purpose to GPU >GPU type: Nvidia TF >Number of GPUs: 1 >Enable GPU time sharing >Max shared clients per GPU: 8 >Machine type: n1-standard-4 >Boot disk size: 50 GB >Enable nodes on spot VMs Not familiar with GCP, but I see n1-standard-4's are in an instance type that…
Re: Show HN: RAGstack – private ChatGPT for enterprise VPCs, built with Llama 2
#26This looks like a great project. Given the costs, I imagine many might want to run on dedicated hardware with GPU - yet: > GPT4All: When you run locally, RAGstack will download and deploy Nomic AI's gpt4all model, which runs on consumer CPUs. > Falcon-7b: On the cloud, RAGstack deploys Technology Innovation Institute's falcon-7b model onto a GPU-enabled GKE cluster. > LLama 2: On the cloud, RAGstack can also deploy t…
Yep the docker containers should run fine on local hardware, but the terraform config only supports GCP right now. In terms of cost - just ran our deployed cluster through GCP's pricing calculator and it's about $300 USD per month. Definitely not cheap for individual use, but pretty affordable for enterprise use. Running the 40B parameter version will be significantly more.
Re: Show HN: RAGstack – private ChatGPT for enterprise VPCs, built with Llama 2
#27This looks like a great project. Given the costs, I imagine many might want to run on dedicated hardware with GPU - yet: > GPT4All: When you run locally, RAGstack will download and deploy Nomic AI's gpt4all model, which runs on consumer CPUs. > Falcon-7b: On the cloud, RAGstack deploys Technology Innovation Institute's falcon-7b model onto a GPU-enabled GKE cluster. > LLama 2: On the cloud, RAGstack can also deploy t…
Yep the docker containers should run fine on local hardware, but the terraform config only supports GCP right now. In terms of cost - just ran our deployed cluster through GCP's pricing calculator and it's about $300 USD per month. Definitely not cheap for individual use, but pretty affordable for enterprise use. Running the 40B parameter version will be significantly more.
Re: Show HN: RAGstack – private ChatGPT for enterprise VPCs, built with Llama 2
#28Re: Show HN: RAGstack – private ChatGPT for enterprise VPCs, built with Llama 2
#29what's the best repo to create your own vector db but then query openai with the context?