Dylan-Kaneshiro commited on
Commit
39fe6ad
1 Parent(s): 68b3f84

test api key

Browse files
Files changed (1) hide show
  1. app.py +4 -0
app.py CHANGED
@@ -1,5 +1,9 @@
1
  import gradio as gr
2
 
 
 
 
 
3
  def greet(s):
4
  return "Hello, " + s
5
 
 
1
  import gradio as gr
2
 
3
+ import os
4
+
5
+ os.environ['OPENAI_API_KEY'] = os.getenv('API_KEY')
6
+
7
  def greet(s):
8
  return "Hello, " + s
9