UNPKG

llm-json-fix

Version:

Fix malformed JSON outputs from Large Language Models (LLMs)

9 lines 461 B
/** * LLM JSON Fix - A library for fixing malformed JSON outputs from LLMs * * @packageDocumentation */ import { fixLLMJson, FixLLMJsonOptions } from './regular/jsonFix'; import { LLMJSONFixError, UnrepairableJSONError, AmbiguousRepairError, BufferLimitExceededError } from './utils/errors'; export { fixLLMJson, FixLLMJsonOptions, LLMJSONFixError, UnrepairableJSONError, AmbiguousRepairError, BufferLimitExceededError }; //# sourceMappingURL=index.d.ts.map