/** * create_learning Tool * * Create scar, win, or pattern entry in the learnings table. * Generates embeddings client-side and writes directly to Supabase REST API, * eliminating the ww-mcp Edge Function dependency. * * Performance target: <3000ms */ import type { CreateLearningParams, CreateLearningResult } from "../types/index.js"; /** * Execute create_learning tool */ export declare function createLearning(params: CreateLearningParams): Promise; //# sourceMappingURL=create-learning.d.ts.map