//! LLM integration module for CATS tools
//!
//! This module provides utilities for integrating CATS tools with LLM providers
//! like OpenAI, Anthropic, and others that use function calling with JSON arguments.
//!
//! ## Features
//!
//! - **JSON Conversion**: Convert LLM function call JSON to CATS ToolArgs
//! - **Tool Execution**: Execute tools with proper logging and error handling
//! - **Result Handling**: Handle large tool results with truncation
//! - **Assistant Content**: Generate human-friendly descriptions of tool calls
// Re-export main types
pub use generate_assistant_content;
pub use json_to_tool_args;
pub use ;
pub use handle_large_result;