mod.rs 859 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
13
14
pub mod tools;

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