taratrankennedy commited on
Commit
4a32eb3
1 Parent(s): f0d7b32

Replace API Key with Secret

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -10,7 +10,7 @@ os.environ["TOKENIZERS_PARALLELISM"] = "false"
10
  filename = "output_country_details.txt" # Path to the file storing country-specific details
11
  retrieval_model_name = 'output/sentence-transformer-finetuned/'
12
 
13
- openai.api_key = 'sk-proj-oVA5iQ69wntu3ip4dgQRT3BlbkFJ1rV3jBBZfyC3oGBeMujI'
14
 
15
 
16
 
 
10
  filename = "output_country_details.txt" # Path to the file storing country-specific details
11
  retrieval_model_name = 'output/sentence-transformer-finetuned/'
12
 
13
+ openai.api_key = os.environ["OPENAI_API_KEY"]
14
 
15
 
16