Files
oh-my-opencode/dist/shared/agent-variant.d.ts
T
2026-03-14 04:56:50 +00:00

10 lines
489 B
TypeScript

import type { OhMyOpenCodeConfig } from "../config";
export declare function resolveAgentVariant(config: OhMyOpenCodeConfig, agentName?: string): string | undefined;
export declare function resolveVariantForModel(config: OhMyOpenCodeConfig, agentName: string, currentModel: {
providerID: string;
modelID: string;
}): string | undefined;
export declare function applyAgentVariant(config: OhMyOpenCodeConfig, agentName: string | undefined, message: {
variant?: string;
}): void;