import { NextRequest, NextResponse } from 'next/server' const BACKEND_URL = process.env.BACKEND_API_URL || 'http://backend-compliance:8002' export async function POST(request: NextRequest) { try { const body = await request.text() const response = await fetch(`${BACKEND_URL}/api/compliance/agent/compare`, { method: 'POST', headers: { 'Content-Type': 'application/json' }, body, signal: AbortSignal.timeout(300000), }) if (!response.ok) { return NextResponse.json({ error: `Backend: ${response.status}` }, { status: response.status }) } return NextResponse.json(await response.json()) } catch (error) { return NextResponse.json({ error: 'Vergleich fehlgeschlagen' }, { status: 503 }) } }