Files
oh-my-opencode/dist/shared/agent-variant.d.ts
T

10 lines
489 B
TypeScript
Raw Normal View History

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;