From 5db58fd87f230fbe5bae599bb4b120ab42cad3be Mon Sep 17 00:00:00 2001 From: "t.me/xtekky" <98614666+xtekky@users.noreply.github.com> Date: Sat, 24 Jun 2023 03:47:00 +0200 Subject: gpt4free v2, first release --- testing/readme_table.py | 52 +++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 52 insertions(+) create mode 100644 testing/readme_table.py (limited to 'testing/readme_table.py') diff --git a/testing/readme_table.py b/testing/readme_table.py new file mode 100644 index 00000000..d798ae9d --- /dev/null +++ b/testing/readme_table.py @@ -0,0 +1,52 @@ +from g4f.Provider import ( + Ails, + You, + Bing, + Yqcloud, + Theb, + Aichat, + Bard, + Vercel, + Forefront, + Lockchat, + Liaobots, + H2o, + ChatgptLogin, + DeepAi, + GetGpt +) + +from urllib.parse import urlparse + +providers = [ + Ails, + You, + Bing, + Yqcloud, + Theb, + Aichat, + Bard, + Vercel, + Forefront, + Lockchat, + Liaobots, + H2o, + ChatgptLogin, + DeepAi, + GetGpt +] + +# | Website| Provider| gpt-3.5-turbo | gpt-4 | Supports Stream | Status | Needs Auth | +print('| Website| Provider| gpt-3.5 | gpt-4 | Streaming | Status | Auth |') +print('| --- | --- | --- | --- | --- | --- | --- |') + +for provider in providers: + parsed_url = urlparse(provider.url) + name = f"`g4f.Provider{provider.__name__.split('.')[-1]}`" + url = f'[{parsed_url.netloc}]({provider.url})' + has_gpt4 = '✔️' if 'gpt-4' in provider.model else '❌' + has_gpt3_5 = '✔️' if 'gpt-3.5-turbo' in provider.model else '❌' + streaming = '✔️' if provider.supports_stream else '❌' + needs_auth = '✔️' if provider.needs_auth else '❌' + + print(f'| {url} | {name} | {has_gpt3_5} | {has_gpt4} | {streaming} | ![Active](https://img.shields.io/badge/Active-brightgreen) | {needs_auth} |') \ No newline at end of file -- cgit v1.2.3