yyds_ai/lib.rs
1//! AI capabilities for the yyds ecosystem.
2//!
3//! This crate provides vector search, model integration, and AI-driven
4//! database optimization features.
5
6#![warn(missing_docs)]
7
8/// A simple hello function to verify the crate is working.
9pub fn hello() {
10 println!("Hello from yyds-ai");
11}