Skip to content

Type Alias: ToolExecutionContextOverrides

Makaio Framework


Makaio Framework / contracts / ToolExecutionContextOverrides

ToolExecutionContextOverrides = z.infer<typeof ToolExecutionContextOverridesSchema>

Defined in: ../../../packages/contracts/src/tool/schemas.ts:125

Inferred TypeScript type for ToolExecutionContextOverridesSchema.

type ToolExecutionContextOverrides = {
cwd?: string | undefined;
env?: Record<string, string> | undefined;
sessionId?: string | undefined;
agentId?: string | undefined;
adapterId?: string | undefined;
adapterName?: string | undefined;
turnId?: string | undefined;
turnContext?: Record<string, unknown> | undefined;
reasoning?: string | undefined;
toolCallId?: string | undefined;
constraints?: Record<string, unknown> | undefined;
};