#[cfg(test)]
use crate::connection::{ConnectionEntry, ConnectionRegistry};
#[cfg(test)]
#[path = "tools/chart_save_tests.rs"]
mod chart_save_tests;
mod contract_tools;
mod database_tools;
mod executor;
mod host_argv;
#[cfg(test)]
#[path = "tools/host_argv_tests.rs"]
mod host_argv_tests;
mod run_tools;
mod sql_format;
mod tool_calls;
pub(crate) use database_tools::DatabaseTools;
pub(crate) use database_tools::WORKSPACE_WRITE_MAX_BYTES;
pub(crate) use run_tools::RunTools;
#[allow(unused_imports)]
pub(crate) use database_tools::{
DrainedObservations, ObservationLog, ObservationOutcome, OverrideLog, ToolObservation,
};
#[allow(unused_imports)]
pub(crate) use sql_format::{collapse_whitespace, format_sql};
#[allow(unused_imports)]
pub(crate) use tool_calls::{SqlCall, sql_tool_call, tool_call_detail};
#[cfg(test)]
#[path = "tools_tests.rs"]
mod tests;
#[cfg(test)]
#[path = "tools/contract_tools_tests.rs"]
mod contract_tools_tests;
#[cfg(test)]
#[path = "tools/format_tests.rs"]
mod format_tests;
#[cfg(test)]
#[path = "tools/observations_tests.rs"]
mod observations_tests;
#[cfg(test)]
#[path = "tools/result_shape_tests.rs"]
mod result_shape_tests;
#[cfg(test)]
#[path = "tools/column_health_tests.rs"]
mod column_health_tests;
#[cfg(test)]
#[path = "tools/join_check_tests.rs"]
mod join_check_tests;
#[cfg(test)]
#[path = "tools/workspace_read_tests.rs"]
mod workspace_read_tests;
#[cfg(test)]
#[path = "tools/workspace_search_tests.rs"]
mod workspace_search_tests;
#[cfg(test)]
#[path = "tools/workspace_write_tests.rs"]
mod workspace_write_tests;
#[cfg(test)]
#[path = "tools/workspace_edit_tests.rs"]
mod workspace_edit_tests;
#[cfg(test)]
#[path = "tools/workspace_edit_append_tests.rs"]
mod workspace_edit_append_tests;
#[cfg(test)]
#[path = "tools/workspace_edit_continuation_tests.rs"]
mod workspace_edit_continuation_tests;
#[cfg(test)]
#[path = "tools/workspace_edit_docs_tests.rs"]
mod workspace_edit_docs_tests;
#[cfg(test)]
#[path = "tools/workspace_read_digest_tests.rs"]
mod workspace_read_digest_tests;