text_generation / app.py
baadror's picture
files added
ec716b2
raw
history blame
102 Bytes
from fastapi import FastAPI
app = FastAPI()
@app.get('/')
def greet():
return {'Hello': 'Moti'}