vectorless 0.1.26

Hierarchical, reasoning-native document intelligence engine
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// Copyright (c) 2026 vectorless developers
// SPDX-License-Identifier: Apache-2.0

//! Utility functions and helpers.
//!
//! This module provides common utilities used across the codebase:
//!
//! - **Token estimation** — Fast and accurate token counting
//! - **Timing** — Performance measurement utilities
//! - **Format** — Text and number formatting utilities

pub mod fingerprint;
mod format;
mod timing;
mod token;

pub use token::estimate_tokens;