1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
//! Typed structured-output trait + parser.
//!
//! [`KlieoResponse`] lets callers map an LLM reply onto a strongly-typed
//! Rust struct. The caller derives the trait (via
//! `#[derive(KlieoResponse)]` from `klieo-macros`) on a type that also
//! implements [`serde::de::DeserializeOwned`] and `schemars::JsonSchema`,
//! then:
//!
//! 1. Calls `T::json_schema()` and passes it as
//! `ResponseFormat::StructuredOutput { schema }` (or
//! `ResponseFormat::Json { schema }`) on the [`crate::ChatRequest`].
//! 2. After the LLM responds, runs [`parse_structured`] on the reply
//! text to recover a typed `T`.
//!
//! The parser tolerates the common failure mode where providers wrap
//! JSON in markdown code fences despite being asked for raw JSON.
use crateError;
/// Maximum byte length of input accepted by [`parse_structured`].
///
/// Multi-megabyte malicious or runaway LLM replies would otherwise be
/// allocated end-to-end before `serde_json` rejects them. Capping
/// at 1 MiB bounds memory pressure for compliance-grade deployments
/// where parser inputs may originate from third-party providers.
pub const MAX_PARSE_INPUT_BYTES: usize = 1024 * 1024;
/// Trait implemented by types that can be parsed from a structured LLM
/// response.
///
/// Typically derived via `#[derive(KlieoResponse)]` from
/// `klieo-macros`. Callers must also derive `serde::Deserialize` and
/// `schemars::JsonSchema` on the same type — the derive only emits the
/// `KlieoResponse` impl itself and forwards schema generation to
/// `schemars`.
///
/// # Method-name collision with `schemars::JsonSchema`
///
/// Both this trait and `schemars::JsonSchema` define a `json_schema`
/// associated function. When a type derives both, call sites must
/// disambiguate via fully-qualified syntax:
///
/// ```ignore
/// let schema = <MyType as klieo_core::KlieoResponse>::json_schema();
/// ```
///
/// The collision is intentional: keeping `json_schema()` as the public
/// surface here matches the obvious naming, and disambiguation is a
/// one-line cost paid only at the rare site that touches the schema
/// directly (most callers hand the value off to `ChatRequest`).
///
/// # Example (manual impl, no macro)
///
/// ```
/// use klieo_core::response::{KlieoResponse, parse_structured};
/// use serde::Deserialize;
/// use serde_json::json;
///
/// #[derive(Deserialize)]
/// struct Greeting {
/// greeting: String,
/// }
///
/// impl KlieoResponse for Greeting {
/// fn json_schema() -> serde_json::Value {
/// json!({
/// "type": "object",
/// "properties": { "greeting": { "type": "string" } },
/// "required": ["greeting"],
/// })
/// }
/// }
///
/// let g: Greeting = parse_structured(r#"{"greeting": "hi"}"#).unwrap();
/// assert_eq!(g.greeting, "hi");
/// ```
/// Parse an LLM reply (raw text content) into a typed `T`.
///
/// Tolerates surrounding markdown code-fences (```` ```json ... ``` ````
/// or bare ```` ``` ... ``` ````) and leading / trailing whitespace.
/// Many providers wrap JSON in fences despite being asked for raw JSON;
/// this helper papers over that.
///
/// # Size cap
///
/// Inputs larger than [`MAX_PARSE_INPUT_BYTES`] are rejected before any
/// allocation-heavy parsing runs, so a hostile or runaway provider
/// cannot push the host into multi-megabyte allocations on every reply.
///
/// # Errors
///
/// Returns [`Error::BadResponse`] on any deserialization failure. The
/// payload is intentionally **position-only** (`line` / `col`) — the
/// raw `serde_json::Error::Display` body would echo attacker- or
/// LLM-controlled byte fragments into the run-log / OTLP traces, which
/// matters in compliance deployments. The variant is permanent
/// (`retryable() == false`); retrying the same reply will fail
/// identically. Callers wishing to retry should request a fresh
/// completion with a tighter prompt or schema.
/// Strip a leading ```` ```json\n ```` (or ```` ```\n ````) and trailing
/// ```` ``` ```` if both are present. Returns the original string
/// otherwise.