Skip to content

remora-monorepo


remora-monorepo / lib / CompilerLimits

Interface: CompilerLimits

Defined in: packages/core/src/compiler/types.ts:133

Properties

maxAttempts?

optional maxAttempts: number

Defined in: packages/core/src/compiler/types.ts:135

Upper bound for wait-for-condition maxAttempts. Default: Infinity (unbounded).


maxBackoffMultiplier?

optional maxBackoffMultiplier: number

Defined in: packages/core/src/compiler/types.ts:139

Upper bound for backoffMultiplier. Default: 2.


maxPromptTokens?

optional maxPromptTokens: number

Defined in: packages/core/src/compiler/types.ts:145

Maximum token count for prompt templates (llm-prompt and agent-loop).

See

MAXIMUM_PROMPT_LENGTH


maxSleepMs?

optional maxSleepMs: number

Defined in: packages/core/src/compiler/types.ts:137

Upper bound for sleep durationMs and wait intervalMs in ms. Default: 300_000 (5 min).


maxTimeoutMs?

optional maxTimeoutMs: number

Defined in: packages/core/src/compiler/types.ts:143

Upper bound for wait-for-condition timeoutMs in ms. Default: 600_000 (10 min).


minBackoffMultiplier?

optional minBackoffMultiplier: number

Defined in: packages/core/src/compiler/types.ts:141

Lower bound for backoffMultiplier. Default: 1.