Spaces:
Sleeping
Sleeping
| from fastapi import FastAPI | |
| app = FastAPI(title="Eroha Minimal Health Test") | |
| def home(): | |
| return { | |
| "message": "Hello, Eroha — this is a minimal FastAPI test!", | |
| "check_url": "/check" | |
| } | |
| def check_health(): | |
| return { | |
| "status": "ok", | |
| "modules": ["core", "rag", "metrics"], | |
| "version": "test-1.0" | |
| } | |