from fastapi import FastAPI app = FastAPI() @app.get("/") def root(): """ This is an api that says, "Hello!" """ return {"response": "Hello ! {{ node_name }} !"}