gpt4free/g4f_cli.py
copilot-swe-agent[bot] 1f85c85b72 Implement Nuitka-based package building with architecture support
Co-authored-by: hlohaus <983577+hlohaus@users.noreply.github.com>
2025-08-26 22:53:07 +00:00

12 lines
No EOL
269 B
Python

#!/usr/bin/env python3
"""
Entry point for g4f CLI executable builds
This file is used as the main entry point for building executables with Nuitka
"""
import g4f.debug
g4f.debug.version_check = False
if __name__ == "__main__":
from g4f.cli import main
main()