mohammedhafeez commited on
Commit
2af4d88
·
1 Parent(s): 2f95236

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -1
app.py CHANGED
@@ -1,7 +1,8 @@
 
1
  import openai
2
  import gradio
3
 
4
- openai.api_key = "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"
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