[router] add pythonic parser (#9628)

Co-authored-by: Chang Su <chang.s.su@oracle.com>
This commit is contained in:
Simo Lin
2025-08-25 20:40:06 -07:00
committed by GitHub
parent d4c5e53401
commit 03680f33be
4 changed files with 877 additions and 0 deletions

View File

@@ -5,6 +5,8 @@ pub mod errors;
pub mod json_parser;
pub mod mistral_parser;
pub mod partial_json;
pub mod python_literal_parser;
pub mod pythonic_parser;
pub mod qwen_parser;
pub mod registry;
pub mod state;
@@ -18,6 +20,7 @@ mod tests;
pub use errors::{ToolParserError, ToolParserResult};
pub use json_parser::JsonParser;
pub use mistral_parser::MistralParser;
pub use pythonic_parser::PythonicParser;
pub use qwen_parser::QwenParser;
pub use registry::ParserRegistry;
pub use state::{ParsePhase, ParseState};