diff options
author | Heiner Lohaus <hlohaus@users.noreply.github.com> | 2024-02-23 17:21:10 +0100 |
---|---|---|
committer | Heiner Lohaus <hlohaus@users.noreply.github.com> | 2024-02-23 17:21:10 +0100 |
commit | 7953560303ad82f13f3d4c910db1193da21b11d7 (patch) | |
tree | e88b25bcc756e02741ea1875fcf62ff9ba76b975 /etc/tool/readme_table.py | |
parent | Fix isssue with stop in client (diff) | |
download | gpt4free-7953560303ad82f13f3d4c910db1193da21b11d7.tar gpt4free-7953560303ad82f13f3d4c910db1193da21b11d7.tar.gz gpt4free-7953560303ad82f13f3d4c910db1193da21b11d7.tar.bz2 gpt4free-7953560303ad82f13f3d4c910db1193da21b11d7.tar.lz gpt4free-7953560303ad82f13f3d4c910db1193da21b11d7.tar.xz gpt4free-7953560303ad82f13f3d4c910db1193da21b11d7.tar.zst gpt4free-7953560303ad82f13f3d4c910db1193da21b11d7.zip |
Diffstat (limited to '')
-rw-r--r-- | etc/tool/readme_table.py | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/etc/tool/readme_table.py b/etc/tool/readme_table.py index 293d1eb3..895b515f 100644 --- a/etc/tool/readme_table.py +++ b/etc/tool/readme_table.py @@ -87,7 +87,8 @@ def print_models(): "openai": "OpenAI", "huggingface": "Huggingface", "anthropic": "Anthropic", - "inflection": "Inflection" + "inflection": "Inflection", + "meta": "Meta" } provider_urls = { "google": "https://gemini.google.com/", @@ -95,6 +96,7 @@ def print_models(): "huggingface": "https://huggingface.co/", "anthropic": "https://www.anthropic.com/", "inflection": "https://inflection.ai/", + "meta": "https://llama.meta.com/" } lines = [ @@ -120,6 +122,6 @@ def print_models(): print("\n".join(lines)) if __name__ == "__main__": - #print_providers() - #print("\n", "-" * 50, "\n") + print_providers() + print("\n", "-" * 50, "\n") print_models()
\ No newline at end of file |