ai-agent 0.13.4

Idiomatic agent sdk inspired by the claude code source leak
Documentation
//! PDF utilities

/// Get file extension for MIME type
#[allow(dead_code)]
pub fn extension_for_mime_type(_mime_type: &str) -> Option<String> {
    None
}

/// Check if content type is binary
#[allow(dead_code)]
pub fn is_binary_content_type(_content_type: &str) -> bool {
    false
}

/// Check if file is likely a PDF
#[allow(dead_code)]
pub fn is_likely_pdf(_path: &str) -> bool {
    false
}