Release Date: July 2025
Feature Status: Performance Enhancement
Breaking Changes: None
HyperFlow's Python execution environment now uses lazy loading for heavy data science libraries (numpy, pandas, matplotlib, scipy, PIL). This reduces memory usage and startup time for simple Python scripts while maintaining full compatibility with existing code.
Heavy libraries are now loaded only when explicitly imported by user code:
No changes required - all existing Python code works exactly the same:
# These still work - just load when first imported
import numpy as np
import pandas as pd
import matplotlib.pyplot as plt
from PIL import Image
# These are still pre-loaded
import json
import requests