UNPKG

@astermind/astermind-synth

Version:

OmegaSynth - Label-Conditioned Synthetic Data Generator for AsterMind ELM/KELM Pipelines

13 lines (12 loc) 325 B
/** * Label-specific validation and cleaning utilities */ export interface ValidationResult { isValid: boolean; cleaned: string; reason?: string; } /** * Validate and clean a generated string based on its label type */ export declare function validateForLabel(label: string, value: string): ValidationResult;