Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
markpeace
/
rise_ai
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
e9107c4
rise_ai
/
app.py
markpeace
test
e9107c4
over 1 year ago
raw
Copy download link
history
blame
Safe
198 Bytes
#import json
from
flask
import
Flask,request
# Initializing flask app
app = Flask(__name__)
@app.route(
'/'
, methods=[
'GET'
,
'POST'
]
)
def
index
():
return
{
"response"
:
"just some junk response"
}