forge-orchestration 0.5.0

Rust-native orchestration platform for distributed workloads with MoE routing, autoscaling, and Nomad integration
Documentation
1
2
3
4
5
6
7
8
9
//! AI/ML inference utilities for Forge
//!
//! Provides request batching, streaming responses, and inference optimization.

pub mod batch;
pub mod streaming;

pub use batch::{BatchConfig, BatchProcessor, BatchRequest, BatchResult};
pub use streaming::{StreamingResponse, StreamingConfig, StreamEvent};