fix: increase maxDuration to 300s for Fluid Compute (#30)

This commit is contained in:
Dayuan Jiang
2025-12-01 00:46:40 +09:00
committed by GitHub
parent 0d0d553e23
commit b4679f6598

View File

@@ -2,7 +2,7 @@ import { streamText, convertToModelMessages } from 'ai';
import { getAIModel } from '@/lib/ai-providers';
import { z } from "zod";
export const maxDuration = 60;
export const maxDuration = 300;
export async function POST(req: Request) {
try {