mirror of
https://github.com/xtekky/gpt4free.git
synced 2024-11-09 01:10:34 +00:00
11 lines
222 B
Python
11 lines
222 B
Python
import sys
|
|
import pathlib
|
|
|
|
sys.path.append(str(pathlib.Path(__file__).parent.parent.parent))
|
|
|
|
import g4f
|
|
|
|
g4f.debug.logging = False
|
|
g4f.debug.version_check = False
|
|
|
|
DEFAULT_MESSAGES = [{'role': 'user', 'content': 'Hello'}] |