Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Itsme5
/
tokenGPT-2
like
0
Runtime error
App
Files
Files
Community
1
Fetching metadata from the HF Docker repository...
2dabd17
tokenGPT-2
/
app.py
Itsme5
Update app.py
a3780db
verified
5 months ago
raw
Copy download link
history
blame
Safe
196 Bytes
from
fastapi
import
FastAPI
# Δημιουργία FastAPI εφαρμογής
app = FastAPI()
@app.get(
"/"
)
async
def
root
():
return
{
"message"
:
"Welcome to your basic FastAPI application!"
}