Files
gpt4free/g4f_cli.py
2025-08-27 01:07:16 +02:00

9 lines
219 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
"""
if __name__ == "__main__":
from g4f.cli import main
main()