pygpt-net 2.4.54__py3-none-any.whl → 2.4.55__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 CHANGED
@@ -1,5 +1,10 @@
1
1
  # CHANGELOG
2
2
 
3
+ ## 2.4.55 (2025-01-18)
4
+
5
+ - Added a new option in settings: Audio -> Recording timeout.
6
+ - Added a new option in settings: Audio -> Enable timeout in continuous mode.
7
+
3
8
  ## 2.4.54 (2025-01-18)
4
9
 
5
10
  - Audio output switched from PyGame to PyAudio. It may be necessary to manually connect Alsa in Snap version with: "sudo snap connect pygpt:alsa".
README.md CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  [![pygpt](https://snapcraft.io/pygpt/badge.svg)](https://snapcraft.io/pygpt)
4
4
 
5
- Release: **2.4.54** | build: **2025.01.18** | Python: **>=3.10, <3.13**
5
+ Release: **2.4.55** | build: **2025.01.18** | Python: **>=3.10, <3.13**
6
6
 
7
7
  > Official website: https://pygpt.net | Documentation: https://pygpt.readthedocs.io
8
8
  >
@@ -3960,6 +3960,11 @@ may consume additional tokens that are not displayed in the main window.
3960
3960
 
3961
3961
  ## Recent changes:
3962
3962
 
3963
+ **2.4.55 (2025-01-18)**
3964
+
3965
+ - Added a new option in settings: Audio -> Recording timeout.
3966
+ - Added a new option in settings: Audio -> Enable timeout in continuous mode.
3967
+
3963
3968
  **2.4.54 (2025-01-18)**
3964
3969
 
3965
3970
  - Audio output switched from PyGame to PyAudio. It may be necessary to manually connect Alsa in Snap version with: "sudo snap connect pygpt:alsa".
pygpt_net/CHANGELOG.txt CHANGED
@@ -1,3 +1,8 @@
1
+ 2.4.55 (2025-01-18)
2
+
3
+ - Added a new option in settings: Audio -> Recording timeout.
4
+ - Added a new option in settings: Audio -> Enable timeout in continuous mode.
5
+
1
6
  2.4.54 (2025-01-18)
2
7
 
3
8
  - Audio output switched from PyGame to PyAudio. It may be necessary to manually connect Alsa in Snap version with: "sudo snap connect pygpt:alsa".
pygpt_net/__init__.py CHANGED
@@ -6,14 +6,14 @@
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.18 03:00:00 #
9
+ # Updated Date: 2025.01.18 16: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.4.54"
16
+ __version__ = "2.4.55"
17
17
  __build__ = "2025.01.18"
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.16 01:00:00 #
9
+ # Updated Date: 2025.01.18 16:00:00 #
10
10
  # ================================================== #
11
11
 
12
12
  from typing import Dict
@@ -145,6 +145,7 @@ class Mapping:
145
145
  nodes["agent.iterations.label"] = "toolbox.agent.iterations.label"
146
146
  nodes["agent.auto_stop"] = "toolbox.agent.auto_stop.label"
147
147
  nodes["agent.continue"] = "toolbox.agent.continue.label"
148
+ nodes['layout.split'] = "layout.split"
148
149
  # nodes["indexes.new"] = "idx.new"
149
150
 
150
151
  # input
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "__meta__": {
3
- "version": "2.4.54",
4
- "app.version": "2.4.54",
3
+ "version": "2.4.55",
4
+ "app.version": "2.4.55",
5
5
  "updated_at": "2025-01-18T00:00:00"
6
6
  },
7
7
  "access.audio.event.speech": false,
@@ -78,6 +78,8 @@
78
78
  "audio.input.device": "0",
79
79
  "audio.input.rate": 44100,
80
80
  "audio.input.stop_interval": 10,
81
+ "audio.input.timeout": 120,
82
+ "audio.input.timeout.continuous": false,
81
83
  "audio.transcribe.convert_video": true,
82
84
  "context_threshold": 200,
83
85
  "cmd": false,
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "__meta__": {
3
- "version": "2.4.54",
4
- "app.version": "2.4.54",
3
+ "version": "2.4.55",
4
+ "app.version": "2.4.55",
5
5
  "updated_at": "2025-01-18T00:00:00"
6
6
  },
7
7
  "items": {
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "__meta__": {
3
- "version": "2.4.54",
4
- "app.version": "2.4.54",
3
+ "version": "2.4.55",
4
+ "app.version": "2.4.55",
5
5
  "updated_at": "2025-01-18T00:00:00"
6
6
  },
7
7
  "items": {
@@ -1136,6 +1136,30 @@
1136
1136
  "step": 1,
1137
1137
  "advanced": false
1138
1138
  },
1139
+ "audio.input.timeout": {
1140
+ "section": "audio",
1141
+ "type": "int",
1142
+ "slider": false,
1143
+ "label": "settings.audio.input.timeout",
1144
+ "description": "settings.audio.input.timeout.desc",
1145
+ "value": 120,
1146
+ "min": 0,
1147
+ "multiplier": 1,
1148
+ "step": 1,
1149
+ "advanced": false
1150
+ },
1151
+ "audio.input.timeout.continuous": {
1152
+ "section": "audio",
1153
+ "type": "bool",
1154
+ "slider": false,
1155
+ "label": "settings.audio.input.timeout.continuous",
1156
+ "value": false,
1157
+ "min": null,
1158
+ "max": null,
1159
+ "multiplier": null,
1160
+ "step": null,
1161
+ "advanced": false
1162
+ },
1139
1163
  "llama.idx.list": {
1140
1164
  "section": "llama-index",
1141
1165
  "type": "dict",
@@ -777,6 +777,9 @@ settings.audio.input.rate = Abtastrate
777
777
  settings.audio.input.rate.desc = Abtastrate, Standard: 44100
778
778
  settings.audio.input.stop_interval = Intervall für kontinuierliche automatische Transkription
779
779
  settings.audio.input.stop_interval.desc = Intervall in Sekunden für automatisches Transkribieren eines Audioabschnitts, Standard: 10
780
+ settings.audio.input.timeout = Aufnahme-Zeitüberschreitung
781
+ settings.audio.input.timeout.desc = Zeitüberschreitung (Sekunden) für automatische Stop-Aufzeichnung, 0 zum Deaktivieren, Standard: 120
782
+ settings.audio.input.timeout.continuous = Zeitüberschreitung im Dauerbetrieb aktivieren
780
783
  settings.check_updates = Beim Start nach Updates suchen
781
784
  settings.check_updates.bg = Im Hintergrund nach Updates suchen
782
785
  settings.cmd.field.desc = Aktivieren Sie das `{cmd}`-Werkzeug.
@@ -948,6 +948,9 @@ settings.audio.input.rate = Sampling Rate
948
948
  settings.audio.input.rate.desc = Sampling rate, default: 44100
949
949
  settings.audio.input.stop_interval = Continuous recording auto-transcribe interval
950
950
  settings.audio.input.stop_interval.desc = Interval in seconds for auto-transcribe audio chunk, default: 10
951
+ settings.audio.input.timeout = Recording timeout
952
+ settings.audio.input.timeout.desc = Timeout (seconds) for auto-stop recording, 0 to disable, default: 120
953
+ settings.audio.input.timeout.continuous = Enable timeout in continuous mode
951
954
  settings.check_updates = Check for Updates on start
952
955
  settings.check_updates.bg = Check for Updates in the background
953
956
  settings.cmd.config.collapse = JSON params
@@ -776,6 +776,9 @@ settings.audio.input.rate = Taux d'échantillonnage
776
776
  settings.audio.input.rate.desc = Taux d'échantillonnage, par défaut : 44100
777
777
  settings.audio.input.stop_interval = Intervalo de transcripción automática continua
778
778
  settings.audio.input.stop_interval.desc = Intervalo en segundos para transcribir automáticamente el fragmento de audio, predeterminado: 10
779
+ settings.audio.input.timeout = Tiempo de espera de grabación
780
+ settings.audio.input.timeout.desc = Tiempo de espera (segundos) para detener la grabación automáticamente, 0 para deshabilitar, por defecto: 120
781
+ settings.audio.input.timeout.continuous = Habilitar tiempo de espera en modo continuo
779
782
  settings.check_updates = Buscar actualizaciones al iniciar
780
783
  settings.check_updates.bg = Buscar actualizaciones en segundo plano
781
784
  settings.cmd.field.desc = Habilitar la herramienta `{cmd}`.
@@ -776,6 +776,9 @@ settings.audio.input.rate = Taux d'échantillonnage
776
776
  settings.audio.input.rate.desc = Taux d'échantillonnage, par défaut : 44100
777
777
  settings.audio.input.stop_interval = Intervalle d'auto-transcription enregistrement continu
778
778
  settings.audio.input.stop_interval.desc = Intervalle en secondes pour la transcription automatique d'un morceau audio, par défaut : 10
779
+ settings.audio.input.timeout = Délai d'enregistrement
780
+ settings.audio.input.timeout.desc = Délai (secondes) pour l'arrêt automatique de l'enregistrement, 0 pour désactiver, par défaut : 120
781
+ settings.audio.input.timeout.continuous = Activer le délai en mode continu
779
782
  settings.check_updates = Vérifier les mises à jour au démarrage
780
783
  settings.check_updates.bg = Vérifier les mises à jour en arrière-plan
781
784
  settings.cmd.field.desc = Activer l'outil `{cmd}`.
@@ -777,6 +777,9 @@ settings.audio.input.rate = Frequenza di campionamento
777
777
  settings.audio.input.rate.desc = Frequenza di campionamento, predefinito: 44100
778
778
  settings.audio.input.stop_interval = Intervallo di trascrizione automatica continua
779
779
  settings.audio.input.stop_interval.desc = Intervallo in secondi per la trascrizione automatica del segmento audio, predefinito: 10
780
+ settings.audio.input.timeout = Timeout di registrazione
781
+ settings.audio.input.timeout.desc = Timeout (secondi) per l'arresto automatico della registrazione, 0 per disabilitare, predefinito: 120
782
+ settings.audio.input.timeout.continuous = Abilita timeout in modalità continua
780
783
  settings.check_updates = Controlla aggiornamenti all'avvio
781
784
  settings.check_updates.bg = Controlla gli aggiornamenti in background
782
785
  settings.cmd.field.desc = Abilita lo strumento `{cmd}`.
@@ -776,7 +776,10 @@ settings.audio.input.device.desc = Wybierz urządzenie audio dla wejścia mikrof
776
776
  settings.audio.input.rate = Częstotliwość próbkowania
777
777
  settings.audio.input.rate.desc = Częstotliwość próbkowania, domyślnie: 44100
778
778
  settings.audio.input.stop_interval = Interwał automatycznego transkrybowania nagrania ciągłego
779
- settings.audio.input.stop_interval.desc = Interwał w sekundach dla automatycznego transkrybowania fragmentu audio, domyślnie: 10
779
+ settings.audio.input.stop_interval.desc = Interwał w sekundach dla automatycznego transkrybowania fragmentu audio, domyślnie: 10
780
+ settings.audio.input.timeout = Limit czasu nagrywania
781
+ settings.audio.input.timeout.desc = Limit czasu (w sekundach) dla automatycznego zatrzymania nagrywania, 0 aby wyłączyć, domyślnie: 120
782
+ settings.audio.input.timeout.continuous = Włącz limit czasu w trybie ciągłym
780
783
  settings.check_updates = Sprawdź aktualizacje przy starcie
781
784
  settings.check_updates.bg = Sprawdź aktualizacje w tle
782
785
  settings.cmd.field.desc = Włącz narzędzie `{cmd}`.
@@ -776,6 +776,9 @@ settings.audio.input.rate = Частота дискретизації
776
776
  settings.audio.input.rate.desc = Частота дискретизації, за замовчуванням: 44100
777
777
  settings.audio.input.stop_interval = Інтервал автоматичного транскрибування безперервного запису
778
778
  settings.audio.input.stop_interval.desc = Інтервал у секундах для автоматичного транскрибування фрагмента аудіо, за замовчуванням: 10
779
+ settings.audio.input.timeout = Тайм-аут запису
780
+ settings.audio.input.timeout.desc = Тайм-аут (в секундах) для автоматичної зупинки запису, 0 для відключення, за замовчуванням: 120
781
+ settings.audio.input.timeout.continuous = Увімкнути тайм-аут у безперервному режимі
779
782
  settings.check_updates = Перевіряти оновлення при запуску
780
783
  settings.check_updates.bg = Перевіряти оновлення у фоновому режимі
781
784
  settings.cmd.field.desc = Увімкнути інструмент `{cmd}`.
@@ -878,6 +878,9 @@ settings.audio.input.rate = 采样率
878
878
  settings.audio.input.rate.desc = 采样率,默认: 44100
879
879
  settings.audio.input.stop_interval = 连续录音自动转录间隔
880
880
  settings.audio.input.stop_interval.desc = 自动转录音频片段的间隔(以秒为单位),默认:10
881
+ settings.audio.input.timeout = 录音超时
882
+ settings.audio.input.timeout.desc = 自动停止录音的超时时间(秒),0为禁用,默认:120
883
+ settings.audio.input.timeout.continuous = 在连续模式下启用超时
881
884
  settings.check_updates = 啟動時檢查更新
882
885
  settings.check_updates.bg = 在後台檢查更新
883
886
  settings.cmd.field.desc = 启用 `{cmd}` 工具。
@@ -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.17 02:00:00 #
9
+ # Updated Date: 2025.01.18 16:00:00 #
10
10
  # ================================================== #
11
11
 
12
12
  import os
@@ -92,10 +92,14 @@ class Simple:
92
92
  )
93
93
 
94
94
  # start timeout timer to prevent infinite recording
95
- if self.timer is None:
96
- self.timer = QTimer()
97
- self.timer.timeout.connect(self.stop_timeout)
98
- self.timer.start(self.TIMEOUT_SECONDS * 1000)
95
+ # disable in continuous mode
96
+ timeout = int(self.plugin.window.core.config.get('audio.input.timeout', 120) or 0) # get timeout
97
+ timeout_continuous = self.plugin.window.core.config.get('audio.input.timeout.continuous', False) # enable continuous timeout
98
+ if timeout > 0:
99
+ if self.timer is None and (not continuous_enabled or timeout_continuous):
100
+ self.timer = QTimer()
101
+ self.timer.timeout.connect(self.stop_timeout)
102
+ self.timer.start(timeout * 1000)
99
103
 
100
104
  if not force:
101
105
  if not self.plugin.window.core.audio.capture.check_audio_input():
@@ -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.17 02:00:00 #
9
+ # Updated Date: 2025.01.18 16:00:00 #
10
10
  # ================================================== #
11
11
 
12
12
  import copy
@@ -1811,6 +1811,14 @@ class Patch:
1811
1811
  if 'audio.input.continuous' not in data:
1812
1812
  data["audio.input.continuous"] = False
1813
1813
 
1814
+ # < 2.4.55
1815
+ if old < parse_version("2.4.55"):
1816
+ print("Migrating config from < 2.4.55...")
1817
+ if 'audio.input.timeout' not in data:
1818
+ data["audio.input.timeout"] = 120
1819
+ if 'audio.input.timeout.continuous' not in data:
1820
+ data["audio.input.timeout.continuous"] = False
1821
+
1814
1822
  # update file
1815
1823
  migrated = False
1816
1824
  if updated:
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: pygpt-net
3
- Version: 2.4.54
3
+ Version: 2.4.55
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
  [![pygpt](https://snapcraft.io/pygpt/badge.svg)](https://snapcraft.io/pygpt)
95
95
 
96
- Release: **2.4.54** | build: **2025.01.18** | Python: **>=3.10, <3.13**
96
+ Release: **2.4.55** | build: **2025.01.18** | Python: **>=3.10, <3.13**
97
97
 
98
98
  > Official website: https://pygpt.net | Documentation: https://pygpt.readthedocs.io
99
99
  >
@@ -4051,6 +4051,11 @@ may consume additional tokens that are not displayed in the main window.
4051
4051
 
4052
4052
  ## Recent changes:
4053
4053
 
4054
+ **2.4.55 (2025-01-18)**
4055
+
4056
+ - Added a new option in settings: Audio -> Recording timeout.
4057
+ - Added a new option in settings: Audio -> Enable timeout in continuous mode.
4058
+
4054
4059
  **2.4.54 (2025-01-18)**
4055
4060
 
4056
4061
  - Audio output switched from PyGame to PyAudio. It may be necessary to manually connect Alsa in Snap version with: "sudo snap connect pygpt:alsa".
@@ -1,9 +1,9 @@
1
- CHANGELOG.md,sha256=9kJiaQVA08r9redE_iYTETXGixl9cryuw61GQveLdqQ,81710
2
- README.md,sha256=4YCoQAqxVyAhDdD9opXn0-M7zqUjDlPHSGr1c0QdbxQ,162714
1
+ CHANGELOG.md,sha256=Pop3v5fpEEHCd864P4qup6MZXgnlR7B7lzqNoBA9Boc,81875
2
+ README.md,sha256=ktjE0DK7otiDPDri_AP60OLMnbTI9rknz0ScWere-oU,162880
3
3
  icon.png,sha256=CzcINJaU23a9hNjsDlDNbyuiEvKZ4Wg6DQVYF6SpuRg,13970
4
- pygpt_net/CHANGELOG.txt,sha256=xWt9AnWkqD1C--Zh8yv7kq9_LtMMaFf03IQ5VHD8Kng,80212
4
+ pygpt_net/CHANGELOG.txt,sha256=aW8ls7LkCwP-GpzvKXu92Rnut8PwQ9pi1xSbOS0-enE,80374
5
5
  pygpt_net/LICENSE,sha256=dz9sfFgYahvu2NZbx4C1xCsVn9GVer2wXcMkFRBvqzY,1146
6
- pygpt_net/__init__.py,sha256=J52ofbEM6kTMBSYGxEXT_LggHYzeNSGBnF_0DNlsn0k,1307
6
+ pygpt_net/__init__.py,sha256=x-TOyijEGu9rkfuTONxQIU1jANC8Kml2w97OsjQM_ik,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
@@ -72,7 +72,7 @@ pygpt_net/controller/kernel/reply.py,sha256=-5z1QHsXh2PvtZSC18gXc-fdyVVK5WACiEK_
72
72
  pygpt_net/controller/kernel/stack.py,sha256=aPLetBoQDKYawQJg8pkAO3tHfJgKwO_NvDOR8F2wJkM,3767
73
73
  pygpt_net/controller/lang/__init__.py,sha256=pTSX0il3xLNGHoh4XAOdIUlbC2f9kIBCzthRDDOjyNY,3287
74
74
  pygpt_net/controller/lang/custom.py,sha256=o_JpcFmDCkuqzNzA_esX7Ajg61O14tOr17ZKcl393AQ,5913
75
- pygpt_net/controller/lang/mapping.py,sha256=nLdY8PzFt-iPcPBmVnth6vtjOQR5qFH9E5oqd4b-znI,23553
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
78
  pygpt_net/controller/launcher.py,sha256=om6aEZx31cSiCuShnDHp5Fs-Lj6Rb_pmbOO5fBweEWU,1899
@@ -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=BLBW_HrLqQZJ73e0ZuIBs2dZZwyoMM7-kvHlfKUojEU,19805
251
- pygpt_net/data/config/models.json,sha256=BFVoxYzgJAnhvoPh7BM43eS8HSyUsilD1gJNFuIq5lM,61940
252
- pygpt_net/data/config/modes.json,sha256=kcA7fM9AeHGKJ3IiCNaNuBV8UQLnIto3eG_2CoBblgU,1923
250
+ pygpt_net/data/config/config.json,sha256=9d9NMPuChV6qb-mylsy6AGQsGfi3VrEKDq8lPg-8-d8,19878
251
+ pygpt_net/data/config/models.json,sha256=oVzkqFeysqD_6oNRGa1OXdHG2HFzZzlt0O8Kt2wnU5s,61940
252
+ pygpt_net/data/config/modes.json,sha256=q6JL24TtxrPm1QxIB_IzZq8Rqy3wJHgdUp0KRvjgIuw,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
@@ -269,7 +269,7 @@ pygpt_net/data/config/presets/current.vision.json,sha256=x1ll5B3ROSKYQA6l27PRGXU
269
269
  pygpt_net/data/config/presets/dalle_white_cat.json,sha256=esqUb43cqY8dAo7B5u99tRC0MBV5lmlrVLnJhTSkL8w,552
270
270
  pygpt_net/data/config/presets/joke_agent.json,sha256=R6n9P7KRb0s-vZWZE7kHdlOfXAx1yYrPmUw8uLyw8OE,474
271
271
  pygpt_net/data/config/presets/joke_expert.json,sha256=aFBFCY97Uba71rRq0MSeakXaOj8yuaUqekQ842YHv64,683
272
- pygpt_net/data/config/settings.json,sha256=F-c8vI9nI_RZs8tD9CnuLphwEw0BezmB75aNRPq2b5I,49173
272
+ pygpt_net/data/config/settings.json,sha256=gLD_tqIq9YxQ3KrpiqsHw5TO8Tp5fJ_BBdvOP2aaOFg,49830
273
273
  pygpt_net/data/config/settings_section.json,sha256=M22jrZvly6KliNr_fhkS6rk_bdzlFK4OyoWZ6TiyRnY,1004
274
274
  pygpt_net/data/css/fix_windows.css,sha256=Mks14Vg25ncbMqZJfAMStrhvZmgHF6kU75ohTWRZeI8,664
275
275
  pygpt_net/data/css/markdown.css,sha256=yaoJPogZZ_ghbqP8vTXTycwVyD61Ik5_033NpzuUzC0,1122
@@ -1485,14 +1485,14 @@ pygpt_net/data/js/katex/fonts/KaTeX_Typewriter-Regular.woff,sha256=4U_tArGrp86fW
1485
1485
  pygpt_net/data/js/katex/fonts/KaTeX_Typewriter-Regular.woff2,sha256=cdUX1ngneHz6vfGGkUzDNY7aU543kxlB8rL9SiH2jAs,13568
1486
1486
  pygpt_net/data/js/katex/katex.min.css,sha256=lVaKnUaQNG4pI71WHffQZVALLQF4LMZEk4nOia8U9ow,23532
1487
1487
  pygpt_net/data/js/katex/katex.min.js,sha256=KLASOtKS2x8pUxWVzCDmlWJ4jhuLb0vtrgakbD6gDDo,276757
1488
- pygpt_net/data/locale/locale.de.ini,sha256=IIoIo0EPtLhCejFaNErntQRFXaOx-rpSK6Ya3LqgOD4,63875
1489
- pygpt_net/data/locale/locale.en.ini,sha256=wR8v7K_P9RgU5uNdifLrdJJDWxBP2EKzFbBwfgv8cJ0,76384
1490
- pygpt_net/data/locale/locale.es.ini,sha256=Y7g7DEmsGPrroEokbznznIEP80T87ryESfn0Wo00fyY,64096
1491
- pygpt_net/data/locale/locale.fr.ini,sha256=brcjmhUzvzJlgUqfk6lpPowIR8MAakhZ0mQDwz72aFw,66133
1492
- pygpt_net/data/locale/locale.it.ini,sha256=Zhfx3IMtflcaemL-qJgn5bILkMmcirStKVJyQ4xb5mM,62871
1493
- pygpt_net/data/locale/locale.pl.ini,sha256=ojZqlcDl92btG_GNIZsD9qs8XtxQd19Xpg9uauVWPoM,62968
1494
- pygpt_net/data/locale/locale.uk.ini,sha256=mV1EpN3RUxI-kO7zTY3W05EbqHpVzpIGlOwvFm-ZD-Y,87661
1495
- pygpt_net/data/locale/locale.zh.ini,sha256=GVWy62XX4HLqJyY8tnGgdlMTqJm8h3E5I52e36ZmRII,64638
1488
+ pygpt_net/data/locale/locale.de.ini,sha256=ejI7RPX3FqvOcYcXvgPWNTeA9S58IVYI6L6u2WdXWjA,64162
1489
+ pygpt_net/data/locale/locale.en.ini,sha256=lTr4gCHBtj_2Y9krAZ3QQVwdcET3vFHoFFs8h8Ax9kA,76615
1490
+ pygpt_net/data/locale/locale.es.ini,sha256=5rKfjtkUwItP9FBpK-vnnPEpsg-5fbqATm_2e1Ot6U8,64391
1491
+ pygpt_net/data/locale/locale.fr.ini,sha256=WuP5IGawZdAYl21H0ZZM0fPpmk7L0cnVyO8V_AjuahY,66403
1492
+ pygpt_net/data/locale/locale.it.ini,sha256=7irOYJlOW2NDB9hr6DtXwhtBHpzxYtlakmGDxjOpHhE,63144
1493
+ pygpt_net/data/locale/locale.pl.ini,sha256=HBn19-F6lVgZccuk9abXTpy_7cJCZZG5-9jyaKOUFlk,63247
1494
+ pygpt_net/data/locale/locale.uk.ini,sha256=DzXye0XeDBRkoNmv2UftZZslp49ZOcgww00hIHbamyM,88046
1495
+ pygpt_net/data/locale/locale.zh.ini,sha256=7lRrJawpSe6MscCB1P6hLGpCIT3g6JX3d7BywgGnQxk,64862
1496
1496
  pygpt_net/data/locale/plugin.agent.de.ini,sha256=BY28KpfFvgfVYJzcw2o5ScWnR4uuErIYGyc3NVHlmTw,1714
1497
1497
  pygpt_net/data/locale/plugin.agent.en.ini,sha256=88LkZUpilbV9l4QDbMyIdq_K9sbWt-CQPpavEttPjJU,1489
1498
1498
  pygpt_net/data/locale/plugin.agent.es.ini,sha256=bqaJQne8HPKFVtZ8Ukzo1TSqVW41yhYbGUqW3j2x1p8,1680
@@ -1701,7 +1701,7 @@ pygpt_net/plugin/agent/__init__.py,sha256=GPbnpS9djcfzuPRxM2mu0hpUPRa51KtUR27Al6
1701
1701
  pygpt_net/plugin/agent/config.py,sha256=V4M0boutzxFVWTQxM8UA7HgKUR4v_Y-5dX_XfeLzzL8,9792
1702
1702
  pygpt_net/plugin/audio_input/__init__.py,sha256=vGwDtsPkwCEwiz2ePnzW48Tuhr0VHEc7kQua11VE7tI,15714
1703
1703
  pygpt_net/plugin/audio_input/config.py,sha256=x57IVxBapJp9rwos327T6U0jTFSPeRJ6BorqfYxJ4u0,9197
1704
- pygpt_net/plugin/audio_input/simple.py,sha256=z9YCLGca8dV_i6pOBIAWWQRvp3euL_VDbCNbQVdhsiw,6747
1704
+ pygpt_net/plugin/audio_input/simple.py,sha256=dLJpTY5Ws0UOCyBgN0U7IzSDN-8bPLWwGP1kGoE536g,7116
1705
1705
  pygpt_net/plugin/audio_input/worker.py,sha256=O-boo_flpqS72GLHlD4YgLvmRe4asgu1HTY5nBXVGrs,11996
1706
1706
  pygpt_net/plugin/audio_output/__init__.py,sha256=OnuHRhtzoOkMA5i_TOVqojP_D1j-_pj6-OYYnBoWxfM,8915
1707
1707
  pygpt_net/plugin/audio_output/config.py,sha256=IA2K-9fQMZSwYGyi30Uh5qAlYwuqwaHo3dtDJ13vQdo,1208
@@ -1820,7 +1820,7 @@ pygpt_net/provider/core/calendar/db_sqlite/storage.py,sha256=QDclQCQdr4QyRIqjgGX
1820
1820
  pygpt_net/provider/core/config/__init__.py,sha256=jQQgG9u_ZLsZWXustoc1uvC-abUvj4RBKPAM30-f2Kc,488
1821
1821
  pygpt_net/provider/core/config/base.py,sha256=cbvzbMNqL2XgC-36gGubnU37t94AX7LEw0lecb2Nm80,1365
1822
1822
  pygpt_net/provider/core/config/json_file.py,sha256=P78SRQpNr_nF7TYftYLnHl_DVo7GLPNs4_lvw97sqq8,5122
1823
- pygpt_net/provider/core/config/patch.py,sha256=oJqkipPuEKRNhyCcnzkF66x3N3zU2WF839xl3Rn2Bcc,95322
1823
+ pygpt_net/provider/core/config/patch.py,sha256=ulPXu8kqYuNOT6aGkeK3QIfjCCLFduZxosQkmjLIBFc,95691
1824
1824
  pygpt_net/provider/core/ctx/__init__.py,sha256=jQQgG9u_ZLsZWXustoc1uvC-abUvj4RBKPAM30-f2Kc,488
1825
1825
  pygpt_net/provider/core/ctx/base.py,sha256=Tfb4MDNe9BXXPU3lbzpdYwJF9S1oa2-mzgu5XT4It9g,3003
1826
1826
  pygpt_net/provider/core/ctx/db_sqlite/__init__.py,sha256=G2pB7kZfREJRLJZmfv3DKTslXC-K7EhNN2sn56q6BFA,11753
@@ -2176,8 +2176,8 @@ pygpt_net/ui/widget/textarea/web.py,sha256=9FoL02QY6mOxtc4t4fe8X7fVDIdPn9Sb_fwsv
2176
2176
  pygpt_net/ui/widget/vision/__init__.py,sha256=8HT4tQFqQogEEpGYTv2RplKBthlsFKcl5egnv4lzzEw,488
2177
2177
  pygpt_net/ui/widget/vision/camera.py,sha256=T8b5cmK6uhf_WSSxzPt_Qod8JgMnst6q8sQqRvgQiSA,2584
2178
2178
  pygpt_net/utils.py,sha256=Gsh_mITVke3bb8o-Ke57l__xA5a9Wv4t7tlsnSQULj8,6655
2179
- pygpt_net-2.4.54.dist-info/LICENSE,sha256=rbPqNB_xxANH8hKayJyIcTwD4bj4Y2G-Mcm85r1OImM,1126
2180
- pygpt_net-2.4.54.dist-info/METADATA,sha256=0fJiXhGHCcQEGca03Bc5_3Vdan85g85lZsU99qR-tn4,167593
2181
- pygpt_net-2.4.54.dist-info/WHEEL,sha256=FMvqSimYX_P7y0a7UY-_Mc83r5zkBZsCYPm7Lr0Bsq4,88
2182
- pygpt_net-2.4.54.dist-info/entry_points.txt,sha256=qvpII6UHIt8XfokmQWnCYQrTgty8FeJ9hJvOuUFCN-8,43
2183
- pygpt_net-2.4.54.dist-info/RECORD,,
2179
+ pygpt_net-2.4.55.dist-info/LICENSE,sha256=rbPqNB_xxANH8hKayJyIcTwD4bj4Y2G-Mcm85r1OImM,1126
2180
+ pygpt_net-2.4.55.dist-info/METADATA,sha256=DF0UvX5PETZe9CJ39sA35SBfatVhPLws4MpzVHQr8qA,167759
2181
+ pygpt_net-2.4.55.dist-info/WHEEL,sha256=FMvqSimYX_P7y0a7UY-_Mc83r5zkBZsCYPm7Lr0Bsq4,88
2182
+ pygpt_net-2.4.55.dist-info/entry_points.txt,sha256=qvpII6UHIt8XfokmQWnCYQrTgty8FeJ9hJvOuUFCN-8,43
2183
+ pygpt_net-2.4.55.dist-info/RECORD,,