You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Delay client import to reduce early import memory usage
- Move client import from line 1053 to right before main.py import (line 1328)
- This delays loading utils.py (which imports tiktoken) until after most other imports
- client cannot be fully lazy-loaded because main.py needs it at import time for @client decorator
- Reduces memory footprint during early import phase
0 commit comments