AjinkyaPagare's picture
fix: python3.10, disable flash-attn, reduce memory for HF Spaces CPU
043a495
raw
history blame contribute delete
310 Bytes
"""
Runtime Optimization — fast-path execution and streaming.
Ultra-lightweight runtime utilities that optimize agent execution
speed and enable token-by-token streaming.
"""
from .fast_path import FastPathOptimizer
from .streaming import StreamingEngine
__all__ = ["FastPathOptimizer", "StreamingEngine"]