mirror of
https://github.com/xtekky/gpt4free.git
synced 2025-12-06 02:30:41 -08:00
Add comprehensive build workflow for multiple package formats (pip, winget, docker, executables, deb) (#3138)
* Add comprehensive build workflow and package configuration Co-authored-by: hlohaus <983577+hlohaus@users.noreply.github.com> * Complete build workflow implementation with documentation and testing Co-authored-by: hlohaus <983577+hlohaus@users.noreply.github.com> * Update WinGet package structure and build dependencies per feedback Co-authored-by: hlohaus <983577+hlohaus@users.noreply.github.com> * Simplify WinGet package identifier to "g4f" and add winget/* to .gitignore Co-authored-by: hlohaus <983577+hlohaus@users.noreply.github.com> --------- Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> Co-authored-by: hlohaus <983577+hlohaus@users.noreply.github.com>
This commit is contained in:
parent
aab5c045a2
commit
9f02959cfc
9 changed files with 682 additions and 1 deletions
8
g4f_cli.py
Normal file
8
g4f_cli.py
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
#!/usr/bin/env python3
|
||||
"""
|
||||
Entry point for g4f CLI executable builds
|
||||
"""
|
||||
|
||||
if __name__ == "__main__":
|
||||
from g4f.cli import main
|
||||
main()
|
||||
Loading…
Add table
Add a link
Reference in a new issue