Hugging Face
Models
Datasets
Spaces
Buckets
new
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Dylan-Kaneshiro
/
test
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
Dylan-Kaneshiro
commited on
Dec 16, 2023
Commit
39fe6ad
·
1 Parent(s):
68b3f84
test api key
Browse files
Files changed (1)
hide
show
app.py
+4
-0
app.py
CHANGED
Viewed
@@ -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