1 2 3 4 5 6 7 8
// src/prompts/mod.rs //! 提示词模板模块 mod chat_prompt_template; mod prompt_template; pub use chat_prompt_template::ChatPromptTemplate; pub use prompt_template::PromptTemplate;