Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -1,13 +1,13 @@
|
|
1 |
import os
|
2 |
-
from
|
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 =
|
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."},
|