"examples/backends/trtllm/deploy/README.md" did not exist on "4a71802842e86950ce15b17c03011e6044eebe6e"
mod.rs 590 Bytes
Newer Older
1
// SPDX-FileCopyrightText: Copyright (c) 2025-2026 NVIDIA CORPORATION & AFFILIATES. All rights reserved.
2
3
// SPDX-License-Identifier: Apache-2.0

4
mod glm47_parser;
5
mod kimi_k2_parser;
6
7
8
mod parser;

pub use super::response;
9
10
11
pub use glm47_parser::{
    detect_tool_call_start_glm47, find_tool_call_end_position_glm47, try_tool_call_parse_glm47,
};
12
13
14
15
pub use kimi_k2_parser::{
    detect_tool_call_start_kimi_k2, find_tool_call_end_position_kimi_k2,
    try_tool_call_parse_kimi_k2,
};
16
17
18
pub use parser::{
    detect_tool_call_start_xml, find_tool_call_end_position_xml, try_tool_call_parse_xml,
};