diff options
author | Tekky <98614666+xtekky@users.noreply.github.com> | 2023-09-17 23:22:07 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-09-17 23:22:07 +0200 |
commit | 489748892b5a22e23f1b77e91fa33500ab119353 (patch) | |
tree | 81b3014035813641350c2a5c01ed35151d8f5fc9 /tool | |
parent | ~ (diff) | |
parent | . (diff) | |
download | gpt4free-489748892b5a22e23f1b77e91fa33500ab119353.tar gpt4free-489748892b5a22e23f1b77e91fa33500ab119353.tar.gz gpt4free-489748892b5a22e23f1b77e91fa33500ab119353.tar.bz2 gpt4free-489748892b5a22e23f1b77e91fa33500ab119353.tar.lz gpt4free-489748892b5a22e23f1b77e91fa33500ab119353.tar.xz gpt4free-489748892b5a22e23f1b77e91fa33500ab119353.tar.zst gpt4free-489748892b5a22e23f1b77e91fa33500ab119353.zip |
Diffstat (limited to 'tool')
-rw-r--r-- | tool/provider_init.py | 4 | ||||
-rw-r--r-- | tool/readme_table.py | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/tool/provider_init.py b/tool/provider_init.py index cd7f9333..fac099ed 100644 --- a/tool/provider_init.py +++ b/tool/provider_init.py @@ -3,13 +3,13 @@ from pathlib import Path def main(): content = create_content() - with open("g4f/provider/__init__.py", "w", encoding="utf-8") as f: + with open("g4f/Provider/__init__.py", "w", encoding="utf-8") as f: f.write(content) def create_content(): path = Path() - paths = path.glob("g4f/provider/*.py") + paths = path.glob("g4f/Provider/*.py") paths = [p for p in paths if p.name not in ["__init__.py", "base_provider.py"]] classnames = [p.stem for p in paths] diff --git a/tool/readme_table.py b/tool/readme_table.py index 9e43b0ae..0598584d 100644 --- a/tool/readme_table.py +++ b/tool/readme_table.py @@ -81,7 +81,7 @@ def print_providers(): netloc = urlparse(_provider.url).netloc website = f"[{netloc}]({_provider.url})" - provider_name = f"g4f.provider.{_provider.__name__}" + provider_name = f"g4f.Provider.{_provider.__name__}" has_gpt_35 = "✔️" if _provider.supports_gpt_35_turbo else "❌" has_gpt_4 = "✔️" if _provider.supports_gpt_4 else "❌" @@ -128,7 +128,7 @@ def print_models(): name = re.split(r":|/", model.name)[-1] base_provider = base_provider_names[model.base_provider] - provider_name = f"g4f.provider.{model.best_provider.__name__}" + provider_name = f"g4f.Provider.{model.best_provider.__name__}" provider_url = provider_urls[model.best_provider.__name__] netloc = urlparse(provider_url).netloc website = f"[{netloc}]({provider_url})" |