pygpt-net 2.5.4__py3-none-any.whl → 2.5.5__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 +6 -0
- README.md +7 -1
- pygpt_net/CHANGELOG.txt +6 -0
- pygpt_net/__init__.py +1 -1
- pygpt_net/controller/launcher/__init__.py +4 -1
- pygpt_net/controller/ui/tabs.py +3 -0
- pygpt_net/core/models/ollama.py +1 -1
- 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/provider/gpt/chat.py +1 -1
- {pygpt_net-2.5.4.dist-info → pygpt_net-2.5.5.dist-info}/METADATA +8 -2
- {pygpt_net-2.5.4.dist-info → pygpt_net-2.5.5.dist-info}/RECORD +16 -16
- {pygpt_net-2.5.4.dist-info → pygpt_net-2.5.5.dist-info}/LICENSE +0 -0
- {pygpt_net-2.5.4.dist-info → pygpt_net-2.5.5.dist-info}/WHEEL +0 -0
- {pygpt_net-2.5.4.dist-info → pygpt_net-2.5.5.dist-info}/entry_points.txt +0 -0
CHANGELOG.md
CHANGED
@@ -1,5 +1,11 @@
|
|
1
1
|
# CHANGELOG
|
2
2
|
|
3
|
+
## 2.5.5 (2025-02-02)
|
4
|
+
|
5
|
+
- Fix: system prompt apply.
|
6
|
+
- Added calendar live update on tab change.
|
7
|
+
- Added API Key monit at launch displayed only once.
|
8
|
+
|
3
9
|
## 2.5.4 (2025-02-02)
|
4
10
|
|
5
11
|
- Added new models: `o3-mini` and `gpt-4o-mini-audio-preview`.
|
README.md
CHANGED
@@ -2,7 +2,7 @@
|
|
2
2
|
|
3
3
|
[](https://snapcraft.io/pygpt)
|
4
4
|
|
5
|
-
Release: **2.5.
|
5
|
+
Release: **2.5.5** | build: **2025.02.02** | Python: **>=3.10, <3.13**
|
6
6
|
|
7
7
|
> Official website: https://pygpt.net | Documentation: https://pygpt.readthedocs.io
|
8
8
|
>
|
@@ -3964,6 +3964,12 @@ may consume additional tokens that are not displayed in the main window.
|
|
3964
3964
|
|
3965
3965
|
## Recent changes:
|
3966
3966
|
|
3967
|
+
**2.5.5 (2025-02-02)**
|
3968
|
+
|
3969
|
+
- Fix: system prompt apply.
|
3970
|
+
- Added calendar live update on tab change.
|
3971
|
+
- Added API Key monit at launch displayed only once.
|
3972
|
+
|
3967
3973
|
**2.5.4 (2025-02-02)**
|
3968
3974
|
|
3969
3975
|
- Added new models: `o3-mini` and `gpt-4o-mini-audio-preview`.
|
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.5.
|
16
|
+
__version__ = "2.5.5"
|
17
17
|
__build__ = "2025.02.02"
|
18
18
|
__maintainer__ = "Marcin Szczygliński"
|
19
19
|
__github__ = "https://github.com/szczyglis-dev/py-gpt"
|
@@ -37,7 +37,10 @@ class Launcher:
|
|
37
37
|
# show welcome API KEY dialog (disable for langchain mode)
|
38
38
|
if not self.window.core.config.get('mode') in self.no_api_key_allowed and \
|
39
39
|
(self.window.core.config.get('api_key') is None or self.window.core.config.get('api_key') == ''):
|
40
|
-
|
40
|
+
|
41
|
+
if not self.window.core.config.get('api_key.monit.displayed', False):
|
42
|
+
self.show_api_monit()
|
43
|
+
self.window.core.config.set('api_key.monit.displayed', True)
|
41
44
|
|
42
45
|
# check for updates
|
43
46
|
if self.window.core.config.get('updater.check.launch'):
|
pygpt_net/controller/ui/tabs.py
CHANGED
@@ -176,6 +176,9 @@ class Tabs:
|
|
176
176
|
elif tab.type == Tab.TAB_TOOL_PAINTER:
|
177
177
|
if self.window.core.config.get('vision.capture.enabled'):
|
178
178
|
self.window.controller.camera.enable_capture()
|
179
|
+
elif tab.type == Tab.TAB_TOOL_CALENDAR:
|
180
|
+
self.window.controller.calendar.update()
|
181
|
+
self.window.controller.calendar.update_ctx_counters()
|
179
182
|
|
180
183
|
if prev_tab != idx or prev_column != column_idx:
|
181
184
|
self.window.dispatch(AppEvent(AppEvent.TAB_SELECTED)) # app event
|
pygpt_net/core/models/ollama.py
CHANGED
@@ -71,7 +71,7 @@ class Ollama:
|
|
71
71
|
for item in status.get('models', []):
|
72
72
|
model_id = item.get('name').replace(":latest", "")
|
73
73
|
if model_id not in self.available_models:
|
74
|
-
self.available_models.append(
|
74
|
+
self.available_models.append(model_id)
|
75
75
|
if model_id == model:
|
76
76
|
return {
|
77
77
|
'is_installed': True,
|
pygpt_net/data/config/modes.json
CHANGED
pygpt_net/provider/gpt/chat.py
CHANGED
@@ -189,7 +189,7 @@ class Chat:
|
|
189
189
|
mode = MODE_CHAT
|
190
190
|
allowed_system = True
|
191
191
|
if (model.id is not None
|
192
|
-
and model.id
|
192
|
+
and model.id in ["o1-mini", "o1-preview"]):
|
193
193
|
allowed_system = False
|
194
194
|
|
195
195
|
used_tokens = self.window.core.tokens.from_user(
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: pygpt-net
|
3
|
-
Version: 2.5.
|
3
|
+
Version: 2.5.5
|
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, DeepSeek, 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
|
@@ -94,7 +94,7 @@ Description-Content-Type: text/markdown
|
|
94
94
|
|
95
95
|
[](https://snapcraft.io/pygpt)
|
96
96
|
|
97
|
-
Release: **2.5.
|
97
|
+
Release: **2.5.5** | build: **2025.02.02** | Python: **>=3.10, <3.13**
|
98
98
|
|
99
99
|
> Official website: https://pygpt.net | Documentation: https://pygpt.readthedocs.io
|
100
100
|
>
|
@@ -4056,6 +4056,12 @@ may consume additional tokens that are not displayed in the main window.
|
|
4056
4056
|
|
4057
4057
|
## Recent changes:
|
4058
4058
|
|
4059
|
+
**2.5.5 (2025-02-02)**
|
4060
|
+
|
4061
|
+
- Fix: system prompt apply.
|
4062
|
+
- Added calendar live update on tab change.
|
4063
|
+
- Added API Key monit at launch displayed only once.
|
4064
|
+
|
4059
4065
|
**2.5.4 (2025-02-02)**
|
4060
4066
|
|
4061
4067
|
- Added new models: `o3-mini` and `gpt-4o-mini-audio-preview`.
|
@@ -1,9 +1,9 @@
|
|
1
|
-
CHANGELOG.md,sha256=
|
2
|
-
README.md,sha256=
|
1
|
+
CHANGELOG.md,sha256=uIgNsgmVYgLRl9OpfPgjxhzXTq83YYJwbIo_sgsxoEQ,83148
|
2
|
+
README.md,sha256=lLm4OYfl5OLDtCQYP35-xObvWBckIn2vTe0dSSDMqJE,164569
|
3
3
|
icon.png,sha256=CzcINJaU23a9hNjsDlDNbyuiEvKZ4Wg6DQVYF6SpuRg,13970
|
4
|
-
pygpt_net/CHANGELOG.txt,sha256=
|
4
|
+
pygpt_net/CHANGELOG.txt,sha256=ABzJ_GvFmUqLoLh8Sz3pvDI1FJeWHstUq9osD4SlijM,81619
|
5
5
|
pygpt_net/LICENSE,sha256=dz9sfFgYahvu2NZbx4C1xCsVn9GVer2wXcMkFRBvqzY,1146
|
6
|
-
pygpt_net/__init__.py,sha256=
|
6
|
+
pygpt_net/__init__.py,sha256=VgcIjhZrvmGpUZxLoV50V_zfgAvVi9PaIlJecGKzXkg,1372
|
7
7
|
pygpt_net/app.py,sha256=XXjn9XaKHGRcsHN8mMuqbRHAg8_Da0GLmACUU9ddjBc,16217
|
8
8
|
pygpt_net/config.py,sha256=Qc1FOBtTf3O6A6-6KoqUGtoJ0u8hXQeowvCVbZFwtik,16405
|
9
9
|
pygpt_net/container.py,sha256=BemiVZPpPNIzfB-ZvnZeeBPFu-AcX2c30OqYFylEjJc,4023
|
@@ -75,7 +75,7 @@ pygpt_net/controller/lang/custom.py,sha256=o_JpcFmDCkuqzNzA_esX7Ajg61O14tOr17ZKc
|
|
75
75
|
pygpt_net/controller/lang/mapping.py,sha256=uQz9GasYP6CAVvzV_54v5d0P0uPcG9z5Hjv8HITNA-o,23600
|
76
76
|
pygpt_net/controller/lang/plugins.py,sha256=JEiOajXB7BfxPPfBkYl82K1_gKpRVcMEPNPwsNAJ6WU,3879
|
77
77
|
pygpt_net/controller/lang/settings.py,sha256=awPEshWbHlOt11Zyg_uQKlbYjvABXrQ7QMHdpu2L9ZI,2634
|
78
|
-
pygpt_net/controller/launcher/__init__.py,sha256=
|
78
|
+
pygpt_net/controller/launcher/__init__.py,sha256=YykWa_vl8HEsH8wMz2aQsLlGqn62dIRpQ-OZzLDomgM,2063
|
79
79
|
pygpt_net/controller/layout/__init__.py,sha256=9R30zrZtvedAf1OxQLzxDWt8o2XirUq0bkcFRnpCztg,11433
|
80
80
|
pygpt_net/controller/mode/__init__.py,sha256=TY3y5fD8kpqLCmDyyCoEL_1OTSOXLnHVdIvH2lGUTew,7303
|
81
81
|
pygpt_net/controller/model/__init__.py,sha256=qRXFmBje0zu_obAku3qTkhnr01z5D5yDN4gbX347NMA,5931
|
@@ -102,7 +102,7 @@ pygpt_net/controller/theme/nodes.py,sha256=6SCKMGQ5SZdKgy4t69raiikTLQDPPkjoYTPwl
|
|
102
102
|
pygpt_net/controller/tools/__init__.py,sha256=b_yt413iRUI9fWHzZGdtM4333UjzrJb-zmq_exYTgy4,2723
|
103
103
|
pygpt_net/controller/ui/__init__.py,sha256=WsH7OzMS_ixCwuHeSajv2E3irPo9B4H3dQe7Svd_71k,5903
|
104
104
|
pygpt_net/controller/ui/mode.py,sha256=8mw_tmRo7sArvgv-k1yfwx5SCfVOkwdc96U8ZiW83Q0,10231
|
105
|
-
pygpt_net/controller/ui/tabs.py,sha256=
|
105
|
+
pygpt_net/controller/ui/tabs.py,sha256=7DxDCkkx0mPJ8VbVp-mRt8cb2Mgjbv7Jv3OOVkJp91k,20321
|
106
106
|
pygpt_net/controller/ui/vision.py,sha256=KrP8wFuuz-gsO9iwbLDnzvC5iqWVlWjFarQ27HkHdEg,2303
|
107
107
|
pygpt_net/core/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
108
108
|
pygpt_net/core/access/__init__.py,sha256=rFKp9xMsuJHS_wxiMEMMHVRd5lXdkPj7LuObAIdQFBY,942
|
@@ -197,7 +197,7 @@ pygpt_net/core/installer/__init__.py,sha256=I7ALQy8P3SG7iOY04gDQpRVmSFNCtk83sz90
|
|
197
197
|
pygpt_net/core/llm/__init__.py,sha256=cns_L7QeKXwq22Jj09gOG5PPnX0PxB3dagcdiXZvBFI,1291
|
198
198
|
pygpt_net/core/locale/__init__.py,sha256=KcG4lwtiI7mqtS8ojX2A2IuO0kCYGQP0-bwuBqzx_mc,5484
|
199
199
|
pygpt_net/core/models/__init__.py,sha256=W4UaqC8KmlgesV151OGHOLbUDf2GPGNs7SWe7mCL2Fo,10043
|
200
|
-
pygpt_net/core/models/ollama.py,sha256=
|
200
|
+
pygpt_net/core/models/ollama.py,sha256=R73J1X7sWhjg5DiPCQNbGiZyKZmvhb5ROU1kyELWBbM,2457
|
201
201
|
pygpt_net/core/modes/__init__.py,sha256=d3Wju5zo8DaUxPINPOAkOaKy0uuL9DryVubB4xiEqAU,3110
|
202
202
|
pygpt_net/core/notepad/__init__.py,sha256=lsgn4zXapg51227oTO3fr93FyltuEMEyJCNSAOki61o,4246
|
203
203
|
pygpt_net/core/platforms/__init__.py,sha256=QygvsQadTpWW1K4_GraO38r7u82sYpgz3FI4iv_Dodw,4563
|
@@ -250,9 +250,9 @@ pygpt_net/css_rc.py,sha256=i13kX7irhbYCWZ5yJbcMmnkFp_UfS4PYnvRFSPF7XXo,11349
|
|
250
250
|
pygpt_net/data/audio/click_off.mp3,sha256=aNiRDP1pt-Jy7ija4YKCNFBwvGWbzU460F4pZWZDS90,65201
|
251
251
|
pygpt_net/data/audio/click_on.mp3,sha256=qfdsSnthAEHVXzeyN4LlC0OvXuyW8p7stb7VXtlvZ1k,65201
|
252
252
|
pygpt_net/data/audio/ok.mp3,sha256=LTiV32pEBkpUGBkKkcOdOFB7Eyt_QoP2Nv6c5AaXftk,32256
|
253
|
-
pygpt_net/data/config/config.json,sha256=
|
254
|
-
pygpt_net/data/config/models.json,sha256=
|
255
|
-
pygpt_net/data/config/modes.json,sha256=
|
253
|
+
pygpt_net/data/config/config.json,sha256=gpKCf09K2bnLv8x-gS_1jCq5hNvY7au9nHVSdsWOEPE,19884
|
254
|
+
pygpt_net/data/config/models.json,sha256=eCbwMBQf2yUZE0tmn6LBdc27Kue6VWXk1dqAhFl95ns,88881
|
255
|
+
pygpt_net/data/config/modes.json,sha256=53R2p3vJPfG1SzSuGX1gLbIyt_ejcHItZRy5DXYVBfM,1921
|
256
256
|
pygpt_net/data/config/presets/agent_openai.json,sha256=vMTR-soRBiEZrpJJHuFLWyx8a3Ez_BqtqjyXgxCAM_Q,733
|
257
257
|
pygpt_net/data/config/presets/agent_openai_assistant.json,sha256=awJw9lNTGpKML6SJUShVn7lv8AXh0oic7wBeyoN7AYs,798
|
258
258
|
pygpt_net/data/config/presets/agent_planner.json,sha256=a6Rv58Bnm2STNWB0Rw_dGhnsz6Lb3J8_GwsUVZaTIXc,742
|
@@ -1871,7 +1871,7 @@ pygpt_net/provider/core/prompt/json_file.py,sha256=5yfW1RgEa36tX4-ntze4PavWLry0Y
|
|
1871
1871
|
pygpt_net/provider/gpt/__init__.py,sha256=QZgTYRhe9rV2m4e60VTtUxgkYZFEwTX0H4aILSGdV0A,9265
|
1872
1872
|
pygpt_net/provider/gpt/assistants.py,sha256=DSw1YB_J9n2rFD5CPDWZy59I38VSG6uLpYydGLTUPMQ,14083
|
1873
1873
|
pygpt_net/provider/gpt/audio.py,sha256=frHElxYVaHYkNDCMJ9tQMoGqxSaZ-s5oPlAEHUAckkc,2032
|
1874
|
-
pygpt_net/provider/gpt/chat.py,sha256=
|
1874
|
+
pygpt_net/provider/gpt/chat.py,sha256=UlxRFZghIB-zBoCOxMlX6vqNveKiQi2RdU3dOwo0Fb4,10512
|
1875
1875
|
pygpt_net/provider/gpt/completion.py,sha256=OusKOb4G11aYRJUjRWcMsf80cRQQvee9DzRe99ubLmc,6164
|
1876
1876
|
pygpt_net/provider/gpt/image.py,sha256=ZqYrtVTcfPa8Kf08pWLKy1Zhvi6pu61GBlslRBauoK0,8967
|
1877
1877
|
pygpt_net/provider/gpt/store.py,sha256=FaVd7SBC_QQ0W26_odJwcrLH54CSq0UZXZnuwIhRm54,17315
|
@@ -2180,8 +2180,8 @@ pygpt_net/ui/widget/textarea/web.py,sha256=2LebPHa_e5lvBqnIVzjwsLcFMoc11BonXgAUs
|
|
2180
2180
|
pygpt_net/ui/widget/vision/__init__.py,sha256=8HT4tQFqQogEEpGYTv2RplKBthlsFKcl5egnv4lzzEw,488
|
2181
2181
|
pygpt_net/ui/widget/vision/camera.py,sha256=T8b5cmK6uhf_WSSxzPt_Qod8JgMnst6q8sQqRvgQiSA,2584
|
2182
2182
|
pygpt_net/utils.py,sha256=WtrdagJ-BlCjxGEEVq2rhsyAZMcU6JqltCXzOs823po,6707
|
2183
|
-
pygpt_net-2.5.
|
2184
|
-
pygpt_net-2.5.
|
2185
|
-
pygpt_net-2.5.
|
2186
|
-
pygpt_net-2.5.
|
2187
|
-
pygpt_net-2.5.
|
2183
|
+
pygpt_net-2.5.5.dist-info/LICENSE,sha256=rbPqNB_xxANH8hKayJyIcTwD4bj4Y2G-Mcm85r1OImM,1126
|
2184
|
+
pygpt_net-2.5.5.dist-info/METADATA,sha256=Ey3mzoSiwozQUI3hilOYi4nqXczHO49dOeqi8ZIf3zs,169524
|
2185
|
+
pygpt_net-2.5.5.dist-info/WHEEL,sha256=FMvqSimYX_P7y0a7UY-_Mc83r5zkBZsCYPm7Lr0Bsq4,88
|
2186
|
+
pygpt_net-2.5.5.dist-info/entry_points.txt,sha256=qvpII6UHIt8XfokmQWnCYQrTgty8FeJ9hJvOuUFCN-8,43
|
2187
|
+
pygpt_net-2.5.5.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|