simi-flow 0.1.0

A general-purpose toolkit of similarity checks: protect developers from wasting compute on LLMs for simple tasks
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Common imports for the `simi` crate.
//!
//! Core modules should `use crate::prelude::*;` instead of importing
//! individual std types.

pub use std::{
    boxed::Box,
    format,
    string::{String, ToString},
    vec,
    vec::Vec,
};