@emmahyde/thinking-patterns
Version:
MCP server combining systematic thinking, mental models, debugging approaches, and stochastic algorithms for comprehensive cognitive pattern support
26 lines (25 loc) • 875 B
TypeScript
import { z } from 'zod';
/**
* Stochastic Algorithm Schema
*
* Defines the structure for probabilistic algorithms used in decision-making
* under uncertainty, including Monte Carlo methods, simulated annealing,
* and other stochastic optimization techniques.
*/
export declare const StochasticAlgorithmSchema: z.ZodObject<{
algorithm: z.ZodString;
problem: z.ZodString;
parameters: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
result: z.ZodOptional<z.ZodString>;
}, "strip", z.ZodTypeAny, {
problem: string;
algorithm: string;
parameters?: Record<string, unknown> | undefined;
result?: string | undefined;
}, {
problem: string;
algorithm: string;
parameters?: Record<string, unknown> | undefined;
result?: string | undefined;
}>;
export type StochasticAlgorithmData = z.infer<typeof StochasticAlgorithmSchema>;