mirror of
https://github.com/Mintplex-Labs/anything-llm.git
synced 2024-11-19 20:50:09 +01:00
Update readme to not prefer Pinecone
This commit is contained in:
parent
1ae68ffb59
commit
79e3faa82d
@ -61,8 +61,8 @@ This monorepo consists of three main sections:
|
|||||||
- `yarn` and `node` on your machine
|
- `yarn` and `node` on your machine
|
||||||
- `python` 3.9+ for running scripts in `collector/`.
|
- `python` 3.9+ for running scripts in `collector/`.
|
||||||
- access to an LLM like `GPT-3.5`, `GPT-4`.
|
- access to an LLM like `GPT-3.5`, `GPT-4`.
|
||||||
- a [Pinecone.io](https://pinecone.io) free account*.
|
- (optional) a vector database like Pinecone, qDrant, Weaviate, or Chroma*.
|
||||||
*you can use drop in replacements for these. This is just the easiest to get up and running fast. We support multiple vector database providers.
|
*AnythingLLM by default uses a built-in vector db called LanceDB.
|
||||||
|
|
||||||
## How to get started (Docker - simple setup)
|
## How to get started (Docker - simple setup)
|
||||||
[Get up and running in minutes with Docker](./docker/HOW_TO_USE_DOCKER.md)
|
[Get up and running in minutes with Docker](./docker/HOW_TO_USE_DOCKER.md)
|
||||||
|
@ -23,13 +23,13 @@ OPEN_MODEL_PREF='gpt-3.5-turbo'
|
|||||||
# CHROMA_ENDPOINT='http://localhost:8000'
|
# CHROMA_ENDPOINT='http://localhost:8000'
|
||||||
|
|
||||||
# Enable all below if you are using vector database: Pinecone.
|
# Enable all below if you are using vector database: Pinecone.
|
||||||
VECTOR_DB="pinecone"
|
# VECTOR_DB="pinecone"
|
||||||
PINECONE_ENVIRONMENT=
|
# PINECONE_ENVIRONMENT=
|
||||||
PINECONE_API_KEY=
|
# PINECONE_API_KEY=
|
||||||
PINECONE_INDEX=
|
# PINECONE_INDEX=
|
||||||
|
|
||||||
# Enable all below if you are using vector database: LanceDB.
|
# Enable all below if you are using vector database: LanceDB.
|
||||||
# VECTOR_DB="lancedb"
|
VECTOR_DB="lancedb"
|
||||||
|
|
||||||
# Enable all below if you are using vector database: Weaviate.
|
# Enable all below if you are using vector database: Weaviate.
|
||||||
# VECTOR_DB="weaviate"
|
# VECTOR_DB="weaviate"
|
||||||
|
@ -6,7 +6,9 @@
|
|||||||
|
|
||||||
**Requirements**
|
**Requirements**
|
||||||
|
|
||||||
- Pinecone account (free or paid)
|
- Pinecone account with index that allows namespaces.
|
||||||
|
|
||||||
|
**Note:** [Namespaces are not supported in `gcp-starter` environments](https://docs.pinecone.io/docs/namespaces) and are required to work with AnythingLLM.
|
||||||
|
|
||||||
**Instructions**
|
**Instructions**
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user