pub use ares_agent::{AgentConfig, AgentRegistry, AgentRequest, Execute, ExecutionResult};
pub use ares_llm::coordinator::ConversationMessage;
pub use ares_llm::{LLMClient, LLMResponse, Llm};
pub use ares_tools::{Calculator, Tool, Tools};
pub use ares_types::types::ToolDefinition;
pub use ares_types::{AppError, TenantContext, TenantTier};
pub use cordis::{Context, Dispatch, Loader, Plugin, PluginRegistry, Service};
#[cfg(feature = "postgres")]
pub use ares_store::Store;
pub fn register_plugins(reg: &PluginRegistry) {
cordis::register_plugins(reg);
ares_store::register_plugins(reg);
ares_tools::register_plugins(reg);
ares_llm::register_plugins(reg);
ares_agent::register_plugins(reg);
ares_http::register_plugins(reg);
}