anda_engine 0.11.10

Agents engine for Anda -- an AI agent framework built with Rust, powered by ICP and TEEs.
//! Extension module providing core AI agent capabilities
//!
//! This module contains essential extensions that enhance AI agent functionality.
//!
//! # Key Components
//!
//! - **Extraction Tools**: Enables structured data extraction from unstructured text
//! - **Fetch Tools**: Fetch Resources Extension for Anda Engine.
//! - **Google Web Search Tool**: Enables web searches and retrieve results.
//! - **Skills Manager**: Load, create, and update file-backed skills.
//!

pub mod extractor;
pub mod fetch;
pub mod fs;
pub mod google;
pub mod note;
pub mod shell;
pub mod skill;
pub mod todo;