Files
Newbie_CRM/src/app/api/ai/health/route.ts
T

8 lines
260 B
TypeScript

import { NextResponse } from "next/server"
import { checkAiServiceStatus } from "@/lib/ai"
export async function GET() {
const ok = await checkAiServiceStatus()
return NextResponse.json({ status: ok ? "ok" : "unavailable" }, { status: ok ? 200 : 503 })
}