diff options
author | abc <98614666+xtekky@users.noreply.github.com> | 2023-09-26 15:13:58 +0200 |
---|---|---|
committer | abc <98614666+xtekky@users.noreply.github.com> | 2023-09-26 15:13:58 +0200 |
commit | cc3f0bce7275509e5b66bc2068c2c23586f3b147 (patch) | |
tree | dc032ea0a4e989a11de5fbce921d8d161cb8d136 /g4f | |
parent | ~ | v-0.1.3.5 (diff) | |
download | gpt4free-cc3f0bce7275509e5b66bc2068c2c23586f3b147.tar gpt4free-cc3f0bce7275509e5b66bc2068c2c23586f3b147.tar.gz gpt4free-cc3f0bce7275509e5b66bc2068c2c23586f3b147.tar.bz2 gpt4free-cc3f0bce7275509e5b66bc2068c2c23586f3b147.tar.lz gpt4free-cc3f0bce7275509e5b66bc2068c2c23586f3b147.tar.xz gpt4free-cc3f0bce7275509e5b66bc2068c2c23586f3b147.tar.zst gpt4free-cc3f0bce7275509e5b66bc2068c2c23586f3b147.zip |
Diffstat (limited to '')
-rw-r--r-- | g4f/__init__.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/g4f/__init__.py b/g4f/__init__.py index b27ad820..bf61b26f 100644 --- a/g4f/__init__.py +++ b/g4f/__init__.py @@ -2,9 +2,9 @@ from __future__ import annotations from g4f import models from .Provider import BaseProvider, AsyncProvider from .typing import Any, CreateResult, Union -import random logging = False +version = '0.1.3.6' def get_model_and_provider(model: Union[models.Model, str], provider: type[BaseProvider], stream: bool): if isinstance(model, str): |