打分请求超时时间延长至 60 秒
Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
This commit is contained in:
@@ -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 {
|
||||||
|
|||||||
Reference in New Issue
Block a user