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
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
//! LLM-based HS code classification — **trait hook** (v0.4).
//!
//! `hs-predict` deliberately does **not** ship a concrete LLM API client.
//! Instead it defines the [`LlmClassifier`] trait, which you implement with
//! whatever HTTP transport, model, and prompt customisation your application
//! requires.
//!
//! The library provides:
//! - [`LlmPrompt`] — pre-built system + user text (EN/JA) ready to send
//! - [`LlmResponse`] — the expected return value from your implementation
//! - [`parse_llm_json`] — helper that strips markdown fences and deserialises
//! the LLM's JSON reply into an [`LlmResponse`]
//! - [`MockLlmClassifier`] — deterministic stub for unit tests (`mock` feature)
//!
//! Requires the **`llm`** Cargo feature.
//!
//! # Example
//!
//! ```rust,no_run
//! # #[cfg(feature = "llm")]
//! # mod example {
//! use hs_predict::llm::{LlmClassifier, LlmPrompt, LlmResponse, parse_llm_json};
//! use futures::future::BoxFuture;
//!
//! struct MyClient { api_key: String }
//!
//! impl LlmClassifier for MyClient {
//! fn classify<'a>(&'a self, prompt: &'a LlmPrompt) -> BoxFuture<'a, hs_predict::Result<LlmResponse>> {
//! Box::pin(async move {
//! // 1. Call your LLM API using prompt.system_text / prompt.user_text
//! let raw_json: String = todo!("send HTTP request, receive text");
//! // 2. Parse and return
//! parse_llm_json(&raw_json)
//! })
//! }
//! }
//! # }
//! ```
pub use MockLlmClassifier;
pub use PromptBuilder;
use BoxFuture;
use ;
// ─────────────────────────────────────────────────────────────────────────────
// LlmPrompt
// ─────────────────────────────────────────────────────────────────────────────
/// Input passed to [`LlmClassifier::classify`].
///
/// Contains pre-built prompt text as well as structured SMILES analysis
/// for implementations that want to build a custom prompt.
// ─────────────────────────────────────────────────────────────────────────────
// LlmResponse
// ─────────────────────────────────────────────────────────────────────────────
/// Response that [`LlmClassifier::classify`] must return.
///
/// All fields map directly to fields of [`HsPrediction`](crate::types::HsPrediction).
///
/// # JSON schema expected from the LLM
/// ```json
/// {
/// "hs_code": "291511",
/// "confidence": 0.85,
/// "rationale": "Acetic acid → heading 29.15 (saturated acyclic carboxylic acid).",
/// "alternatives": [
/// { "hs_code": "291519", "confidence": 0.10, "reason": "If purity threshold not met." }
/// ]
/// }
/// ```
/// An alternative HS code suggestion returned by the LLM.
// ─────────────────────────────────────────────────────────────────────────────
// LlmClassifier trait
// ─────────────────────────────────────────────────────────────────────────────
/// Trait for LLM-based HS code classification.
///
/// Implement this with your preferred LLM provider (Anthropic Claude,
/// OpenAI GPT-4o, local Ollama, …) and attach it to the pipeline via
/// [`HsPipeline::with_llm`](crate::pipeline::HsPipeline::with_llm).
///
/// # Contract
/// - Must return an [`LlmResponse`] with `hs_code` that is exactly 6 ASCII
/// digits. The pipeline validates this and returns
/// [`HsPredictError::ValidationFailed`](crate::HsPredictError::ValidationFailed)
/// if the code is malformed.
/// - `confidence` should follow the guide in [`LlmPrompt::system_text`]:
/// ≥ 0.90 for certain sub-heading, ≥ 0.70 for certain heading.
/// - Must be `Send + Sync` (required for `Arc<dyn LlmClassifier>`).
///
/// # Minimal implementation
/// ```rust,no_run
/// # #[cfg(feature = "llm")]
/// # {
/// use hs_predict::llm::{LlmClassifier, LlmPrompt, LlmResponse, parse_llm_json};
/// use futures::future::BoxFuture;
///
/// struct MyClient;
///
/// impl LlmClassifier for MyClient {
/// fn classify<'a>(&'a self, prompt: &'a LlmPrompt) -> BoxFuture<'a, hs_predict::Result<LlmResponse>> {
/// Box::pin(async move {
/// let raw = String::from(r#"{"hs_code":"291511","confidence":0.85,"rationale":"...","alternatives":[]}"#);
/// parse_llm_json(&raw)
/// })
/// }
/// }
/// # }
/// ```
// ─────────────────────────────────────────────────────────────────────────────
// parse_llm_json helper
// ─────────────────────────────────────────────────────────────────────────────
/// Parse a raw LLM API text response into an [`LlmResponse`].
///
/// Handles the most common formatting quirks LLMs exhibit:
/// - Plain JSON
/// - JSON wrapped in ` ```json … ``` ` markdown fences
/// - JSON wrapped in plain ` ``` … ``` ` fences
/// - Leading / trailing whitespace
///
/// # Errors
/// Returns [`HsPredictError::LlmResponseParseError`](crate::HsPredictError::LlmResponseParseError)
/// if the string cannot be deserialised as [`LlmResponse`].
///
/// # Example
/// ```rust
/// # #[cfg(feature = "llm")]
/// # {
/// use hs_predict::llm::{parse_llm_json, LlmResponse};
///
/// let raw = r#"```json
/// {"hs_code":"291511","confidence":0.85,"rationale":"Acetic acid.","alternatives":[]}
/// ```"#;
///
/// let r: LlmResponse = parse_llm_json(raw).unwrap();
/// assert_eq!(r.hs_code, "291511");
/// # }
/// ```
/// Strip ` ```json ` or ` ``` ` fences from LLM output.
// ─────────────────────────────────────────────────────────────────────────────
// Tests
// ─────────────────────────────────────────────────────────────────────────────