UNPKG

llm-stream-parser

Version:

A TypeScript library for parsing and processing structured data from LLM streaming responses with custom tag definitions and event-driven architecture

19 lines (13 loc) 290 B
/** * Main types export file for LLM Stream Parser */ // Base types export * from './base'; // Error types export * from './errors'; // Configuration types export * from './config'; // Event types export * from './events'; // Schema types export * from './schema';