fixed docker

This commit is contained in:
2026-02-04 15:37:59 +00:00
parent 6d271ef65b
commit 025ce8f763
16 changed files with 135 additions and 93 deletions

View File

@@ -90,7 +90,7 @@ export async function POST(request: NextRequest) {
status: "failed",
error: "OpenAI API key not configured",
timeline: timeline.map((item) =>
item.status === "running" ? { ...item, status: "failed" } : item
item.status === "running" ? { ...item, status: "failed" as const } : item
),
},
{ token }
@@ -259,7 +259,7 @@ export async function POST(request: NextRequest) {
status: "failed",
error: error.message || "Manual analysis failed",
timeline: timeline.map((item) =>
item.status === "running" ? { ...item, status: "failed" } : item
item.status === "running" ? { ...item, status: "failed" as const } : item
),
},
{ token }