[package]
edition = "2021"
name = "llm-output-parser"
version = "0.2.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Production-grade parser for extracting structured data from LLM responses. Handles think blocks, markdown fences, malformed JSON, and real-world model output without an additional LLM call."
homepage = "https://github.com/RecursiveIntell/Libraries"
documentation = "https://docs.rs/llm-output-parser"
readme = "README.md"
keywords = [
"llm",
"parser",
"json",
"ai",
"langchain",
]
categories = [
"parsing",
"text-processing",
]
license = "MIT"
repository = "https://github.com/RecursiveIntell/Libraries"
[features]
default = []
yaml = ["dep:serde_yaml"]
[lib]
name = "llm_output_parser"
path = "src/lib.rs"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.serde_yaml]
version = "0.9"
optional = true
[dependencies.thiserror]
version = "2"
[dev-dependencies.serde]
version = "1"
features = ["derive"]