ai-toolkit / ui /src /app /api /auth /route.ts
jbilcke-hf's picture
Convert AI-Toolkit to a HF Space
8822914
import { NextResponse } from 'next/server';
export async function GET() {
// if this gets hit, auth has already been verified
return NextResponse.json({ isAuthenticated: true });
}