pygpt-net 2.5.13__py3-none-any.whl → 2.5.14__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.
pygpt_net/CHANGELOG.txt CHANGED
@@ -1,6 +1,11 @@
1
+ 2.5.14 (2025-06-23)
2
+
3
+ - Fix: crash if empty shortcuts in config.
4
+ - Fix: UUID serialization.
5
+
1
6
  2.5.13 (2025-06-22)
2
7
 
3
- - Disabled auto-switch to vision mode in Painer.
8
+ - Disabled auto-switch to vision mode in Painter.
4
9
  - UI fixes.
5
10
 
6
11
  2.5.12 (2025-06-22)
pygpt_net/__init__.py CHANGED
@@ -6,15 +6,15 @@
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-06-22 02:00:00 #
9
+ # Updated Date: 2025-06-23 19:00:00 #
10
10
  # ================================================== #
11
11
 
12
12
  __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.13"
17
- __build__ = "2025-06-22"
16
+ __version__ = "2.5.14"
17
+ __build__ = "2025-06-23"
18
18
  __maintainer__ = "Marcin Szczygliński"
19
19
  __github__ = "https://github.com/szczyglis-dev/py-gpt"
20
20
  __report__ = "https://github.com/szczyglis-dev/py-gpt/issues"
@@ -61,7 +61,7 @@ class CaptureWorker(QRunnable):
61
61
  try:
62
62
  # get params from global config
63
63
  self.capture = cv2.VideoCapture(self.window.core.config.get('vision.capture.idx'))
64
- if not self.capture.isOpened():
64
+ if not self.capture or not self.capture.isOpened():
65
65
  self.allow_finish = False
66
66
  self.signals.unfinished.emit()
67
67
  return
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "__meta__": {
3
- "version": "2.5.13",
4
- "app.version": "2.5.13",
5
- "updated_at": "2025-06-22T00:00:00"
3
+ "version": "2.5.14",
4
+ "app.version": "2.5.14",
5
+ "updated_at": "2025-06-23T00:00:00"
6
6
  },
7
7
  "access.audio.event.speech": false,
8
8
  "access.audio.event.speech.disabled": [],
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "__meta__": {
3
- "version": "2.5.13",
4
- "app.version": "2.5.13",
5
- "updated_at": "2025-06-22T00:00:00"
3
+ "version": "2.5.14",
4
+ "app.version": "2.5.14",
5
+ "updated_at": "2025-06-23T00:00:00"
6
6
  },
7
7
  "items": {
8
8
  "claude-3-5-sonnet-20240620": {
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "__meta__": {
3
- "version": "2.5.10",
4
- "app.version": "2.5.10",
5
- "updated_at": "2025-03-06T00:00:00"
3
+ "version": "2.5.14",
4
+ "app.version": "2.5.14",
5
+ "updated_at": "2025-06-23T00:00:00"
6
6
  },
7
7
  "items": {
8
8
  "chat": {
File without changes
@@ -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: 2024.04.26 23:00:00 #
9
+ # Updated Date: 2025.06.23 19:00:00 #
10
10
  # ================================================== #
11
11
 
12
12
  import json
@@ -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: 2024.12.16 01:00:00 #
9
+ # Updated Date: 2025.06.23 19:00:00 #
10
10
  # ================================================== #
11
11
 
12
12
  import json
@@ -43,7 +43,7 @@ class AttachmentItem:
43
43
  """
44
44
  return {
45
45
  'id': self.id,
46
- 'uuid': self.uuid,
46
+ 'uuid': str(self.uuid),
47
47
  'name': self.name,
48
48
  'path': self.path,
49
49
  'size': self.size,
@@ -43,7 +43,7 @@ class CalendarNoteItem:
43
43
  def to_dict(self):
44
44
  return {
45
45
  'id': self.id,
46
- 'uuid': self.uuid,
46
+ 'uuid': str(self.uuid),
47
47
  'idx': self.idx,
48
48
  'year': self.year,
49
49
  'month': self.month,
pygpt_net/item/ctx.py CHANGED
@@ -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: 2024.12.16 01:00:00 #
9
+ # Updated Date: 2025.06.23 19:00:00 #
10
10
  # ================================================== #
11
11
 
12
12
  import copy
pygpt_net/item/index.py CHANGED
File without changes
pygpt_net/item/mode.py CHANGED
File without changes
pygpt_net/item/notepad.py CHANGED
@@ -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: 2024.01.27 15:00:00 #
9
+ # Updated Date: 2025.06.23 19:00:00 #
10
10
  # ================================================== #
11
11
 
12
12
  import json
@@ -29,7 +29,7 @@ class NotepadItem:
29
29
  def to_dict(self):
30
30
  return {
31
31
  'id': self.id,
32
- 'uuid': self.uuid,
32
+ 'uuid': str(self.uuid),
33
33
  'idx': self.idx,
34
34
  'title': self.title,
35
35
  'content': self.content,
pygpt_net/item/preset.py CHANGED
File without changes
pygpt_net/item/prompt.py CHANGED
@@ -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: 2024.08.29 04:00:00 #
9
+ # Updated Date: 2025.06.23 19:00:00 #
10
10
  # ================================================== #
11
11
 
12
12
  import json
@@ -28,7 +28,7 @@ class PromptItem:
28
28
  :return: serialized item
29
29
  """
30
30
  return {
31
- 'id': self.id,
31
+ 'id': str(self.id),
32
32
  'name': self.name,
33
33
  'content': self.content,
34
34
  }
@@ -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: 2024.01.12 04:00:00 #
9
+ # Updated Date: 2025.06.23 19:00:00 #
10
10
  # ================================================== #
11
11
 
12
12
  import datetime
@@ -47,6 +47,7 @@ class Patch:
47
47
 
48
48
  :return: True if imported
49
49
  """
50
+ return True
50
51
  # use json provider to load old contexts
51
52
  provider = self.window.core.ctx.providers['json_file']
52
53
  provider.attach(self.window)
@@ -47,6 +47,7 @@ class Patch:
47
47
  :return: True if imported
48
48
  :rtype: bool
49
49
  """
50
+ return True
50
51
  # use json provider to load old notepads
51
52
  provider = self.window.core.notepad.providers['json_file']
52
53
  provider.attach(self.window)
pygpt_net/ui/main.py CHANGED
@@ -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.19 03:00:00 #
9
+ # Updated Date: 2025.06.23 19:00:00 #
10
10
  # ================================================== #
11
11
 
12
12
  import copy
@@ -375,6 +375,9 @@ class MainWindow(QMainWindow, QtStyleTools):
375
375
  self.shortcuts.append(escape_shortcut)
376
376
 
377
377
  config = copy.deepcopy(self.core.config.get("access.shortcuts"))
378
+ if config is None:
379
+ return
380
+
378
381
  for shortcut_conf in config:
379
382
  key = shortcut_conf.get('key', '')
380
383
  key_modifier = shortcut_conf.get('key_modifier', '')
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: pygpt-net
3
- Version: 2.5.13
3
+ Version: 2.5.14
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
  License: MIT
6
6
  Keywords: py_gpt,py-gpt,pygpt,desktop,app,o1,gpt,gpt4,gpt-4o,gpt-4v,gpt3.5,gpt-4,gpt-4-vision,gpt-3.5,llama3,mistral,gemini,deepseek,bielik,claude,tts,whisper,vision,chatgpt,dall-e,chat,chatbot,assistant,text completion,image generation,ai,api,openai,api key,langchain,llama-index,ollama,presets,ui,qt,pyside
@@ -100,7 +100,7 @@ Description-Content-Type: text/markdown
100
100
 
101
101
  [![pygpt](https://snapcraft.io/pygpt/badge.svg)](https://snapcraft.io/pygpt)
102
102
 
103
- Release: **2.5.13** | build: **2025-06-22** | Python: **>=3.10, <3.13**
103
+ Release: **2.5.14** | build: **2025-06-23** | Python: **>=3.10, <3.13**
104
104
 
105
105
  > Official website: https://pygpt.net | Documentation: https://pygpt.readthedocs.io
106
106
  >
@@ -4070,9 +4070,14 @@ may consume additional tokens that are not displayed in the main window.
4070
4070
 
4071
4071
  ## Recent changes:
4072
4072
 
4073
+ **2.5.14 (2025-06-23)**
4074
+
4075
+ - Fix: crash if empty shortcuts in config.
4076
+ - Fix: UUID serialization.
4077
+
4073
4078
  **2.5.13 (2025-06-22)**
4074
4079
 
4075
- - Disabled auto-switch to vision mode in Painer.
4080
+ - Disabled auto-switch to vision mode in Painter.
4076
4081
  - UI fixes.
4077
4082
 
4078
4083
  **2.5.12 (2025-06-22)**
@@ -1,6 +1,6 @@
1
- pygpt_net/CHANGELOG.txt,sha256=qbyShD0569dXu872HQa8sx7FWWpSE6m7C8l7sWtI8Ks,83264
1
+ pygpt_net/CHANGELOG.txt,sha256=eicPa8iM0_RslC21PHY4jpvSnzrBkumJRLCbY2amLj8,83357
2
2
  pygpt_net/LICENSE,sha256=dz9sfFgYahvu2NZbx4C1xCsVn9GVer2wXcMkFRBvqzY,1146
3
- pygpt_net/__init__.py,sha256=ZuMDGxXwA4J74JWV2uUh2P2o0fC3UFY7X29WZ6bK7zQ,1373
3
+ pygpt_net/__init__.py,sha256=ANHS_QkiNPLIZDlIrCBmJjPTpvwLanQZvm94A2aFK1A,1373
4
4
  pygpt_net/app.py,sha256=XXjn9XaKHGRcsHN8mMuqbRHAg8_Da0GLmACUU9ddjBc,16217
5
5
  pygpt_net/config.py,sha256=Qc1FOBtTf3O6A6-6KoqUGtoJ0u8hXQeowvCVbZFwtik,16405
6
6
  pygpt_net/container.py,sha256=BemiVZPpPNIzfB-ZvnZeeBPFu-AcX2c30OqYFylEjJc,4023
@@ -129,7 +129,7 @@ pygpt_net/core/bridge/__init__.py,sha256=4qEZJkMIe2o861ukwAlFy0ba_ri8sqx4nwLhUZX
129
129
  pygpt_net/core/bridge/context.py,sha256=zIqbbFyZYsU5JEJGvwBg07u9QeeMUKsdTnURyp8tR4Y,4351
130
130
  pygpt_net/core/bridge/worker.py,sha256=aq0xA6LCvEK7BHTx3I1vziZpFtE29IHl-19yzsEB7mE,5817
131
131
  pygpt_net/core/calendar/__init__.py,sha256=ao9kQk6Xjse95m1TbL1Mlbo1k1Q8D9eGc10L-71G9TY,7227
132
- pygpt_net/core/camera/__init__.py,sha256=K74D_4Q_GN1M66pTH6H2D1em_FlWohGLgb0aDQ6-_LA,4057
132
+ pygpt_net/core/camera/__init__.py,sha256=iJ7ZIQPi3nFb5FtvH8Rig4v9pjRgccrHzSlY_ua0B_g,4077
133
133
  pygpt_net/core/chain/__init__.py,sha256=C7Xm88bRblcyM4e0wZMFG-6SQCdw_frXN9kqnWzce60,3541
134
134
  pygpt_net/core/chain/chat.py,sha256=5LxPWHkocjrIAAwrdDH1ss6knAnh4_owfbHPsOQYSws,5238
135
135
  pygpt_net/core/chain/completion.py,sha256=GGRA-q6sQgPnSibiwHBwk7jgT0MgOkka1_jK2-IiBPg,5698
@@ -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=20sCvfYbc4-pHap9DcKOYjuzM_hvw1nHoX0otdAATyQ,19973
251
- pygpt_net/data/config/models.json,sha256=C07YuiWgdJDC6WPQzirjgjnoga0tDZI-oKoAdV2QzY4,124735
252
- pygpt_net/data/config/modes.json,sha256=aOoswOizqG_nITWbw59vRokfbh57_D8FrDlCAtVhDJY,2085
250
+ pygpt_net/data/config/config.json,sha256=VFB34iFq74Hr13W7791UxPuchtJIH-DXZ3cBy7bLVGc,19973
251
+ pygpt_net/data/config/models.json,sha256=Tp_hqv-k5TWcpFzDTxEgKnXBSR_zxAyBjlRxxjY3vuk,124735
252
+ pygpt_net/data/config/modes.json,sha256=-q4Q4RsyoF2rLgvS0On59zXK0m0ml_kx6I0hNfLZRDY,2085
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
@@ -1668,16 +1668,16 @@ pygpt_net/fonts_rc.py,sha256=EVwgIVDq-Sudy9DYpHbzuhQ_jd9pUuQ8e3-nycPzj3A,3238283
1668
1668
  pygpt_net/icons.qrc,sha256=7etxjwGtJm61IfTFIloyO7yonX06Jc1ZoSniGUFTho4,14981
1669
1669
  pygpt_net/icons_rc.py,sha256=FWRllE_kudX-jI4lOto-Pvf5NDCFDrpAxuQgXgldg6k,92180
1670
1670
  pygpt_net/item/__init__.py,sha256=jQQgG9u_ZLsZWXustoc1uvC-abUvj4RBKPAM30-f2Kc,488
1671
- pygpt_net/item/assistant.py,sha256=1X34PaUgr993MfVVtBY6rGMNTSdSv6oKKPRqHBQkHuk,9587
1672
- pygpt_net/item/attachment.py,sha256=N6BNDxqtQQ3LZt4hn3aZX-MurCDPQ3hJup2ZquU5LXY,2813
1673
- pygpt_net/item/calendar_note.py,sha256=ZXTIChVaH_E7ju_CJ2LI77C4ikvd2G-c3tRo7UG9uwc,2108
1674
- pygpt_net/item/ctx.py,sha256=kfY_t8-SCKjeSm39xtG2C1sbCBxmXWc0yNr0yf85gtA,18904
1671
+ pygpt_net/item/assistant.py,sha256=AjbpL-EnolBc-esGkBSAAaNPrgFqMSbevvtIulhu9b4,9587
1672
+ pygpt_net/item/attachment.py,sha256=DttKEdCuWa_0O1CLoDiBLoST73bXPIbdqryeui00bD4,2818
1673
+ pygpt_net/item/calendar_note.py,sha256=Y9rfMmTbWwcFrHNra62aUww-NGPIE6O03wHRrF5TyAg,2113
1674
+ pygpt_net/item/ctx.py,sha256=i4lKRQ9xx_SaOVuiRJlKnsA5sBjl5pRby8MtJvsp3lc,18904
1675
1675
  pygpt_net/item/index.py,sha256=gDQYPlhwHF0QVGwX4TFGxHyO7pt5tqHcuyc3DPgPCA0,1681
1676
1676
  pygpt_net/item/mode.py,sha256=bhX6ZOvTKsiLI6-N-7cuJ_9izlAqq6bsXF1FjufJvfw,600
1677
1677
  pygpt_net/item/model.py,sha256=gP3WKq9XWwoI-aOnr62t6va-4IV13fjJP_6o0Javg2k,8166
1678
- pygpt_net/item/notepad.py,sha256=EuTgvDEpxQL-4QRfbkUfKtUG7nkTJaYe2K13ZeN173I,1508
1678
+ pygpt_net/item/notepad.py,sha256=l5e0JAnwz5a3fPSaSq1ih3XfgrLX5365xAg5HYIqIyQ,1513
1679
1679
  pygpt_net/item/preset.py,sha256=m03LtRjODd64xoZ92EJaOPp82VXOZ3zBUDtJEFyxvc4,5575
1680
- pygpt_net/item/prompt.py,sha256=oX3BA9n2E6fco2dMZu7DiO3GQgqPj3isFjPcTcFXw9s,1558
1680
+ pygpt_net/item/prompt.py,sha256=aDzXxQ4kLQ0Ve1EvCmO8p9CzYVm2BYuR9ubYf6HFr4g,1563
1681
1681
  pygpt_net/js.qrc,sha256=OqPzGN6U2Y-uENLFlfDY2BxywCAnU0uds4QcbB7me5Q,542
1682
1682
  pygpt_net/js_rc.py,sha256=5f7l2zJIzW-gHHndytWVXz2sjKyR924GCpOSmDX9sZI,2456868
1683
1683
  pygpt_net/launcher.py,sha256=v_wlnRB_fYkCLP9VYvxPjPyBLJK_j8gg7GOppPMCyeQ,9339
@@ -1825,7 +1825,7 @@ pygpt_net/provider/core/config/patch.py,sha256=JYNOz-_7ePQRBWfcc1SYHaeCZAZKox8Vo
1825
1825
  pygpt_net/provider/core/ctx/__init__.py,sha256=jQQgG9u_ZLsZWXustoc1uvC-abUvj4RBKPAM30-f2Kc,488
1826
1826
  pygpt_net/provider/core/ctx/base.py,sha256=Tfb4MDNe9BXXPU3lbzpdYwJF9S1oa2-mzgu5XT4It9g,3003
1827
1827
  pygpt_net/provider/core/ctx/db_sqlite/__init__.py,sha256=G2pB7kZfREJRLJZmfv3DKTslXC-K7EhNN2sn56q6BFA,11753
1828
- pygpt_net/provider/core/ctx/db_sqlite/patch.py,sha256=rQO893JsyYxXdL2sFSPvcsF1KgXv13VonpY-tU284go,3101
1828
+ pygpt_net/provider/core/ctx/db_sqlite/patch.py,sha256=YN_KRCvV8WqW_wmtbLurqikhT_46PbhoFpZcMNksKag,3121
1829
1829
  pygpt_net/provider/core/ctx/db_sqlite/storage.py,sha256=YkyS29h3vroGyiAdHdW5A3T5zF3KbQXpG3pd6hsQRJk,43714
1830
1830
  pygpt_net/provider/core/ctx/db_sqlite/utils.py,sha256=XuZYx-z9FEmt_TG5yFZ-5Zf6PgbSkG7Svx5oLEHXigY,8953
1831
1831
  pygpt_net/provider/core/ctx/json_file.py,sha256=g1U4vOxfyA2jydwYvPQ9HpUIQihyBK2K4K6SQ75jEEs,11665
@@ -1852,7 +1852,7 @@ pygpt_net/provider/core/model/patch.py,sha256=LkQVYNeVDA02fVZVhr8adde4EcBG0wh1Nz
1852
1852
  pygpt_net/provider/core/notepad/__init__.py,sha256=jQQgG9u_ZLsZWXustoc1uvC-abUvj4RBKPAM30-f2Kc,488
1853
1853
  pygpt_net/provider/core/notepad/base.py,sha256=7aPhild8cALTaN3JEbI0YrkIW1DRIycGQWTfsdH6WcQ,1323
1854
1854
  pygpt_net/provider/core/notepad/db_sqlite/__init__.py,sha256=DQnVKJxvLq-6zlRlLk3MXSQZEObFtcQ5p5mEnuRzwYE,3104
1855
- pygpt_net/provider/core/notepad/db_sqlite/patch.py,sha256=Obb1gNhUGSw6xJN0kfo8dh2al4Hyp8WtYcRzZ1yLU6U,2805
1855
+ pygpt_net/provider/core/notepad/db_sqlite/patch.py,sha256=W-M7Kd5xaBVWPe8jydux7tVzkRCKOn4Hldg-0y0ucXc,2825
1856
1856
  pygpt_net/provider/core/notepad/db_sqlite/storage.py,sha256=vrPVz3yliDUS57YLBip_X1Lf9gK_aRBxOUhXXUKveYk,7320
1857
1857
  pygpt_net/provider/core/notepad/json_file.py,sha256=8PDjqJax417JmTZPd6-DKPPVZotOyW_qmblK4I5tjxw,7555
1858
1858
  pygpt_net/provider/core/plugin_preset/__init__.py,sha256=XMtqv_Yl6rBM0G3k59DZJLJu7SWAHPL7nO8j50pKwHo,488
@@ -2057,7 +2057,7 @@ pygpt_net/ui/layout/toolbox/model.py,sha256=9JHW8yzTHUh6TJmOAylriwlDsyrB8J9wDpJp
2057
2057
  pygpt_net/ui/layout/toolbox/presets.py,sha256=Afb_hLddPQlTcCUcWSCPhfp7ApKdbypkDJdjNnv1oFk,5797
2058
2058
  pygpt_net/ui/layout/toolbox/prompt.py,sha256=QC5CZx5TvO0-CZVXea4eIuAHFjoYcGxYrLBtny15ATI,3937
2059
2059
  pygpt_net/ui/layout/toolbox/vision.py,sha256=GZY-N2z8re1LN1ntsy-3Ius8OY4DujmJpyJ1qP2ZRxs,2447
2060
- pygpt_net/ui/main.py,sha256=_Y1FOX6WqM9erVtqpPXETLQpKRylgiZm-ClVk3fsSa0,12753
2060
+ pygpt_net/ui/main.py,sha256=yfUhhmvPgkg7GSVI0iA1P5x2TOVLgZoPLt7vFepGwAU,12812
2061
2061
  pygpt_net/ui/menu/__init__.py,sha256=hGxe2_tp3-hDGm2EjjMwBc69zmK3cr664LoV3cm2vGk,1877
2062
2062
  pygpt_net/ui/menu/about.py,sha256=bs0iGge52THU72oyu98QBxvh5iKA9APQIStRKQT5IQc,5891
2063
2063
  pygpt_net/ui/menu/audio.py,sha256=Sb8NTAyMnPj4johTvBKwocHzq67XypIdw7K7hjf2760,3494
@@ -2178,8 +2178,8 @@ pygpt_net/ui/widget/textarea/web.py,sha256=2LebPHa_e5lvBqnIVzjwsLcFMoc11BonXgAUs
2178
2178
  pygpt_net/ui/widget/vision/__init__.py,sha256=8HT4tQFqQogEEpGYTv2RplKBthlsFKcl5egnv4lzzEw,488
2179
2179
  pygpt_net/ui/widget/vision/camera.py,sha256=T8b5cmK6uhf_WSSxzPt_Qod8JgMnst6q8sQqRvgQiSA,2584
2180
2180
  pygpt_net/utils.py,sha256=WtrdagJ-BlCjxGEEVq2rhsyAZMcU6JqltCXzOs823po,6707
2181
- pygpt_net-2.5.13.dist-info/LICENSE,sha256=rbPqNB_xxANH8hKayJyIcTwD4bj4Y2G-Mcm85r1OImM,1126
2182
- pygpt_net-2.5.13.dist-info/METADATA,sha256=McuC23hM39cIFlUAdcdOyE_XobOJxK8cG8coIWvqCEw,169789
2183
- pygpt_net-2.5.13.dist-info/WHEEL,sha256=b4K_helf-jlQoXBBETfwnf4B04YC67LOev0jo4fX5m8,88
2184
- pygpt_net-2.5.13.dist-info/entry_points.txt,sha256=qvpII6UHIt8XfokmQWnCYQrTgty8FeJ9hJvOuUFCN-8,43
2185
- pygpt_net-2.5.13.dist-info/RECORD,,
2181
+ pygpt_net-2.5.14.dist-info/LICENSE,sha256=rbPqNB_xxANH8hKayJyIcTwD4bj4Y2G-Mcm85r1OImM,1126
2182
+ pygpt_net-2.5.14.dist-info/METADATA,sha256=zFTUWAunb6J8E7JmiWjk_KnowjJFlVpmXXjJksyZqOQ,169886
2183
+ pygpt_net-2.5.14.dist-info/WHEEL,sha256=b4K_helf-jlQoXBBETfwnf4B04YC67LOev0jo4fX5m8,88
2184
+ pygpt_net-2.5.14.dist-info/entry_points.txt,sha256=qvpII6UHIt8XfokmQWnCYQrTgty8FeJ9hJvOuUFCN-8,43
2185
+ pygpt_net-2.5.14.dist-info/RECORD,,