mirror of
https://github.com/xtekky/gpt4free.git
synced 2025-12-06 02:30:41 -08:00
Implement Nuitka-based package building with architecture support
Co-authored-by: hlohaus <983577+hlohaus@users.noreply.github.com>
This commit is contained in:
parent
878604fc0f
commit
1f85c85b72
4 changed files with 183 additions and 41 deletions
12
g4f_cli.py
Normal file
12
g4f_cli.py
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
#!/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()
|
||||
Loading…
Add table
Add a link
Reference in a new issue