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

pub mod pythonic_parser;

pub use super::{config, response};
7
pub use pythonic_parser::{detect_tool_call_start_pythonic, try_tool_call_parse_pythonic};
8
9
10
11

pub fn find_tool_call_end_position_pythonic(chunk: &str) -> usize {
    chunk.len()
}