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

4
pub mod config;
5
6
pub mod harmony;
pub mod json;
7
pub mod parsers;
8
pub mod pythonic;
9
pub mod response;
10
11
#[cfg(test)]
pub mod tests;
12
pub mod tools;
13
pub mod xml;
14
15

// Re-export main types and functions for convenience
16
pub use config::{JsonParserConfig, ToolCallConfig, ToolCallParserType};
17
pub use harmony::parse_tool_calls_harmony_complete;
18
pub use json::try_tool_call_parse_json;
19
20
21
22
pub use parsers::{
    detect_and_parse_tool_call, detect_tool_call_start, find_tool_call_end_position,
    try_tool_call_parse,
};
23
pub use pythonic::try_tool_call_parse_pythonic;
24
25
pub use response::{CalledFunction, ToolCallResponse, ToolCallType};
pub use tools::{try_tool_call_parse_aggregate, try_tool_call_parse_stream};
26
pub use xml::try_tool_call_parse_xml;