vault-ai
vault-ai copied to clipboard
OP Vault ChatGPT: Give ChatGPT long-term memory using the OP Stack (OpenAI + Pinecone Vector Database). Upload your own custom knowledge base files (PDF, txt, epub, etc) using a simple React frontend.
``` vectors := make([]PineconeVector, len(embeddings)) for i, embedding := range embeddings { chunk := chunks[i] vectors[i] = PineconeVector{ ID: fmt.Sprintf("id-%d", i), Values: embedding, Metadata: map[string]string{ "file_name": chunk.Title, "start": strconv.Itoa(chunk.Start), "end":...
Getting the following error. Running it on Ubuntu. root@localhost:~/vault-ai/secret# npm start > [email protected] start > bash -c 'source ./scripts/source-me.sh && ./scripts/go-compile.sh ./vault-web-server' && echo && ./bin/vault-web-server => Environment Variables Loaded...
I uploaded [Shall I compare thee to a summer’s .txt](https://github.com/pashpashpash/vault-ai/files/11261029/Shall.I.compare.thee.to.a.summer.s.txt) and got... Error: 500 | PANIC: runtime error: index out of range [0] with length 0 goroutine 11080 [running]: github.com/codegangsta/negroni.(*Recovery).ServeHTTP.func1()...
Hi! Very excited about this project. You could potentially get a ton of adoption if you created a docker image to run this? Thanks!
This PR adds Docker support to the application by introducing a multi-stage Dockerfile with an Alpine base image to minimize the final image size. The Dockerfile is divided into three...
As a sentient human looking for real answers, I need a way to a book which is 15MB as rtf. Currently the limits on the live website are too low,...
I see no mention of it in this repo, but I can't upload files as I get this error ``` [negroni] Apr 18 14:44:54 | 304 | 0s GET /js/components_Pages_LandingPage_index_jsx.bundle.js...
I attempted to run vault-ai locally, but I'm getting the following error, both on my Ubuntu and Windows install: ``` 'source' is not recognized as an internal or external command,...
If I upload a few documents, then it seems to forget about ones that I uploaded earlier. Is there a limit to the number of documents or tokens it will...
I've not used Pinecone before so I don't know the right config and I keep getting issues. Can you add a guide so that a beginner can create a pinecone...