dynamo_renderer/deepseek/mod.rs
1// SPDX-FileCopyrightText: Copyright (c) 2024-2026 NVIDIA CORPORATION & AFFILIATES. All rights reserved.
2// SPDX-License-Identifier: Apache-2.0
3
4//! Native (non-jinja) prompt formatters for DeepSeek model families.
5//!
6//! DeepSeek's HF repos ship no usable `chat_template`, so these render the
7//! prompt in Rust instead. [`common`] holds the shared thinking-mode /
8//! tool-injection logic; [`v4`] and [`v32`] are the per-family formatters.
9
10pub mod common;
11pub mod v32;
12pub mod v4;