Type Alias: ResolveAgentConfigResponse
Makaio Framework / contracts / ResolveAgentConfigResponse
Type Alias: ResolveAgentConfigResponse
Section titled “Type Alias: ResolveAgentConfigResponse”ResolveAgentConfigResponse =
z.infer<typeofResolveAgentConfigSchema.resolveAgentConfig.response>
Defined in: ../../../packages/contracts/src/session/schemas/resolve-agent-config.ts:101
Inferred response type for session.resolveAgentConfig.
Type Composition
Section titled “Type Composition”ResolveAgentConfigResponsez.infer<typeof ResolveAgentConfigSchema.resolveAgentConfig.response>typeof ResolveAgentConfigSchema.resolveAgentConfig.response
Resolved Shape
Section titled “Resolved Shape”type ResolveAgentConfigResponse = { adapterName: string; model?: string | undefined; providerConfigId?: string | undefined; reasoningEffort?: 'none' | 'low' | 'medium' | 'high' | 'extra-high' | undefined; supportedReasoningLevels?: { none?: string | number | undefined; low?: string | number | undefined; medium?: string | number | undefined; high?: string | number | undefined; 'extra-high'?: string | number | undefined; } | undefined; systemPrompt?: string | { mode: 'append'; content: string; } | undefined; allowedTools?: Array<string> | undefined; disallowedTools?: Array<string> | undefined; allowedDirectories?: Array<string> | undefined;};