[router] add harmony tool parser base structure and interface (#11036)

This commit is contained in:
Simo Lin
2025-09-28 22:46:38 -04:00
committed by GitHub
parent dba751a896
commit 2572886367
5 changed files with 143 additions and 6 deletions

View File

@@ -5,6 +5,7 @@
// Individual parser modules
pub mod deepseek_parser;
pub mod glm4_moe_parser;
pub mod gpt_oss_harmony_parser;
pub mod gpt_oss_parser;
pub mod json_parser;
pub mod kimik2_parser;
@@ -17,6 +18,7 @@ pub mod step3_parser;
// Re-export parser types for convenience
pub use deepseek_parser::DeepSeekParser;
pub use glm4_moe_parser::Glm4MoeParser;
pub use gpt_oss_harmony_parser::GptOssHarmonyParser;
pub use gpt_oss_parser::GptOssParser;
pub use json_parser::JsonParser;
pub use kimik2_parser::KimiK2Parser;