mirror of
https://github.com/xtekky/gpt4free.git
synced 2024-12-24 11:34:02 +03:00
9 lines
195 B
Python
9 lines
195 B
Python
from __future__ import annotations
|
|
|
|
from .cli import get_api_parser, run_api_args
|
|
|
|
parser = get_api_parser()
|
|
args = parser.parse_args()
|
|
if args.gui is None:
|
|
args.gui = True
|
|
run_api_args(args) |