Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
souzat19
/
3.1-finituning
like
0
Paused
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
d0a12b9
3.1-finituning
/
app.py
souzat19
Create app.py
d0a12b9
verified
3 months ago
raw
Copy download link
history
blame
Safe
108 Bytes
from
fastapi
import
FastAPI
app = FastAPI()
@app.get(
"/"
)
def
greet_json
():
return
{
"Hello"
:
"World!"
}