diff options
-rw-r--r-- | README.md | 2 | ||||
-rw-r--r-- | g4f/__init__.py | 16 | ||||
-rw-r--r-- | setup.py | 2 |
3 files changed, 17 insertions, 3 deletions
@@ -4,7 +4,7 @@ By using this repository or any code related to it, you agree to the [legal noti ### New - official website: *https://g4f.ai* -- latest pypi version: ([0.1.3.9](https://pypi.org/project/g4f/0.1.3.9)): +- latest pypi version: ([0.1.4.0](https://pypi.org/project/g4f/0.1.4.0)): ```sh pip install -U g4f diff --git a/g4f/__init__.py b/g4f/__init__.py index 6fe7aa10..5bf96451 100644 --- a/g4f/__init__.py +++ b/g4f/__init__.py @@ -2,9 +2,23 @@ from __future__ import annotations from g4f import models from .Provider import BaseProvider, AsyncProvider from .typing import Any, CreateResult, Union +from requests import get logging = False -version = '0.1.3.9' +version = '0.1.4.0' + +def check_pypi_version(): + try: + response = get(f"https://pypi.org/pypi/g4f/json").json() + latest_version = response["info"]["version"] + + if version != latest_version: + print(f'New pypi version: {latest_version} (current: {version}) | pip install -U g4f') + + except Exception as e: + print(f'Failed to check g4f pypi version: {e}') + +check_pypi_version() def get_model_and_provider(model: Union[models.Model, str], provider: type[BaseProvider], stream: bool): if isinstance(model, str): @@ -14,7 +14,7 @@ with open("requirements.txt") as f: with open("interference/requirements.txt") as f: api_required = f.read().splitlines() -VERSION = '0.1.3.9' +VERSION = '0.1.4.0' DESCRIPTION = ( "The official gpt4free repository | various collection of powerful language models" ) |