Spaces:
Runtime error
Runtime error
Commit
·
2af4d88
1
Parent(s):
2f95236
Update app.py
Browse files
app.py
CHANGED
@@ -1,7 +1,8 @@
|
|
|
|
1 |
import openai
|
2 |
import gradio
|
3 |
|
4 |
-
openai.api_key = "
|
5 |
|
6 |
messages = [{"role": "system", "content": "You are an expert Python developer and more programming languages with years of experience writing Python code and teaching Python to other programmers"}]
|
7 |
|
|
|
1 |
+
import os
|
2 |
import openai
|
3 |
import gradio
|
4 |
|
5 |
+
openai.api_key = os.environ["OPENAI_API_KEY"]
|
6 |
|
7 |
messages = [{"role": "system", "content": "You are an expert Python developer and more programming languages with years of experience writing Python code and teaching Python to other programmers"}]
|
8 |
|