diff --git a/README.md b/README.md
index f427ef50d0f0d95da920d479925ef5d5d3b8e3e2..d5f53831b45ef2364a8ff4077a72b69e2fe9bad8 100644
--- a/README.md
+++ b/README.md
@@ -61,8 +61,8 @@ This monorepo consists of three main sections:
 - `yarn` and `node` on your machine
 - `python` 3.9+ for running scripts in `collector/`.
 - access to an LLM like `GPT-3.5`, `GPT-4`.
-- a [Pinecone.io](https://pinecone.io) free account*.
-*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.
+- (optional) a vector database like Pinecone, qDrant, Weaviate, or Chroma*.
+*AnythingLLM by default uses a built-in vector db called LanceDB.
 
 ## How to get started (Docker - simple setup)
 [Get up and running in minutes with Docker](./docker/HOW_TO_USE_DOCKER.md)
diff --git a/server/.env.example b/server/.env.example
index ff92295ec3e9726d60e1a308bdd11ac64258ebac..489dc2c3aae2402a21885f8573874f7e28111643 100644
--- a/server/.env.example
+++ b/server/.env.example
@@ -23,13 +23,13 @@ OPEN_MODEL_PREF='gpt-3.5-turbo'
 # CHROMA_ENDPOINT='http://localhost:8000'
 
 # Enable all below if you are using vector database: Pinecone.
-VECTOR_DB="pinecone"
-PINECONE_ENVIRONMENT=
-PINECONE_API_KEY=
-PINECONE_INDEX=
+# VECTOR_DB="pinecone"
+# PINECONE_ENVIRONMENT=
+# PINECONE_API_KEY=
+# PINECONE_INDEX=
 
 # 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.
 # VECTOR_DB="weaviate"
diff --git a/server/utils/vectorDbProviders/pinecone/PINECONE_SETUP.md b/server/utils/vectorDbProviders/pinecone/PINECONE_SETUP.md
index 86033f0860bfe4d8b975ca7040284ddb7956569c..789f56f90bec28064750f06b944814708eff5082 100644
--- a/server/utils/vectorDbProviders/pinecone/PINECONE_SETUP.md
+++ b/server/utils/vectorDbProviders/pinecone/PINECONE_SETUP.md
@@ -6,7 +6,9 @@
 
 **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**