Files
oh-my-opencode/dist/hooks/anthropic-context-window-limit-recovery/summarize-retry-strategy.d.ts
T
2026-03-14 04:56:50 +00:00

14 lines
453 B
TypeScript

import type { AutoCompactState } from "./types";
import type { OhMyOpenCodeConfig } from "../../config";
import type { Client } from "./client";
export declare function runSummarizeRetryStrategy(params: {
sessionID: string;
msg: Record<string, unknown>;
autoCompactState: AutoCompactState;
client: Client;
directory: string;
pluginConfig: OhMyOpenCodeConfig;
errorType?: string;
messageIndex?: number;
}): Promise<void>;