tokenGPT-2 / app.py
Itsme5's picture
Update app.py
a3780db verified
raw
history blame
196 Bytes
from fastapi import FastAPI
# Δημιουργία FastAPI εφαρμογής
app = FastAPI()
@app.get("/")
async def root():
return {"message": "Welcome to your basic FastAPI application!"}