hs_predict/llm/mod.rs
1//! LLM API client for HS code classification (implemented in v0.4).
2//!
3//! This module will provide:
4//! - Async client for Claude / OpenAI-compatible APIs
5//! - Context-aware prompt builder using product description + SMILES analysis
6//! - Structured output parsing (HS code + confidence + rationale)
7//!
8//! Enabled by the **`llm`** Cargo feature.
9//! A mock client for testing is available via the **`mock`** feature.
10
11// v0.4 TODO: implement LlmClient, LlmConfig, and mock client