Skip to content
Snippets Groups Projects
Commit e81dde4b authored by timothycarambat's avatar timothycarambat
Browse files

add Pinecone Readme

parent 62e3f62e
No related branches found
No related tags found
No related merge requests found
# How to setup Pinecone Vector Database for AnythingLLM
[Official Pinecone Docs](https://docs.pinecone.io/docs/overview) for reference.
### How to get started
**Requirements**
- Pinecone account (free or paid)
**Instructions**
- Create an index on your Pinecone account. Name can be anything eg: `my-primary-index`
- Metric `cosine`
- Dimensions `1536` since we use OpenAI for embeddings
- 1 pod, all other default settings are fine.
```
VECTOR_DB="pinecone"
PINECONE_ENVIRONMENT=us-west4-gcp-free
PINECONE_API_KEY=sklive-123xyz
PINECONE_INDEX=my-primary-index # the value from the first instruction!
```
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment