summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThatLukinhasGuy <139662282+thatlukinhasguy1@users.noreply.github.com>2023-11-04 22:16:42 +0100
committerGitHub <noreply@github.com>2023-11-04 22:16:42 +0100
commitef3e2975852bd96b34fbb097b74252c6016ffa6e (patch)
treeb005317cbc7dc1b0334853d936f45659666244aa
parentUpdate run.py (diff)
downloadgpt4free-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
-rw-r--r--g4f/cli.py6
1 files changed, 1 insertions, 5 deletions
diff --git a/g4f/cli.py b/g4f/cli.py
index cb19dde1..2938a335 100644
--- a/g4f/cli.py
+++ b/g4f/cli.py
@@ -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()