// Agent Tool 实现 pub mod analyze_health_trends; pub mod analyze_lab_report; pub mod get_health_insights; pub mod query_appointments; pub mod query_lab_reports; pub mod query_medications; pub mod query_patient_profile; pub mod query_vitals; pub mod search_medical_knowledge; pub use analyze_health_trends::AnalyzeHealthTrendsTool; pub use analyze_lab_report::AnalyzeLabReportTool; pub use get_health_insights::GetHealthInsightsTool; pub use query_appointments::QueryAppointmentsTool; pub use query_lab_reports::QueryLabReportsTool; pub use query_medications::QueryMedicationsTool; pub use query_patient_profile::QueryPatientProfileTool; pub use query_vitals::QueryPatientVitalsTool; pub use search_medical_knowledge::SearchMedicalKnowledgeTool;