UNPKG

@ai2070/l0

Version:

L0: The Missing Reliability Substrate for AI

30 lines 631 B
export const minimalStructured = { autoCorrect: false, strictMode: false, retry: { attempts: 1, backoff: "fixed", baseDelay: 500, }, }; export const recommendedStructured = { autoCorrect: true, strictMode: false, retry: { attempts: 2, backoff: "fixed-jitter", baseDelay: 1000, maxDelay: 5000, }, }; export const strictStructured = { autoCorrect: true, strictMode: true, retry: { attempts: 3, backoff: "fixed-jitter", baseDelay: 1000, maxDelay: 10000, }, }; //# sourceMappingURL=structured.js.map