sugars_llm 0.5.4

LLM integration and AI agent builder utilities
Documentation
pub mod agent;
pub mod agent_role;
pub mod audio;
pub mod chunk;
pub mod completion;
pub mod context;
pub mod document;
pub mod embedding;
pub mod extractor;
pub mod image;
pub mod library;
pub mod loader;
pub mod mcp;
pub mod memory;
pub mod memory_ops;
pub mod memory_workflow;
pub mod message;
pub mod prompt;
pub mod tool;
pub mod tool_v2;
pub mod workflow;

// Re-export commonly used types
pub use agent::*;
pub use agent_role::*;
pub use audio::*;
pub use chunk::*;
pub use completion::*;
pub use context::*;
pub use document::*;
pub use embedding::*;
pub use extractor::*;
pub use image::*;
pub use library::*;
pub use loader::*;
pub use mcp::*;
pub use memory::*;
pub use memory_ops::*;
pub use memory_workflow::*;
pub use message::*;
pub use prompt::*;
pub use tool::*;
pub use tool_v2::{Tool as ToolV2, NamedTool, Perplexity};
pub use workflow::*;