summaryrefslogtreecommitdiffstats
path: root/testing/test_async.py
diff options
context:
space:
mode:
authorabc <98614666+xtekky@users.noreply.github.com>2023-10-06 20:51:36 +0200
committerabc <98614666+xtekky@users.noreply.github.com>2023-10-06 20:51:36 +0200
commitfdd8ef1fc3741ac9472b3f9f6e46cf65827566aa (patch)
treeff5efeecf9dd91e1b74b98ca21671e315cf61979 /testing/test_async.py
parent~ | Merge pull request #997 from hlohaus/all (diff)
downloadgpt4free-fdd8ef1fc3741ac9472b3f9f6e46cf65827566aa.tar
gpt4free-fdd8ef1fc3741ac9472b3f9f6e46cf65827566aa.tar.gz
gpt4free-fdd8ef1fc3741ac9472b3f9f6e46cf65827566aa.tar.bz2
gpt4free-fdd8ef1fc3741ac9472b3f9f6e46cf65827566aa.tar.lz
gpt4free-fdd8ef1fc3741ac9472b3f9f6e46cf65827566aa.tar.xz
gpt4free-fdd8ef1fc3741ac9472b3f9f6e46cf65827566aa.tar.zst
gpt4free-fdd8ef1fc3741ac9472b3f9f6e46cf65827566aa.zip
Diffstat (limited to 'testing/test_async.py')
-rw-r--r--testing/test_async.py30
1 files changed, 0 insertions, 30 deletions
diff --git a/testing/test_async.py b/testing/test_async.py
deleted file mode 100644
index 76b109b1..00000000
--- a/testing/test_async.py
+++ /dev/null
@@ -1,30 +0,0 @@
-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