import { NextResponse } from "next/server";
import { getPublicAIConfig } from "@/lib/ai";

export async function GET() {
  return NextResponse.json(getPublicAIConfig());
}
