14 lines
225 B
Python
14 lines
225 B
Python
from fastapi import FastAPI
|
|
|
|
|
|
app = FastAPI(title="K12Study Python AI", version="0.1.0")
|
|
|
|
|
|
@app.get("/health")
|
|
def health():
|
|
return {
|
|
"name": "python-ai",
|
|
"status": "UP",
|
|
"version": "0.1.0",
|
|
}
|