sophia/lib.rs
1// Copyright 2025 Aquila Labs of Alberta, Canada <matt@cicero.sh>
2// Licensed under the PolyForm Noncommercial License 1.0.0
3// Commercial use requires a separate license: https://cicero.sh/sophia/
4// License text: https://polyformproject.org/licenses/noncommercial/1.0.0/
5// Distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND.
6
7#![allow(non_camel_case_types)]
8
9pub use self::error::Error;
10pub use self::sophia::Sophia;
11
12pub mod error;
13pub mod interpret;
14pub mod pos_tagger;
15pub mod sophia;
16pub mod tokenizer;
17pub mod vocab;