diff options
author | H Lohaus <hlohaus@users.noreply.github.com> | 2024-01-14 16:37:21 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-01-14 16:37:21 +0100 |
commit | 42709f55b27f52048939907b34f42cfdc3537ec0 (patch) | |
tree | d7e5f2ad86beabd68fb08612b86b2a66242bf385 /g4f/Provider/helper.py | |
parent | Merge pull request #1471 from xtekky/upp (diff) | |
download | gpt4free-42709f55b27f52048939907b34f42cfdc3537ec0.tar gpt4free-42709f55b27f52048939907b34f42cfdc3537ec0.tar.gz gpt4free-42709f55b27f52048939907b34f42cfdc3537ec0.tar.bz2 gpt4free-42709f55b27f52048939907b34f42cfdc3537ec0.tar.lz gpt4free-42709f55b27f52048939907b34f42cfdc3537ec0.tar.xz gpt4free-42709f55b27f52048939907b34f42cfdc3537ec0.tar.zst gpt4free-42709f55b27f52048939907b34f42cfdc3537ec0.zip |
Diffstat (limited to 'g4f/Provider/helper.py')
-rw-r--r-- | g4f/Provider/helper.py | 14 |
1 files changed, 4 insertions, 10 deletions
diff --git a/g4f/Provider/helper.py b/g4f/Provider/helper.py index fce1ee6f..160074f7 100644 --- a/g4f/Provider/helper.py +++ b/g4f/Provider/helper.py @@ -5,7 +5,7 @@ import os import random import secrets import string -from asyncio import AbstractEventLoop, BaseEventLoop +from asyncio import AbstractEventLoop from platformdirs import user_config_dir from browser_cookie3 import ( chrome, chromium, opera, opera_gx, @@ -27,19 +27,13 @@ def get_event_loop() -> AbstractEventLoop: AbstractEventLoop: The current or new event loop. """ try: - loop = asyncio.get_event_loop() - if isinstance(loop, BaseEventLoop): - loop._check_closed() - except RuntimeError: - loop = asyncio.new_event_loop() - asyncio.set_event_loop(loop) - try: - asyncio.get_running_loop() + loop = asyncio.get_running_loop() if not hasattr(loop.__class__, "_nest_patched"): import nest_asyncio nest_asyncio.apply(loop) except RuntimeError: - pass + loop = asyncio.new_event_loop() + asyncio.set_event_loop(loop) except ImportError: raise RuntimeError( 'Use "create_async" instead of "create" function in a running event loop. Or install "nest_asyncio" package.' |