mirror of
https://github.com/xtekky/gpt4free.git
synced 2025-12-06 02:30:41 -08:00
9 lines
No EOL
195 B
Python
9 lines
No EOL
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) |