lib.rs 754 Bytes
Newer Older
1
2
3
// SPDX-FileCopyrightText: Copyright (c) 2024-2025 NVIDIA CORPORATION & AFFILIATES. All rights reserved.
// SPDX-License-Identifier: Apache-2.0

Neelay Shah's avatar
Neelay Shah committed
4
//! # Dynamo LLM
5
//!
Neelay Shah's avatar
Neelay Shah committed
6
//! The `dynamo.llm` crate is a Rust library that provides a set of traits and types for building
7
8
//! distributed LLM inference solutions.

Biswa Panda's avatar
Biswa Panda committed
9
pub mod backend;
10
pub mod common;
11
pub mod disagg_router;
12
pub mod discovery;
13
pub mod engines;
14
pub mod gguf;
15
pub mod http;
16
pub mod hub;
17
pub mod key_value_store;
18
pub mod kv_router;
19
pub mod local_model;
20
pub mod mocker;
21
pub mod model_card;
22
pub mod model_type;
Biswa Panda's avatar
Biswa Panda committed
23
pub mod preprocessor;
24
pub mod protocols;
25
pub mod recorder;
26
pub mod request_template;
Biswa Panda's avatar
Biswa Panda committed
27
pub mod tokenizers;
28
pub mod tokens;
29
pub mod types;
30

Ryan Olson's avatar
Ryan Olson committed
31
32
#[cfg(feature = "block-manager")]
pub mod block_manager;