Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
yunshi1207
/
chatbot
like
0
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
yunshi1207
commited on
Sep 16, 2023
Commit
68d0eb5
·
1 Parent(s):
5aa037a
Create app.py
Browse files
Files changed (1)
hide
show
app.py
+5
-0
app.py
ADDED
Viewed
@@ -0,0 +1,5 @@
1
+
# 获取秘密的值
2
+
secret_value = secrets.get(OPENAI_API_KEY)
3
+
4
+
# 使用秘密的值
5
+
print(f"The secret value is: {secret_value}")