nika 0.35.4

Semantic YAML workflow engine for AI tasks - DAG execution, MCP integration, multi-provider LLM support
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! Media pipeline: extraction, detection, storage, and processing.
//!
//! Handles binary content (images, audio, documents) from MCP tool results.
//! Uses Content-Addressable Storage (CAS) with blake3 hashing.

pub(crate) mod detect;
pub(crate) mod error;
pub(crate) mod processor;
pub(crate) mod store;
#[cfg(test)]
mod tests_e2e;
pub(crate) mod types;

pub use error::MediaError;
pub(crate) use processor::MediaProcessor;
pub use store::CasStore;
pub use types::{MediaBudget, MediaRef};