dynamo-mocker 1.1.1

Mock LLM scheduler and KV manager for testing
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// SPDX-FileCopyrightText: Copyright (c) 2025-2026 NVIDIA CORPORATION & AFFILIATES. All rights reserved.
// SPDX-License-Identifier: Apache-2.0

mod demux;
mod entrypoints;
mod live_runtime;
mod router;
mod state;
mod task;

#[cfg(test)]
mod tests;

pub(crate) use entrypoints::{
    simulate_concurrency_requests, simulate_concurrency_workload, simulate_trace_requests,
    simulate_trace_workload,
};
pub(crate) use router::ReplayRouter;