Skip to content

Commit c2e12da

Browse files
committed
Fix g4fauto
1 parent 509244e commit c2e12da

File tree

4 files changed

+10
-4
lines changed

4 files changed

+10
-4
lines changed

docs/CHANGELOG.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -378,4 +378,10 @@ For instance:
378378
```sh
379379
pytgpt gpt4free test -y
380380
```
381-
- Order providers in ascending. #31
381+
- Order providers in ascending. #31
382+
383+
## v0.4.7
384+
385+
**What's new?**
386+
387+
- `g4fauto` fixed.

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636

3737
setup(
3838
name="python-tgpt",
39-
version="0.4.6",
39+
version="0.4.7",
4040
license="MIT",
4141
author="Smartwa",
4242
maintainer="Smartwa",

src/pytgpt/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
from .utils import appdir
22
import g4f
33

4-
__version__ = "0.4.6"
4+
__version__ = "0.4.7"
55
__author__ = "Smartwa"
66
__repo__ = "https://github.com/Simatwa/python-tgpt"
77

src/pytgpt/gpt4free/utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -184,4 +184,4 @@ def auto(self):
184184
for result in self.get_results(run=False, best=False):
185185
logging.info("Confirming working status of provider : " + result["name"])
186186
if is_working(result["name"]):
187-
return result["name"]
187+
return result["name"]

0 commit comments

Comments
 (0)