| """ | |
| 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"] | |