hs-predict 0.5.1

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
11
12
13
14
//! 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.
//!
//! Chapter 38 (miscellaneous chemical preparations) is handled by
//! [`chapter38`], which provides use-case-based classification for mixtures.

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