hs-predict 0.3.0

HS code prediction for chemical products — Akinator-style interactive classification with rule-based and LLM hybrid engine
Documentation
1
2
3
4
5
6
7
8
9
10
//! Rule-based HS code classification engine.
//!
//! The engine uses a static CAS → HS mapping table ([`static_table`])
//! and a shape/purity matcher ([`matcher`]) to classify known compounds
//! without any LLM calls.

pub mod jp_table;
pub mod matcher;
pub mod static_table;
pub mod types;