diff options
author | ThatLukinhasGuy <139662282+thatlukinhasguy1@users.noreply.github.com> | 2023-11-04 22:16:42 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-11-04 22:16:42 +0100 |
commit | ef3e2975852bd96b34fbb097b74252c6016ffa6e (patch) | |
tree | b005317cbc7dc1b0334853d936f45659666244aa | |
parent | Update run.py (diff) | |
download | gpt4free-ef3e2975852bd96b34fbb097b74252c6016ffa6e.tar gpt4free-ef3e2975852bd96b34fbb097b74252c6016ffa6e.tar.gz gpt4free-ef3e2975852bd96b34fbb097b74252c6016ffa6e.tar.bz2 gpt4free-ef3e2975852bd96b34fbb097b74252c6016ffa6e.tar.lz gpt4free-ef3e2975852bd96b34fbb097b74252c6016ffa6e.tar.xz gpt4free-ef3e2975852bd96b34fbb097b74252c6016ffa6e.tar.zst gpt4free-ef3e2975852bd96b34fbb097b74252c6016ffa6e.zip |
Diffstat (limited to '')
-rw-r--r-- | g4f/cli.py | 6 |
1 files changed, 1 insertions, 5 deletions
@@ -7,11 +7,9 @@ from g4f import Provider from g4f.api import Api from g4f.gui.run import gui_parser, run_gui_args - def run_gui(args): print("Running GUI...") - def main(): IgnoredProviders = Enum("ignore_providers", {key: key for key in Provider.__all__}) parser = argparse.ArgumentParser(description="Run gpt4free") @@ -26,8 +24,7 @@ def main(): args = parser.parse_args() if args.mode == "api": - controller=Api(g4f, debug=args.debug) - controller.list_ignored_providers=args.ignored_providers + controller=Api(g4f, debug=args.debug, list_ignored_providers=args.ignored_providers) controller.run(args.bind, args.num_threads) elif args.mode == "gui": run_gui_args(args) @@ -35,6 +32,5 @@ def main(): parser.print_help() exit(1) - if __name__ == "__main__": main() |