dy2dx2 commited on
Commit
cd57b2d
·
1 Parent(s): d41d32a

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -3
app.py CHANGED
@@ -1,13 +1,13 @@
1
  import os
2
- from dotenv import load_dotenv
3
  import openai
4
  import gradio as gr
5
 
6
  # Load environment variables from the .env file
7
  load_dotenv()
8
 
9
- openai.api_key = os.getenv("openai_api_key")
10
- openai.organization = os.getenv("openai_organization_id")
11
 
12
 
13
  message_history = [{"role": "system", "content":"You are a physics assistant chatbot and reject to answer anything unrealted to the physics."},
 
1
  import os
2
+ from streamlit import secrets
3
  import openai
4
  import gradio as gr
5
 
6
  # Load environment variables from the .env file
7
  load_dotenv()
8
 
9
+ openai.api_key = secrets["openai_api_key"]
10
+ # openai.organization = os.getenv("openai_organization_id")
11
 
12
 
13
  message_history = [{"role": "system", "content":"You are a physics assistant chatbot and reject to answer anything unrealted to the physics."},