import { NextResponse } from 'next/server' import { getPublicByokCatalog } from '@/lib/ai/byok-catalog' export const dynamic = 'force-dynamic' /** Liste publique des fournisseurs / modèles BYOK — aucun secret. */ export async function GET() { const providers = await getPublicByokCatalog() return NextResponse.json( { providers }, { headers: { 'Cache-Control': 'public, s-maxage=3600, stale-while-revalidate=86400' } }, ) }