from fastapi import FastAPI app = FastAPI() @app.get("/") def home(): return {"message": "Aksara Lontara API is running"} @app.get("/predict") def predict(): return {"result": "Ini contoh endpoint"}