diff options
author | Heiner Lohaus <hlohaus@users.noreply.github.com> | 2024-01-14 16:18:46 +0100 |
---|---|---|
committer | Heiner Lohaus <hlohaus@users.noreply.github.com> | 2024-01-14 16:18:46 +0100 |
commit | 0c40490a5b430da6272cc47cf5ff9dab17de1ee6 (patch) | |
tree | 98959dd21460dbf910ba6454d1aada10248b5b1c /g4f | |
parent | Fix missing distutils, install setuptools (diff) | |
download | gpt4free-0c40490a5b430da6272cc47cf5ff9dab17de1ee6.tar gpt4free-0c40490a5b430da6272cc47cf5ff9dab17de1ee6.tar.gz gpt4free-0c40490a5b430da6272cc47cf5ff9dab17de1ee6.tar.bz2 gpt4free-0c40490a5b430da6272cc47cf5ff9dab17de1ee6.tar.lz gpt4free-0c40490a5b430da6272cc47cf5ff9dab17de1ee6.tar.xz gpt4free-0c40490a5b430da6272cc47cf5ff9dab17de1ee6.tar.zst gpt4free-0c40490a5b430da6272cc47cf5ff9dab17de1ee6.zip |
Diffstat (limited to '')
-rw-r--r-- | g4f/gui/server/backend.py | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/g4f/gui/server/backend.py b/g4f/gui/server/backend.py index 4a5cafa8..b4c8f56c 100644 --- a/g4f/gui/server/backend.py +++ b/g4f/gui/server/backend.py @@ -5,6 +5,7 @@ from typing import Generator from g4f import debug, version, models from g4f import _all_models, get_last_provider, ChatCompletion from g4f.image import is_allowed_extension, to_image +from g4f.errors import VersionNotFoundError from g4f.Provider import __providers__ from g4f.Provider.bing.create_images import patch_provider from .internet import get_search_message @@ -91,8 +92,12 @@ class Backend_Api: Returns: dict: A dictionary containing the current and latest version. """ + try: + current_version = version.utils.current_version + except VersionNotFoundError: + current_version = None return { - "version": version.utils.current_version, + "version": current_version, "latest_version": version.get_latest_version(), } |