UNPKG

@noanswer/context-compose

Version:

Orchestrate complex AI interactions with Context Compose. A powerful CLI and server for building, validating, and managing context for large language models using the Model Context Protocol (MCP).

13 lines (12 loc) 406 B
/** * Read and parse a YAML file asynchronously with caching. */ export declare function readYamlFile<T>(filePath: string): Promise<T>; /** * Read and parse multiple YAML files in parallel with caching. */ export declare function readYamlFiles<T>(filePaths: string[]): Promise<T[]>; /** * Preload YAML files into cache */ export declare function preloadYamlFiles(filePaths: string[]): Promise<void>;