import { NextRequest, NextResponse } from 'next/server'; const API_BASE_URL = process.env.NEXT_PUBLIC_API_URL || 'http://localhost:8001'; export async function GET( request: NextRequest, { params }: { params: Promise<{ jobId: string }> } ) { try { const { jobId } = await params; const response = await fetch(`${API_BASE_URL}/jobs/${jobId}/logs`); if (!response.ok) { return NextResponse.json( { error: 'Failed to get logs' }, { status: response.status } ); } const data = await response.json(); return NextResponse.json(data); } catch (error) { console.error('Logs API error:', error); return NextResponse.json( { error: 'Failed to get logs' }, { status: 500 } ); } }