lib.rs 738 Bytes
Newer Older
1
2
3
4
5
6
7
8
9
// SPDX-FileCopyrightText: Copyright (c) 2024-2026 NVIDIA CORPORATION & AFFILIATES. All rights reserved.
// SPDX-License-Identifier: Apache-2.0

//! KV Router - Radix tree data structures for LLM KV cache routing.
//!
//! This crate provides the core radix tree implementation and protocols for
//! efficient KV cache lookup and routing in distributed LLM inference systems.

pub mod approx;
10
pub mod flat_hashmap;
11
12
pub mod indexer;
pub mod protocols;
13
pub mod radix_tree;
14
15

// Re-export key types for convenience
16
17
18
19
20
21
22
pub use flat_hashmap::FlatHashMap;
pub use indexer::MaybeError;
pub use protocols::{
    KvCacheEventError, LocalBlockHash, OverlapScores, RouterEvent, WorkerId,
    compute_block_hash_for_seq,
};
pub use radix_tree::RadixTree;