Hugging Face
Models
Datasets
Spaces
Buckets
new
Docs
Enterprise
Pricing
Website
Tasks
HuggingChat
Collections
Languages
Organizations
Community
Blog
Posts
Daily Papers
Learn
Discord
Forum
GitHub
Solutions
Team & Enterprise
Hugging Face PRO
Enterprise Support
Inference Providers
Inference Endpoints
Storage Buckets
Log In
Sign Up
Spaces:
zhzabcd
/
api
like
0
Paused
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
zhzabcd
commited on
Sep 28, 2024
Commit
55093d7
·
verified
·
1 Parent(s):
d2d992a
Create main.py
Browse files
Files changed (1)
hide
show
main.py
+8
-0
main.py
ADDED
Viewed
@@ -0,0 +1,8 @@
1
+
from flask import Flask
2
+
app = Flask(__name__)
3
+
4
+
@app.route("/")
5
+
def index():
6
+
return "OpenAI API free proxy is running (by zhz)/OpenAI API免费代理系统已启动 (由ZHZ制作)"
7
+
8
+
app.run()