We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 79fd81c commit 60f8e39Copy full SHA for 60f8e39
src/app/api/native/convert/route.ts
@@ -21,7 +21,7 @@ export async function POST(request: Request) {
21
const body: ConvertRequestBody = await request.json();
22
23
// 2. Read the IL_FILE_CONVERSION_SERVICE from .env
24
- const baseUrl = process.env.IL_FILE_CONVERSION_SERVICE || 'http://doclingserve:5000';
+ const baseUrl = process.env.IL_FILE_CONVERSION_SERVICE || 'http://doclingserve:5001';
25
26
// 3. Check the health of the conversion service before proceeding
27
const healthRes = await fetch(`${baseUrl}/health`);
0 commit comments