Files
oh-my-opencode/dist/tools/delegate-task/model-selection.d.ts
T
2026-03-14 04:56:50 +00:00

13 lines
391 B
TypeScript

import type { FallbackEntry } from "../../shared/model-requirements";
export declare function resolveModelForDelegateTask(input: {
userModel?: string;
userFallbackModels?: string[];
categoryDefaultModel?: string;
fallbackChain?: FallbackEntry[];
availableModels: Set<string>;
systemDefaultModel?: string;
}): {
model: string;
variant?: string;
} | undefined;