tkyodrift
Version:
Lightweight CLI tool and library for detecting AI model drift using embeddings and scalar metrics. Tracks semantic, conceptual, and lexical change over time.
13 lines (12 loc) • 430 B
TypeScript
declare module 'tkyodrift' {
/**
* Analyzes drift for a single text input and saves embeddings and scalar metrics.
* @param text - The input or output string to analyze.
* @param ioType - The type of text (e.g. "input", "output", or custom).
* @returns A Promise that resolves when the drift analysis is complete.
*/
export default function tkyoDrift(
text: string,
ioType: string
): Promise<void>;
}