mirror of
https://github.com/xtekky/gpt4free.git
synced 2024-11-17 09:25:50 +00:00
7 lines
133 B
Python
7 lines
133 B
Python
|
import sys
|
||
|
from pathlib import Path
|
||
|
sys.path.append(str(Path(__file__).parent.parent.parent))
|
||
|
|
||
|
from g4f.gui import run_gui
|
||
|
run_gui()
|