mirror of
https://github.com/openclaw/openclaw.git
synced 2026-07-21 05:11:41 +00:00
16 lines
468 B
TypeScript
16 lines
468 B
TypeScript
// Qa Lab plugin module implements suite runtime agent common behavior.
|
|
import { resolveQaLiveTurnTimeoutMs } from "./live-timeout.js";
|
|
import type { QaProviderMode } from "./model-selection.js";
|
|
|
|
type QaLiveTimeoutEnv = {
|
|
providerMode: QaProviderMode;
|
|
primaryModel: string;
|
|
alternateModel: string;
|
|
};
|
|
|
|
function liveTurnTimeoutMs(env: QaLiveTimeoutEnv, fallbackMs: number) {
|
|
return resolveQaLiveTurnTimeoutMs(env, fallbackMs);
|
|
}
|
|
|
|
export { liveTurnTimeoutMs };
|