Shivanshutripathi commited on
Commit
d03d6be
·
verified ·
1 Parent(s): c075457

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -3
app.py CHANGED
@@ -23,10 +23,10 @@ from langchain import OpenAI
23
 
24
 
25
 
26
- print(os.getenv('OPEN_API_KEY'),"1")
27
- print(os.environ['OPEN_API_KEY'],"2")
28
 
29
- OPENAI_API_KEY = os.getenv('OPEN_API_KEY')
30
  GOOGLE_API_KEY = os.getenv('GOOGLE_API_KEY')
31
  openai.api_key = OPENAI_API_KEY
32
  genai.configure(api_key=GOOGLE_API_KEY)
 
23
 
24
 
25
 
26
+ print(os.getenv('OPENAI_API_KEY'),"1")
27
+ print(os.environ['OPENAI_API_KEY'],"2")
28
 
29
+ OPENAI_API_KEY = os.getenv('OPENAI_API_KEY')
30
  GOOGLE_API_KEY = os.getenv('GOOGLE_API_KEY')
31
  openai.api_key = OPENAI_API_KEY
32
  genai.configure(api_key=GOOGLE_API_KEY)