AashitaK commited on
Commit
e9c5287
·
verified ·
1 Parent(s): 4068977

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -9,7 +9,7 @@ to provide responses to user queries. Response API from OpenAI is used for both
9
 
10
  # Vector store ID for the retrieval of knowledge base documents
11
  # Load the vector store ID from the environment variable
12
- vector_store_id = "vs_67d49daee8e881918b6abd6f28bfffea" #os.getenv('VECTOR_STORE_ID')
13
 
14
  # Check if the VECTOR_STORE_ID environment variable is set
15
  if not vector_store_id:
 
9
 
10
  # Vector store ID for the retrieval of knowledge base documents
11
  # Load the vector store ID from the environment variable
12
+ vector_store_id = os.getenv('VECTOR_STORE_ID')
13
 
14
  # Check if the VECTOR_STORE_ID environment variable is set
15
  if not vector_store_id: