Files
whyrating-engine-legacy/web/app/api/pipelines/[pipelineId]/execute/route.ts
2026-02-02 18:19:00 +00:00

40 lines
1.1 KiB
TypeScript

import { NextRequest, NextResponse } from 'next/server';
const API_BASE_URL = process.env.NEXT_PUBLIC_API_URL || 'http://localhost:8001';
export async function POST(
request: NextRequest,
{ params }: { params: Promise<{ pipelineId: string }> }
) {
try {
const { pipelineId } = await params;
const body = await request.json();
const url = `${API_BASE_URL}/api/pipelines/${pipelineId}/execute`;
const response = await fetch(url, {
method: 'POST',
headers: {
'Content-Type': 'application/json',
},
body: JSON.stringify(body),
});
if (!response.ok) {
const error = await response.json().catch(() => ({ detail: 'Unknown error' }));
return NextResponse.json(
{ error: error.detail || 'Failed to execute pipeline' },
{ status: response.status }
);
}
const data = await response.json();
return NextResponse.json(data);
} catch (error) {
console.error('Pipeline execute API error:', error);
return NextResponse.json(
{ error: 'Failed to execute pipeline' },
{ status: 500 }
);
}
}