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

@@ -89,7 +89,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 }
@@ -270,7 +270,7 @@ export async function POST(request: NextRequest) {
status: "failed",
error: error.message || "Analysis failed",
timeline: timeline.map((item) =>
item.status === "running" ? { ...item, status: "failed" } : item
item.status === "running" ? { ...item, status: "failed" as const } : item
),
},
{ token }