llm-cost-ops 0.1.1

Core library for cost operations on LLM deployments
Documentation
1
2
3
4
5
6
7
8
9
// Cost calculation engine

pub mod calculator;
pub mod normalizer;
pub mod aggregator;

pub use calculator::CostCalculator;
pub use normalizer::TokenNormalizer;
pub use aggregator::CostAggregator;