kenleeyx commited on
Commit
4716193
·
1 Parent(s): 23192ed

fix: now retrieves org key and proj key from env

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -7,8 +7,8 @@ import json
7
 
8
  client = OpenAI(
9
  api_key=os.getenv('OPENAI_KEY'),
10
- organization='org-6bWY3KRhkJFR0jSzQ61IFaLI',
11
- project='proj_NWVmGD4VKw62rhiIHTp1OsdL',
12
  )
13
 
14
  #need to give info on how to convert to CSV
 
7
 
8
  client = OpenAI(
9
  api_key=os.getenv('OPENAI_KEY'),
10
+ organization=os.getenv('ORG_KEY'),
11
+ project=os.getenv('PROJ_KEY')
12
  )
13
 
14
  #need to give info on how to convert to CSV