pygpt-net 2.4.52__py3-none-any.whl → 2.4.53__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- CHANGELOG.md +4 -0
- README.md +5 -1
- pygpt_net/CHANGELOG.txt +4 -0
- pygpt_net/__init__.py +1 -1
- pygpt_net/controller/dialogs/info.py +7 -5
- pygpt_net/data/config/config.json +2 -2
- pygpt_net/data/config/models.json +2 -2
- pygpt_net/data/config/modes.json +2 -2
- {pygpt_net-2.4.52.dist-info → pygpt_net-2.4.53.dist-info}/METADATA +6 -2
- {pygpt_net-2.4.52.dist-info → pygpt_net-2.4.53.dist-info}/RECORD +13 -13
- {pygpt_net-2.4.52.dist-info → pygpt_net-2.4.53.dist-info}/LICENSE +0 -0
- {pygpt_net-2.4.52.dist-info → pygpt_net-2.4.53.dist-info}/WHEEL +0 -0
- {pygpt_net-2.4.52.dist-info → pygpt_net-2.4.53.dist-info}/entry_points.txt +0 -0
CHANGELOG.md
CHANGED
README.md
CHANGED
@@ -2,7 +2,7 @@
|
|
2
2
|
|
3
3
|
[](https://snapcraft.io/pygpt)
|
4
4
|
|
5
|
-
Release: **2.4.
|
5
|
+
Release: **2.4.53** | build: **2025.01.17** | Python: **>=3.10, <3.13**
|
6
6
|
|
7
7
|
> Official website: https://pygpt.net | Documentation: https://pygpt.readthedocs.io
|
8
8
|
>
|
@@ -3953,6 +3953,10 @@ may consume additional tokens that are not displayed in the main window.
|
|
3953
3953
|
|
3954
3954
|
## Recent changes:
|
3955
3955
|
|
3956
|
+
**2.4.53 (2025-01-17)**
|
3957
|
+
|
3958
|
+
- Fix: issue #89
|
3959
|
+
|
3956
3960
|
**2.4.52 (2025-01-17)**
|
3957
3961
|
|
3958
3962
|
- Improved audio input button visibility toggle.
|
pygpt_net/CHANGELOG.txt
CHANGED
pygpt_net/__init__.py
CHANGED
@@ -13,7 +13,7 @@ __author__ = "Marcin Szczygliński"
|
|
13
13
|
__copyright__ = "Copyright 2025, Marcin Szczygliński"
|
14
14
|
__credits__ = ["Marcin Szczygliński"]
|
15
15
|
__license__ = "MIT"
|
16
|
-
__version__ = "2.4.
|
16
|
+
__version__ = "2.4.53"
|
17
17
|
__build__ = "2025.01.17"
|
18
18
|
__maintainer__ = "Marcin Szczygliński"
|
19
19
|
__github__ = "https://github.com/szczyglis-dev/py-gpt"
|
@@ -6,7 +6,7 @@
|
|
6
6
|
# GitHub: https://github.com/szczyglis-dev/py-gpt #
|
7
7
|
# MIT License #
|
8
8
|
# Created By : Marcin Szczygliński #
|
9
|
-
# Updated Date: 2025.01.
|
9
|
+
# Updated Date: 2025.01.17 13:00:00 #
|
10
10
|
# ================================================== #
|
11
11
|
|
12
12
|
import webbrowser
|
@@ -113,7 +113,9 @@ class Info:
|
|
113
113
|
def update_menu(self):
|
114
114
|
"""Update info menu"""
|
115
115
|
for id in self.ids:
|
116
|
-
|
117
|
-
|
118
|
-
|
119
|
-
|
116
|
+
item = 'info.' + id
|
117
|
+
if item in self.window.ui.menu:
|
118
|
+
if id in self.active and self.active[id]:
|
119
|
+
self.window.ui.menu[item].setChecked(True)
|
120
|
+
else:
|
121
|
+
self.window.ui.menu[item].setChecked(False)
|
pygpt_net/data/config/modes.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: pygpt-net
|
3
|
-
Version: 2.4.
|
3
|
+
Version: 2.4.53
|
4
4
|
Summary: Desktop AI Assistant powered by models: OpenAI o1, GPT-4o, GPT-4, GPT-4 Vision, GPT-3.5, DALL-E 3, Llama 3, Mistral, Gemini, Claude, Bielik, and other models supported by Langchain, Llama Index, and Ollama. Features include chatbot, text completion, image generation, vision analysis, speech-to-text, internet access, file handling, command execution and more.
|
5
5
|
Home-page: https://pygpt.net
|
6
6
|
License: MIT
|
@@ -93,7 +93,7 @@ Description-Content-Type: text/markdown
|
|
93
93
|
|
94
94
|
[](https://snapcraft.io/pygpt)
|
95
95
|
|
96
|
-
Release: **2.4.
|
96
|
+
Release: **2.4.53** | build: **2025.01.17** | Python: **>=3.10, <3.13**
|
97
97
|
|
98
98
|
> Official website: https://pygpt.net | Documentation: https://pygpt.readthedocs.io
|
99
99
|
>
|
@@ -4044,6 +4044,10 @@ may consume additional tokens that are not displayed in the main window.
|
|
4044
4044
|
|
4045
4045
|
## Recent changes:
|
4046
4046
|
|
4047
|
+
**2.4.53 (2025-01-17)**
|
4048
|
+
|
4049
|
+
- Fix: issue #89
|
4050
|
+
|
4047
4051
|
**2.4.52 (2025-01-17)**
|
4048
4052
|
|
4049
4053
|
- Improved audio input button visibility toggle.
|
@@ -1,9 +1,9 @@
|
|
1
|
-
CHANGELOG.md,sha256=
|
2
|
-
README.md,sha256=
|
1
|
+
CHANGELOG.md,sha256=KWOYfKpN8niMsPOlBxzzWa6HwCJ2lqi8eCc6DfRVFbU,81496
|
2
|
+
README.md,sha256=479HJZLOrx3eEV2MPBCzOGTqajkvyk0WtNheinq5Mx8,162317
|
3
3
|
icon.png,sha256=CzcINJaU23a9hNjsDlDNbyuiEvKZ4Wg6DQVYF6SpuRg,13970
|
4
|
-
pygpt_net/CHANGELOG.txt,sha256=
|
4
|
+
pygpt_net/CHANGELOG.txt,sha256=KK8gjgSamq4dp3xuzBtfh-9bpbRNfQIe7eLAe0mOjCo,80001
|
5
5
|
pygpt_net/LICENSE,sha256=dz9sfFgYahvu2NZbx4C1xCsVn9GVer2wXcMkFRBvqzY,1146
|
6
|
-
pygpt_net/__init__.py,sha256=
|
6
|
+
pygpt_net/__init__.py,sha256=ITFDmLKbN0XVHH3QEtEwgnwt_j-yR7LAfObu28q1auk,1307
|
7
7
|
pygpt_net/app.py,sha256=i02M96uLngAs_XZCS1Mi84vb3Okx8ZZewbTdhCqFolM,16029
|
8
8
|
pygpt_net/config.py,sha256=Qc1FOBtTf3O6A6-6KoqUGtoJ0u8hXQeowvCVbZFwtik,16405
|
9
9
|
pygpt_net/container.py,sha256=BemiVZPpPNIzfB-ZvnZeeBPFu-AcX2c30OqYFylEjJc,4023
|
@@ -60,7 +60,7 @@ pygpt_net/controller/debug/__init__.py,sha256=Dn12CfDYml_n4Xq3mWkafUrM-UVXFEU1mD
|
|
60
60
|
pygpt_net/controller/dialogs/__init__.py,sha256=sJHyZxkAn9QKTegUqx_xETesN2ecMBkrtf-VsCubr2w,1008
|
61
61
|
pygpt_net/controller/dialogs/confirm.py,sha256=EpLYx4cAyb3S723-ACU-nCvcx0lH9tj4upLnjPiekF8,15875
|
62
62
|
pygpt_net/controller/dialogs/debug.py,sha256=v6E85vyCwfaDG9XZysxhBjRwlrDkbYC-NxUnDamNRpk,5980
|
63
|
-
pygpt_net/controller/dialogs/info.py,sha256=
|
63
|
+
pygpt_net/controller/dialogs/info.py,sha256=cK7CR2_l11GAepKDN6J2paKYfk5vSjZHQijacsLkm2Q,3410
|
64
64
|
pygpt_net/controller/files.py,sha256=1Zm9L8-rhLG-GjRQDaOCkAFocAAobTQj-D3ILxLUGn4,16135
|
65
65
|
pygpt_net/controller/finder.py,sha256=4jl8EzTVR1Wc0dJkVwacAdvBiuF1CyOSKB4Qewju0Jw,4955
|
66
66
|
pygpt_net/controller/idx/__init__.py,sha256=oY6clG2YANYB_wJumnOl78ugU3V5c_sG1WIwRyBCVOo,10161
|
@@ -247,9 +247,9 @@ pygpt_net/css_rc.py,sha256=i13kX7irhbYCWZ5yJbcMmnkFp_UfS4PYnvRFSPF7XXo,11349
|
|
247
247
|
pygpt_net/data/audio/click_off.mp3,sha256=aNiRDP1pt-Jy7ija4YKCNFBwvGWbzU460F4pZWZDS90,65201
|
248
248
|
pygpt_net/data/audio/click_on.mp3,sha256=qfdsSnthAEHVXzeyN4LlC0OvXuyW8p7stb7VXtlvZ1k,65201
|
249
249
|
pygpt_net/data/audio/ok.mp3,sha256=LTiV32pEBkpUGBkKkcOdOFB7Eyt_QoP2Nv6c5AaXftk,32256
|
250
|
-
pygpt_net/data/config/config.json,sha256
|
251
|
-
pygpt_net/data/config/models.json,sha256=
|
252
|
-
pygpt_net/data/config/modes.json,sha256=
|
250
|
+
pygpt_net/data/config/config.json,sha256=-1ip6_f_Jkc-mAeGvLuLdHsmlw0yeDEvs84Qo0FEuvk,19805
|
251
|
+
pygpt_net/data/config/models.json,sha256=c-ko0Ji2-7YGCTZrwsDbZJxPBPHxaoV7O1iRz-EAOzw,61940
|
252
|
+
pygpt_net/data/config/modes.json,sha256=TLXSysG-1_16pbW6Nup9nAWlNw00lamVuUsukkoet5g,1923
|
253
253
|
pygpt_net/data/config/presets/agent_openai.json,sha256=vMTR-soRBiEZrpJJHuFLWyx8a3Ez_BqtqjyXgxCAM_Q,733
|
254
254
|
pygpt_net/data/config/presets/agent_openai_assistant.json,sha256=awJw9lNTGpKML6SJUShVn7lv8AXh0oic7wBeyoN7AYs,798
|
255
255
|
pygpt_net/data/config/presets/agent_planner.json,sha256=a6Rv58Bnm2STNWB0Rw_dGhnsz6Lb3J8_GwsUVZaTIXc,742
|
@@ -2175,8 +2175,8 @@ pygpt_net/ui/widget/textarea/web.py,sha256=9FoL02QY6mOxtc4t4fe8X7fVDIdPn9Sb_fwsv
|
|
2175
2175
|
pygpt_net/ui/widget/vision/__init__.py,sha256=8HT4tQFqQogEEpGYTv2RplKBthlsFKcl5egnv4lzzEw,488
|
2176
2176
|
pygpt_net/ui/widget/vision/camera.py,sha256=T8b5cmK6uhf_WSSxzPt_Qod8JgMnst6q8sQqRvgQiSA,2584
|
2177
2177
|
pygpt_net/utils.py,sha256=Gsh_mITVke3bb8o-Ke57l__xA5a9Wv4t7tlsnSQULj8,6655
|
2178
|
-
pygpt_net-2.4.
|
2179
|
-
pygpt_net-2.4.
|
2180
|
-
pygpt_net-2.4.
|
2181
|
-
pygpt_net-2.4.
|
2182
|
-
pygpt_net-2.4.
|
2178
|
+
pygpt_net-2.4.53.dist-info/LICENSE,sha256=rbPqNB_xxANH8hKayJyIcTwD4bj4Y2G-Mcm85r1OImM,1126
|
2179
|
+
pygpt_net-2.4.53.dist-info/METADATA,sha256=k2woDF3erJufNmvl5eDloWT5LGOYXi-aOCEQatZzgM0,167196
|
2180
|
+
pygpt_net-2.4.53.dist-info/WHEEL,sha256=FMvqSimYX_P7y0a7UY-_Mc83r5zkBZsCYPm7Lr0Bsq4,88
|
2181
|
+
pygpt_net-2.4.53.dist-info/entry_points.txt,sha256=qvpII6UHIt8XfokmQWnCYQrTgty8FeJ9hJvOuUFCN-8,43
|
2182
|
+
pygpt_net-2.4.53.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|