From 32e20611dfa18b4dbea223876ef3bd8d49b1b28b Mon Sep 17 00:00:00 2001 From: Richard Beales Date: Thu, 6 Apr 2023 12:26:07 +0100 Subject: [PATCH] small typo in Pinecone settings that referred to google --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 7903129910cb..a89c5d03b7e2 100644 --- a/README.md +++ b/README.md @@ -152,14 +152,14 @@ are loaded for the agent at any given time. ### Setting up environment variables For Windows Users: ``` -setx PINECONE_API_KEY "YOUR_GOOGLE_API_KEY" -export PINECONE_ENV="Your region" # something like: us-east4-gcp +setx PINECONE_API_KEY "YOUR_PINECONE_API_KEY" +export PINECONE_ENV="Your pinecone region" # something like: us-east4-gcp ``` For macOS and Linux users: ``` -export PINECONE_API_KEY="YOUR_GOOGLE_API_KEY" -export PINECONE_ENV="Your region" # something like: us-east4-gcp +export PINECONE_API_KEY="YOUR_PINECONE_API_KEY" +export PINECONE_ENV="Your pinecone region" # something like: us-east4-gcp ```