// SPDX-FileCopyrightText: Copyright (c) 2024-2025 NVIDIA CORPORATION & AFFILIATES. All rights reserved. // SPDX-License-Identifier: Apache-2.0 pub mod config; pub mod harmony_parser; pub mod json_parser; pub mod parsers; pub mod pythonic_parser; pub mod response; pub mod tools; // Re-export main types and functions for convenience pub use config::{JsonParserConfig, ToolCallConfig, ToolCallParserType}; pub use parsers::{detect_and_parse_tool_call, try_tool_call_parse}; pub use response::{CalledFunction, ToolCallResponse, ToolCallType}; pub use tools::{try_tool_call_parse_aggregate, try_tool_call_parse_stream};