Skip to content

Type Alias: CanonicalModelResolvedSelection

Makaio Framework


Makaio Framework / contracts / CanonicalModelResolvedSelection

Type Alias: CanonicalModelResolvedSelection

Section titled “Type Alias: CanonicalModelResolvedSelection”

CanonicalModelResolvedSelection = z.infer<typeof CanonicalModelResolvedSelectionSchema>

Defined in: ../../../packages/contracts/src/canonical-model/schemas.ts:24

type CanonicalModelResolvedSelection = {
kind: 'adapter';
adapterName: string;
providerConfigId: string;
model: string;
reasoningEffort?: 'none' | 'low' | 'medium' | 'high' | 'extra-high' | undefined;
cwd?: string | undefined;
systemPrompt?: string | { mode: 'append'; content: string; } | undefined;
allowedTools?: Array<string> | undefined;
disallowedTools?: Array<string> | undefined;
allowedDirectories?: Array<string> | undefined;
adapterId?: string | undefined;
};