mirror of
https://github.com/xtekky/gpt4free.git
synced 2024-12-23 19:11:48 +03:00
13 lines
273 B
Python
13 lines
273 B
Python
from .providers.types import ProviderType
|
|
|
|
logging: bool = False
|
|
version_check: bool = True
|
|
last_provider: ProviderType = None
|
|
last_model: str = None
|
|
version: str = None
|
|
log_handler: callable = print
|
|
logs: list = []
|
|
|
|
def log(text):
|
|
if logging:
|
|
log_handler(text) |