From fdd8ef1fc3741ac9472b3f9f6e46cf65827566aa Mon Sep 17 00:00:00 2001 From: abc <98614666+xtekky@users.noreply.github.com> Date: Fri, 6 Oct 2023 19:51:36 +0100 Subject: ~ | new folder inluding `./tool`and `./testing` --- etc/testing/test_async.py | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 etc/testing/test_async.py (limited to 'etc/testing/test_async.py') diff --git a/etc/testing/test_async.py b/etc/testing/test_async.py new file mode 100644 index 00000000..76b109b1 --- /dev/null +++ b/etc/testing/test_async.py @@ -0,0 +1,30 @@ +import sys +from pathlib import Path +import asyncio + +sys.path.append(str(Path(__file__).parent.parent)) + +import g4f +from testing.test_providers import get_providers +from testing.log_time import log_time_async + +async def create_async(provider): + try: + response = await log_time_async( + provider.create_async, + model=g4f.models.default.name, + messages=[{"role": "user", "content": "Hello, are you GPT 3.5?"}] + ) + print(f"{provider.__name__}:", response) + except Exception as e: + print(f"{provider.__name__}: {e.__class__.__name__}: {e}") + +async def run_async(): + responses: list = [ + create_async(provider) + for provider in get_providers() + if provider.working + ] + await asyncio.gather(*responses) + +print("Total:", asyncio.run(log_time_async(run_async))) \ No newline at end of file -- cgit v1.2.3 From 4fa6e9c0f597c07d2acf10732fe2aeda270c6ca6 Mon Sep 17 00:00:00 2001 From: Heiner Lohaus Date: Sat, 7 Oct 2023 09:02:48 +0200 Subject: Add GptGod Provider Remove timeout from aiohttp providers Disable Opchatgpts and ChatgptLogin provider --- etc/testing/test_async.py | 1 + 1 file changed, 1 insertion(+) (limited to 'etc/testing/test_async.py') diff --git a/etc/testing/test_async.py b/etc/testing/test_async.py index 76b109b1..2c15f6b0 100644 --- a/etc/testing/test_async.py +++ b/etc/testing/test_async.py @@ -3,6 +3,7 @@ from pathlib import Path import asyncio sys.path.append(str(Path(__file__).parent.parent)) +sys.path.append(str(Path(__file__).parent.parent.parent)) import g4f from testing.test_providers import get_providers -- cgit v1.2.3