打分请求超时时间延长至 60 秒

Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
This commit is contained in:
fish
2026-05-10 15:19:37 +08:00
parent e6351750cf
commit f2e4bf7041

View File

@@ -27,7 +27,7 @@ export interface ActiveContract {
} }
export function runPipeline(req: RunRequest) { export function runPipeline(req: RunRequest) {
return client.post<RunResponse>('/run', req).then((r) => r.data) return client.post<RunResponse>('/run', req, { timeout: 60_000 }).then((r) => r.data)
} }
export interface RunRangeRequest { export interface RunRangeRequest {