11 lines
357 B
Bash
11 lines
357 B
Bash
# This script shows how you can set the environemtn variables for the Pinecone OpenAI example.
|
|
#
|
|
# run this script with the command source, for example
|
|
# source ./using_pinecone_openai.bash
|
|
|
|
export USER_MANAGED_PINECONE_API_KEY=
|
|
export USER_MANAGED_PINECONE_CLOUD='aws'
|
|
export USER_MANAGED_PINECONE_REGION='us-west-2'
|
|
|
|
export USER_MANAGED_OPENAI_API_KEY=
|