mirror of
https://github.com/Mintplex-Labs/anything-llm.git
synced 2024-11-05 06:20:10 +01:00
add Pinecone Readme
This commit is contained in:
parent
62e3f62e82
commit
e81dde4b9c
21
server/utils/vectorDbProviders/pinecone/PINECONE_SETUP.md
Normal file
21
server/utils/vectorDbProviders/pinecone/PINECONE_SETUP.md
Normal file
@ -0,0 +1,21 @@
|
||||
# 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!
|
||||
```
|
Loading…
Reference in New Issue
Block a user