lilyhof commited on
Commit
3d86d26
·
1 Parent(s): 3293a8a

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -3
app.py CHANGED
@@ -1,9 +1,10 @@
1
- export OPENAI_API_KEY="INSTRUCTOR_API_KEY"
2
- export INSTRUCTOR_PROMPT="INSTRUCTOR_PROMPT"
3
-
4
  import gradio as gr
5
  import os
6
 
 
 
 
 
7
  # Retrieve the API key and instructor prompt from environment variables
8
  api_key = os.environ.get("OPENAI_API_KEY")
9
  instructor_prompt = os.environ.get("INSTRUCTOR_PROMPT")
 
 
 
 
1
  import gradio as gr
2
  import os
3
 
4
+ # Set the environment variables
5
+ os.environ["OPENAI_API_KEY"] = "INSTRUCTOR_API_KEY"
6
+ os.environ["INSTRUCTOR_PROMPT"] = "INSTRUCTOR_PROMPT"
7
+
8
  # Retrieve the API key and instructor prompt from environment variables
9
  api_key = os.environ.get("OPENAI_API_KEY")
10
  instructor_prompt = os.environ.get("INSTRUCTOR_PROMPT")