2023-09-05 15:27:24 +00:00
|
|
|
import sys
|
|
|
|
from pathlib import Path
|
|
|
|
import asyncio
|
|
|
|
|
|
|
|
sys.path.append(str(Path(__file__).parent.parent))
|
2023-10-07 07:02:48 +00:00
|
|
|
sys.path.append(str(Path(__file__).parent.parent.parent))
|
2023-09-05 15:27:24 +00:00
|
|
|
|
|
|
|
import g4f
|
2023-10-22 15:13:13 +00:00
|
|
|
from testing._providers import get_providers
|
2023-09-09 21:07:00 +00:00
|
|
|
from testing.log_time import log_time_async
|
2023-09-05 15:27:24 +00:00
|
|
|
|
2023-09-09 21:07:00 +00:00
|
|
|
async def create_async(provider):
|
2023-09-05 15:27:24 +00:00
|
|
|
try:
|
2023-09-09 21:07:00 +00:00
|
|
|
response = await log_time_async(
|
2023-09-05 15:27:24 +00:00
|
|
|
provider.create_async,
|
2023-10-02 04:47:07 +00:00
|
|
|
model=g4f.models.default.name,
|
|
|
|
messages=[{"role": "user", "content": "Hello, are you GPT 3.5?"}]
|
2023-09-05 15:27:24 +00:00
|
|
|
)
|
2023-09-09 21:07:00 +00:00
|
|
|
print(f"{provider.__name__}:", response)
|
2023-09-05 15:27:24 +00:00
|
|
|
except Exception as e:
|
2023-10-02 04:47:07 +00:00
|
|
|
print(f"{provider.__name__}: {e.__class__.__name__}: {e}")
|
2023-09-05 15:27:24 +00:00
|
|
|
|
|
|
|
async def run_async():
|
2023-09-09 21:07:00 +00:00
|
|
|
responses: list = [
|
2023-10-02 04:47:07 +00:00
|
|
|
create_async(provider)
|
|
|
|
for provider in get_providers()
|
|
|
|
if provider.working
|
2023-09-05 15:27:24 +00:00
|
|
|
]
|
2023-10-02 04:47:07 +00:00
|
|
|
await asyncio.gather(*responses)
|
2023-09-05 15:27:24 +00:00
|
|
|
|
|
|
|
print("Total:", asyncio.run(log_time_async(run_async)))
|