CoolFace
Apppublic

datacomp/teaching_arithmetic

sourceHugging Faceapache-2.0updated 2y agoView on Hugging Face
0likes
app.py8 linesDownload Raw Back to root
1from fastapi import FastAPI2 3app = FastAPI()4 5@app.get("/")6def greet_json():7    return {"Hello": "World!"}8