Files
templates/agent/src_main.py.j2
changmin hyeon 0d808202f6 init
2026-02-10 11:33:59 +09:00

10 lines
179 B
Django/Jinja

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