dynamo_parsers/tool_calling/pythonic/
mod.rs

1// SPDX-FileCopyrightText: Copyright (c) 2024-2025 NVIDIA CORPORATION & AFFILIATES. All rights reserved.
2// SPDX-License-Identifier: Apache-2.0
3
4pub mod pythonic_parser;
5
6pub use super::{config, response};
7pub use pythonic_parser::{detect_tool_call_start_pythonic, try_tool_call_parse_pythonic};
8
9pub fn find_tool_call_end_position_pythonic(chunk: &str) -> usize {
10    chunk.len()
11}