Expand description
§vil_output_parser
N10 — LLM Output Parser: extract JSON, regex patterns, and markdown structures from raw LLM output. Includes JSON repair for common LLM mistakes.
Re-exports§
pub use json_parser::repair_json;pub use json_parser::JsonOutputParser;pub use markdown_parser::MarkdownOutputParser;pub use parser::OutputParser;pub use parser::ParseError;pub use parser::ParsedOutput;pub use regex_parser::RegexOutputParser;pub use plugin::OutputParserPlugin;pub use vil_semantic::ParseEvent;pub use vil_semantic::ParseFault;pub use vil_semantic::ParserState;
Modules§
- handlers
- json_
parser - JSON extraction from LLM output.
- markdown_
parser - Markdown structure extraction from LLM output.
- parser
- Core OutputParser trait and types.
- pipeline_
sse - plugin
- regex_
parser - Regex-based extraction from LLM output.
- vil_
semantic