pygpt-net 2.6.14__py3-none-any.whl → 2.6.16__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.
Files changed (57) hide show
  1. pygpt_net/CHANGELOG.txt +12 -0
  2. pygpt_net/__init__.py +3 -3
  3. pygpt_net/controller/chat/command.py +18 -6
  4. pygpt_net/controller/chat/render.py +10 -1
  5. pygpt_net/controller/plugins/plugins.py +31 -15
  6. pygpt_net/controller/plugins/settings.py +10 -1
  7. pygpt_net/controller/presets/editor.py +11 -32
  8. pygpt_net/controller/theme/common.py +2 -2
  9. pygpt_net/controller/ui/tabs.py +5 -1
  10. pygpt_net/core/agents/observer/evaluation.py +3 -14
  11. pygpt_net/core/agents/runners/llama_workflow.py +9 -6
  12. pygpt_net/core/command/command.py +5 -3
  13. pygpt_net/core/experts/experts.py +58 -13
  14. pygpt_net/core/plugins/plugins.py +12 -1
  15. pygpt_net/core/render/base.py +8 -0
  16. pygpt_net/core/render/markdown/renderer.py +9 -0
  17. pygpt_net/core/render/plain/renderer.py +9 -0
  18. pygpt_net/core/render/web/renderer.py +17 -3
  19. pygpt_net/data/config/config.json +6 -6
  20. pygpt_net/data/config/models.json +3 -3
  21. pygpt_net/data/locale/locale.de.ini +1 -0
  22. pygpt_net/data/locale/locale.en.ini +3 -2
  23. pygpt_net/data/locale/locale.es.ini +1 -0
  24. pygpt_net/data/locale/locale.fr.ini +1 -0
  25. pygpt_net/data/locale/locale.it.ini +1 -0
  26. pygpt_net/data/locale/locale.pl.ini +2 -1
  27. pygpt_net/data/locale/locale.uk.ini +1 -0
  28. pygpt_net/data/locale/locale.zh.ini +1 -0
  29. pygpt_net/data/locale/plugin.openai_dalle.de.ini +1 -1
  30. pygpt_net/data/locale/plugin.openai_dalle.en.ini +1 -1
  31. pygpt_net/data/locale/plugin.openai_dalle.es.ini +1 -1
  32. pygpt_net/data/locale/plugin.openai_dalle.fr.ini +1 -1
  33. pygpt_net/data/locale/plugin.openai_dalle.it.ini +1 -1
  34. pygpt_net/data/locale/plugin.openai_dalle.pl.ini +1 -1
  35. pygpt_net/data/locale/plugin.openai_dalle.uk.ini +1 -1
  36. pygpt_net/data/locale/plugin.openai_dalle.zh.ini +1 -1
  37. pygpt_net/data/locale/plugin.openai_vision.de.ini +1 -1
  38. pygpt_net/data/locale/plugin.openai_vision.en.ini +1 -1
  39. pygpt_net/data/locale/plugin.openai_vision.es.ini +1 -1
  40. pygpt_net/data/locale/plugin.openai_vision.fr.ini +1 -1
  41. pygpt_net/data/locale/plugin.openai_vision.it.ini +1 -1
  42. pygpt_net/data/locale/plugin.openai_vision.pl.ini +1 -1
  43. pygpt_net/data/locale/plugin.openai_vision.uk.ini +1 -1
  44. pygpt_net/data/locale/plugin.openai_vision.zh.ini +1 -1
  45. pygpt_net/item/ctx.py +5 -4
  46. pygpt_net/plugin/idx_llama_index/plugin.py +9 -5
  47. pygpt_net/plugin/idx_llama_index/worker.py +5 -2
  48. pygpt_net/plugin/openai_dalle/plugin.py +1 -1
  49. pygpt_net/tools/translator/ui/dialogs.py +1 -0
  50. pygpt_net/tools/translator/ui/widgets.py +1 -2
  51. pygpt_net/ui/dialog/plugins.py +6 -4
  52. pygpt_net/ui/widget/textarea/editor.py +1 -2
  53. {pygpt_net-2.6.14.dist-info → pygpt_net-2.6.16.dist-info}/METADATA +24 -12
  54. {pygpt_net-2.6.14.dist-info → pygpt_net-2.6.16.dist-info}/RECORD +57 -57
  55. {pygpt_net-2.6.14.dist-info → pygpt_net-2.6.16.dist-info}/LICENSE +0 -0
  56. {pygpt_net-2.6.14.dist-info → pygpt_net-2.6.16.dist-info}/WHEEL +0 -0
  57. {pygpt_net-2.6.14.dist-info → pygpt_net-2.6.16.dist-info}/entry_points.txt +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: pygpt-net
3
- Version: 2.6.14
3
+ Version: 2.6.16
4
4
  Summary: Desktop AI Assistant powered by: OpenAI GPT-5, o1, o3, GPT-4, Gemini, Claude, Grok, DeepSeek, and other models supported by Llama Index, and Ollama. Chatbot, agents, completion, image generation, vision analysis, speech-to-text, plugins, internet access, file handling, command execution and more.
5
5
  License: MIT
6
6
  Keywords: py_gpt,py-gpt,pygpt,desktop,app,o1,o3,gpt-5,gpt,gpt4,gpt-4o,gpt-4v,gpt3.5,gpt-4,gpt-4-vision,gpt-3.5,llama3,mistral,gemini,grok,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
@@ -108,7 +108,7 @@ Description-Content-Type: text/markdown
108
108
 
109
109
  [![pygpt](https://snapcraft.io/pygpt/badge.svg)](https://snapcraft.io/pygpt)
110
110
 
111
- Release: **2.6.14** | build: **2025-08-19** | Python: **>=3.10, <3.14**
111
+ Release: **2.6.16** | build: **2025-08-20** | Python: **>=3.10, <3.14**
112
112
 
113
113
  > Official website: https://pygpt.net | Documentation: https://pygpt.readthedocs.io
114
114
  >
@@ -520,7 +520,7 @@ Above where you type your messages, the interface shows you the number of tokens
520
520
 
521
521
  ![v2_mode_chat](https://github.com/szczyglis-dev/py-gpt/raw/master/docs/source/images/v2_mode_chat.png)
522
522
 
523
- **Vision:** If you want to send photos from your disk or images from your camera for analysis, and the selected model does not support Vision, you must enable the `GPT-4 Vision (inline)` plugin in the Plugins menu. This plugin allows you to send photos or images from your camera for analysis in any Chat mode.
523
+ **Vision:** If you want to send photos from your disk or images from your camera for analysis, and the selected model does not support Vision, you must enable the `Vision (inline)` plugin in the Plugins menu. This plugin allows you to send photos or images from your camera for analysis in any Chat mode.
524
524
 
525
525
  ![v3_vision_plugins](https://github.com/szczyglis-dev/py-gpt/raw/master/docs/source/images/v3_vision_plugins.png)
526
526
 
@@ -528,7 +528,7 @@ With this plugin, you can capture an image with your camera or attach an image a
528
528
 
529
529
  ![v3_vision_chat](https://github.com/szczyglis-dev/py-gpt/raw/master/docs/source/images/v3_vision_chat.png)
530
530
 
531
- **Image generation:** If you want to generate images (using DALL-E) directly in chat you must enable plugin `DALL-E 3 (inline)` in the Plugins menu.
531
+ **Image generation:** If you want to generate images (using DALL-E) directly in chat you must enable plugin `Image generation (inline)` in the Plugins menu.
532
532
  Plugin allows you to generate images in Chat mode:
533
533
 
534
534
  ![v3_img_chat](https://github.com/szczyglis-dev/py-gpt/raw/master/docs/source/images/v3_img_chat.png)
@@ -686,9 +686,9 @@ and displaying the image onscreen. You can send raw prompt to `DALL-E` in `Image
686
686
 
687
687
  ![v3_img](https://github.com/szczyglis-dev/py-gpt/raw/master/docs/source/images/v3_img.png)
688
688
 
689
- Image generation using DALL-E is available in every mode via plugin `DALL-E 3 Image Generation (inline)`. Just ask any model, in any mode, like e.g. GPT-4 to generate an image and it will do it inline, without need to mode change.
689
+ Image generation using DALL-E is available in every mode via plugin `Image Generation (inline)`. Just ask any model, in any mode, like e.g. GPT-4 to generate an image and it will do it inline, without need to mode change.
690
690
 
691
- If you want to generate images (using DALL-E) directly in chat you must enable plugin **DALL-E 3 Inline** in the Plugins menu.
691
+ If you want to generate images (using DALL-E) directly in chat you must enable plugin **Image generation (inline)** in the Plugins menu.
692
692
  Plugin allows you to generate images in Chat mode:
693
693
 
694
694
  ![v3_img_chat](https://github.com/szczyglis-dev/py-gpt/raw/master/docs/source/images/v3_img_chat.png)
@@ -726,7 +726,7 @@ This mode enables image analysis using the `gpt-4o`, `gpt-4-vision` and other vi
726
726
  it also allows you to upload images or provide URLs to images. The vision feature can analyze both local
727
727
  images and those found online.
728
728
 
729
- Vision is also integrated into any chat mode via plugin `GPT-4 Vision (inline)`. Just enable the plugin and use Vision in other work modes, such as Chat or Chat with Files.
729
+ Vision is also integrated into any chat mode via plugin `Vision (inline)`. Just enable the plugin and use Vision in other work modes, such as Chat or Chat with Files.
730
730
 
731
731
  Vision mode also includes real-time video capture from camera. To capture image from camera and append it to chat just click on video at left side. You can also enable `Auto capture` - image will be captured and appended to chat message every time you send message.
732
732
 
@@ -1447,11 +1447,11 @@ as well as list and create directories.
1447
1447
 
1448
1448
  - `Crontab / Task scheduler` - plugin provides cron-based job scheduling - you can schedule tasks/prompts to be sent at any time using cron-based syntax for task setup.
1449
1449
 
1450
- - `DALL-E 3: Image Generation (inline)` - integrates DALL-E 3 image generation with any chat and mode. Just enable and ask for image in Chat mode, using standard model like GPT-4. The plugin does not require the `+ Tools` option to be enabled.
1450
+ - `Image Generation (inline)` - integrates DALL-E 3 image generation with any chat and mode. Just enable and ask for image in Chat mode, using standard model like GPT-4. The plugin does not require the `+ Tools` option to be enabled.
1451
1451
 
1452
1452
  - `Experts (inline)` - allows calling experts in any chat mode. This is the inline Experts (co-op) mode.
1453
1453
 
1454
- - `GPT-4 Vision (inline)` - integrates Vision capabilities with any chat mode, not just Vision mode. When the plugin is enabled, the model temporarily switches to vision in the background when an image attachment or vision capture is provided.
1454
+ - `Vision (inline)` - integrates Vision capabilities with any chat mode, not just Vision mode. When the plugin is enabled, the model temporarily switches to vision in the background when an image attachment or vision capture is provided.
1455
1455
 
1456
1456
  - `Real Time` - automatically appends the current date and time to the system prompt, informing the model about current time.
1457
1457
 
@@ -2644,7 +2644,7 @@ If enabled, then a new context will be created on every run of the job. *Default
2644
2644
  If enabled, then a tray notification will be shown on every run of the job. *Default:* `True`
2645
2645
 
2646
2646
 
2647
- ## DALL-E 3: Image Generation (inline)
2647
+ ## Image Generation (inline)
2648
2648
 
2649
2649
  The plugin integrates `DALL-E 3` image generation with any chat mode. Simply enable it and request an image in Chat mode, using a standard model such as `GPT-4`. The plugin does not require the `+ Tools` option to be enabled.
2650
2650
 
@@ -2660,7 +2660,7 @@ The plugin allows calling experts in any chat mode. This is the inline Experts (
2660
2660
 
2661
2661
  See the `Work modes -> Experts` section for more details.
2662
2662
 
2663
- ## GPT-4 Vision (inline)
2663
+ ## Vision (inline)
2664
2664
 
2665
2665
  The plugin integrates vision capabilities across all chat modes, not just Vision mode. Once enabled, it allows the model to seamlessly switch to vision processing in the background whenever an image attachment or vision capture is detected.
2666
2666
 
@@ -3597,7 +3597,7 @@ Enable/disable remote tools, like Web Search or Image generation to use in OpenA
3597
3597
 
3598
3598
  - `Sub-mode for experts`: Sub-mode to use in Experts mode (chat, llama_index, etc.). Default: chat.
3599
3599
 
3600
- - `Use planner agent for expert reasoning`: If enabled, the Planner agent will be used for expert calls and expert reasoning. Default: False
3600
+ - `Use agent for expert reasoning`: If enabled, the Planner agent will be used for expert calls and expert reasoning. Default: False
3601
3601
 
3602
3602
  - `Use native API function calls`: Use API function calls to run commands from plugins instead of using command prompts - Experts only, default: False
3603
3603
 
@@ -4566,6 +4566,18 @@ may consume additional tokens that are not displayed in the main window.
4566
4566
 
4567
4567
  ## Recent changes:
4568
4568
 
4569
+ **2.6.16 (2025-08-20)**
4570
+
4571
+ - Fixed: Attachment string joining.
4572
+ - Improved expert function calls.
4573
+ - Added sorting to the plugin list.
4574
+
4575
+ **2.6.15 (2025-08-20)**
4576
+
4577
+ - Added: do not change the context menu font size in text editing.
4578
+ - Added: do not reload context items on tab change if already loaded.
4579
+ - Fixed: appending of names and avatars in the stream chunk.
4580
+
4569
4581
  **2.6.14 (2025-08-19)**
4570
4582
 
4571
4583
  - Fixed: Agent evaluation tool runs even if tools are disabled.
@@ -1,6 +1,6 @@
1
- pygpt_net/CHANGELOG.txt,sha256=MteKitJVszN9R1u3hfVWk11KFOxt9a4NIkyIVhWVffE,99967
1
+ pygpt_net/CHANGELOG.txt,sha256=fEGXitN6NrcJKyGof7KHvchcHN0Yu7GjdXPB7Y7af50,100315
2
2
  pygpt_net/LICENSE,sha256=dz9sfFgYahvu2NZbx4C1xCsVn9GVer2wXcMkFRBvqzY,1146
3
- pygpt_net/__init__.py,sha256=qxhiFAYY-bI6byswkH6rOhEXbQF7ZpcYWH2apkXFhaM,1373
3
+ pygpt_net/__init__.py,sha256=rmHqGkQwYxTuEBs2sAqrSt2yi08x26bOdCxMBp22w-g,1373
4
4
  pygpt_net/app.py,sha256=2IXjjYJ0tm-iFn3pHu3-JGoFAnN9YvmXGHPmeOhpU3Y,20999
5
5
  pygpt_net/config.py,sha256=LCKrqQfePVNrAvH3EY_1oZx1Go754sDoyUneJ0iGWFI,16660
6
6
  pygpt_net/container.py,sha256=NsMSHURaEC_eW8vrCNdztwqkxB7jui3yVlzUOMYvCHg,4124
@@ -35,13 +35,13 @@ pygpt_net/controller/chat/__init__.py,sha256=lx8FfN-Uoet5Y91xFxrA95N65vt_v99HcZd
35
35
  pygpt_net/controller/chat/attachment.py,sha256=hU1Slpop6rebGcLTwln-zL5SjXxhDNJUCEtKRVRRa50,20897
36
36
  pygpt_net/controller/chat/audio.py,sha256=QsU36McxqlRoP6B-NSeck968g1M8JhlLkLwGLunbapw,3210
37
37
  pygpt_net/controller/chat/chat.py,sha256=ad6aKGK1JJBl8fVJnEwJygqu17Vt-z26TcNfpSDmNIw,3010
38
- pygpt_net/controller/chat/command.py,sha256=mxSolVH-ipTAxDvMSilTR4hFfkliye-yynSsCDTujv8,4787
38
+ pygpt_net/controller/chat/command.py,sha256=eKFQzP0tehZ3S_G7RoZVMTebQFSjPIpix3t7vDB7MWc,5291
39
39
  pygpt_net/controller/chat/common.py,sha256=mOHvXqj3pPCzNPU82i7NXSmglW8jh7G5cCKDeiVTOKs,16779
40
40
  pygpt_net/controller/chat/files.py,sha256=QZAi1Io57EU7htKt9M5I9OoGAFX51OH2V5-NsJktOto,2838
41
41
  pygpt_net/controller/chat/image.py,sha256=yPX26gsz0fLnyXR88lpVyvvHnKA-yZwfXJ4paUDYkeM,8579
42
42
  pygpt_net/controller/chat/input.py,sha256=EPA90r6GqHIlu4JJbr0cuvKIEYSs6LVkimxrWHAyyX0,12390
43
43
  pygpt_net/controller/chat/output.py,sha256=aSgZ8E8IaP4Jjd0ab6eXhebM_YIRPW7pRJUesYCgDQg,10864
44
- pygpt_net/controller/chat/render.py,sha256=YIKWMZIUXD3f_11p9mXjgg-TtudZTjJ26iHXTn553Qc,20401
44
+ pygpt_net/controller/chat/render.py,sha256=-Z-beOsEvw_tS4I8kBT5Z0n9KhDlgrEQH4x1PLDvxhE,20613
45
45
  pygpt_net/controller/chat/response.py,sha256=tacJOG_iG7IjEFiZ4iDggEVVS9mbL0e92JBC--7bnCY,12543
46
46
  pygpt_net/controller/chat/stream.py,sha256=zmDGI_Z9Rn8IYv6vEIVBMTOGjjY0zlfmM3qJMddRGRI,21994
47
47
  pygpt_net/controller/chat/text.py,sha256=ktluNw9ItG4g9p3OpOSmgALhFf1Gnonhl3J9kLzdTqU,10743
@@ -108,11 +108,11 @@ pygpt_net/controller/painter/capture.py,sha256=X3TqnNypxT_wngkQ4ovfS9glQwoGHyM-p
108
108
  pygpt_net/controller/painter/common.py,sha256=gTRCIcmAsgYhueUWNfEIwIJo-40YBVhoNSksOY1Oj34,6395
109
109
  pygpt_net/controller/painter/painter.py,sha256=1Ekmr2a3irDkSb2wowiPXhW59rfdZOW1tdbxeubph-k,2747
110
110
  pygpt_net/controller/plugins/__init__.py,sha256=iocY37De1H2Nh7HkC7ZYvUus2xzcckslgr5a4PwtQII,511
111
- pygpt_net/controller/plugins/plugins.py,sha256=jO5KcC0jsIcwF2U6eSZqicGKUr2MzC0F7zLMDiqwtE8,13849
111
+ pygpt_net/controller/plugins/plugins.py,sha256=DysPDatuIi8t1k-nnUfy8tLBFBberTAuL8YKNVXXZd0,14917
112
112
  pygpt_net/controller/plugins/presets.py,sha256=8EsEwpU2MjWMQu1kcY4JTcyqqN8pjBrcxA2uW2tFU_A,11674
113
- pygpt_net/controller/plugins/settings.py,sha256=pa0iJvpb1SXWD8hqYoC_BuSogx2-5u6nwcFF3TH5sWw,5732
113
+ pygpt_net/controller/plugins/settings.py,sha256=OT1MNRUKx_9E3COJKVBnNIf3ZybkI2fORgQUbRE-z4U,6063
114
114
  pygpt_net/controller/presets/__init__.py,sha256=Bb9_aAvGxQcKCW2fvG5CAJ6ZUwNYN3GaCf3BXB9eGfI,511
115
- pygpt_net/controller/presets/editor.py,sha256=-fFDkIqDwhYwAaSRuK6IayjX8RriqFoc0_LKblSOi-Q,39449
115
+ pygpt_net/controller/presets/editor.py,sha256=B4ukcwX2MTGH2ocAlDyAC1AV0ftQipDTciqMiC-vhiw,39307
116
116
  pygpt_net/controller/presets/experts.py,sha256=dfPKmAPO-7gaUD2ILs3lR005ir32G5vV-Sa5TGEHwOU,5820
117
117
  pygpt_net/controller/presets/presets.py,sha256=Tq9AIgr042ALu6hEQunBxnUZTzLdzmp4IStWprzmyjg,21918
118
118
  pygpt_net/controller/settings/__init__.py,sha256=hn5n_Hti6byJQdQCs4Ld2EbPoZF7dHVMwqaBPscePQ8,512
@@ -121,7 +121,7 @@ pygpt_net/controller/settings/profile.py,sha256=Zom4qT2j71lZadB2nbJvn5Ewoek8jdf5
121
121
  pygpt_net/controller/settings/settings.py,sha256=cFA4ZKjcsu8uoapWMTllUUB9DvJXVBzbxLT6InRS4zU,7768
122
122
  pygpt_net/controller/settings/workdir.py,sha256=YEMCMR_IFIPKU4SRvMQ6JZCUQfnPGMWzVjNAARHlpCg,20031
123
123
  pygpt_net/controller/theme/__init__.py,sha256=-HMDkTGRa7Q6_AGomkZPVyasIOgNCqeez0Ocw_z9gMc,509
124
- pygpt_net/controller/theme/common.py,sha256=8YUQ3HZBiH33GoBd49vAnHWtpCGFEnU7JDvxkk3edF0,7082
124
+ pygpt_net/controller/theme/common.py,sha256=z5mzpMnfkTeFstKm_uodDboAa3xj5vTpMKGCZzvkX9A,7114
125
125
  pygpt_net/controller/theme/markdown.py,sha256=iH34dsZWyXCtIZuuRBHiAV__W0P4bY-7OuzEwehizr0,6064
126
126
  pygpt_net/controller/theme/menu.py,sha256=3EjDVatt4lYNePHwHaEr0tZGbO2MljqY5uzkYVvtH5E,5962
127
127
  pygpt_net/controller/theme/nodes.py,sha256=cnoZKp8gRczmWgsAC5liLB53YgsArAPvOWRLmyeAn1o,5463
@@ -130,7 +130,7 @@ pygpt_net/controller/tools/__init__.py,sha256=ds63rOuwLEIe-SlY_sQkhWSdXS0lfVwseU
130
130
  pygpt_net/controller/tools/tools.py,sha256=GfDcAVyAiF1CcZ8ATnSJgfCwXYOaGQ1xoxXztVvU3qc,2905
131
131
  pygpt_net/controller/ui/__init__.py,sha256=cxfh2SYeEDATGAZpcYDqCxYfp4KReQ1CYehevSf89EU,507
132
132
  pygpt_net/controller/ui/mode.py,sha256=RX2omKQ65efycMPiH2BwMXIz30Ud5pA8MOe7WrX592s,8119
133
- pygpt_net/controller/ui/tabs.py,sha256=872TS_1t612gipzEdw8DPgC-iI-JrUY14FHsNZixmV4,28582
133
+ pygpt_net/controller/ui/tabs.py,sha256=6i-g9VcigFKIyXK8aYwZvv9PRcl5n5zkz_IYAZ-1BuI,28804
134
134
  pygpt_net/controller/ui/ui.py,sha256=FxRwPIb_PjyqIK14cSC4KpQRjdhK6nI6Zi9v0cCp19U,7254
135
135
  pygpt_net/controller/ui/vision.py,sha256=X4AxUXbPdoWgxNUUbWTeoQuyJa_AJ3sehSSNF0mQRaM,2415
136
136
  pygpt_net/core/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -146,7 +146,7 @@ pygpt_net/core/agents/bridge.py,sha256=KhCbMTZNigNlgOhXEMN1kqWGNUhkEdjFdiHBBVTAr
146
146
  pygpt_net/core/agents/legacy.py,sha256=DdlyIpFjmeAC4XUGtq3F5_1BLGZLPOej0RZ6x9ycFjM,1731
147
147
  pygpt_net/core/agents/memory.py,sha256=9Jz9kT-xT8QPpGeXEpWopJUGBLLHu6Ys_-fRrg6BWDg,5210
148
148
  pygpt_net/core/agents/observer/__init__.py,sha256=qVIBJKpGbc0k7PTESAwAR7SbN-pbkBMJUTzeliCAaJU,651
149
- pygpt_net/core/agents/observer/evaluation.py,sha256=r-zIRXZpOgo8TJ0qbNPL2Qm_9zmPac9AEWwIbnIW4T8,8491
149
+ pygpt_net/core/agents/observer/evaluation.py,sha256=kSs_zMg9Cuwn-e_vDYVq6bzdbAVhqXIG6_zWHcN0ugk,8098
150
150
  pygpt_net/core/agents/provider.py,sha256=rjxnuqzRxv2Z1d9i_wKpREwJBTeTgtyBDYtyHuwcSPA,2440
151
151
  pygpt_net/core/agents/runner.py,sha256=C3BQkpHLrd92EuM55mR4PnCJMVvZ4nV0kDhed4xfl9o,12186
152
152
  pygpt_net/core/agents/runners/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -155,7 +155,7 @@ pygpt_net/core/agents/runners/helpers.py,sha256=0iQQlSg_pJfxY_gQEWImnyAVkTUQYYSW
155
155
  pygpt_net/core/agents/runners/llama_assistant.py,sha256=a_Abkc8u1S8vr6lUIDRrzTM9sQnEvyZA8nZxXaYp05w,2492
156
156
  pygpt_net/core/agents/runners/llama_plan.py,sha256=CC3WPG9KUxd_dRjPZROOrmPQrWQ_u8C0nRx0TCzi9bE,13391
157
157
  pygpt_net/core/agents/runners/llama_steps.py,sha256=1SBLp5t4TUsxpYIUtSSnBy5Sd2AxheDlv2AXimls-Vg,7328
158
- pygpt_net/core/agents/runners/llama_workflow.py,sha256=yDy1YDnG0A2OIs1FnJArXql8-BPnT7qpEywh3HqhR8c,12086
158
+ pygpt_net/core/agents/runners/llama_workflow.py,sha256=BtjKY2dIP6-Z99VZ66uBXeSG2cFD_0jIh4pehboWcHM,12184
159
159
  pygpt_net/core/agents/runners/loop.py,sha256=opcVGx8WFjJesLlmMzoCBgP06Ajh6j_Taat4zCTumHg,6022
160
160
  pygpt_net/core/agents/runners/openai_workflow.py,sha256=J47INptxu8Uc40UfAWNRRiHRYL6ZM6lPojoqeHsC-mc,7989
161
161
  pygpt_net/core/agents/tools.py,sha256=6V2IjSF0m8cNY0HI7vW9bTLjKzR1KtcP0XTcHBvrPjU,21727
@@ -190,7 +190,7 @@ pygpt_net/core/chain/chain.py,sha256=C7Xm88bRblcyM4e0wZMFG-6SQCdw_frXN9kqnWzce60
190
190
  pygpt_net/core/chain/chat.py,sha256=5LxPWHkocjrIAAwrdDH1ss6knAnh4_owfbHPsOQYSws,5238
191
191
  pygpt_net/core/chain/completion.py,sha256=GGRA-q6sQgPnSibiwHBwk7jgT0MgOkka1_jK2-IiBPg,5698
192
192
  pygpt_net/core/command/__init__.py,sha256=3pjRwUt1VGN8P5HE1i2rokNhxtiCL-drc_mmu4tDe-o,512
193
- pygpt_net/core/command/command.py,sha256=1UvkQ_xCGiZFH7BpX8QAwsknRAoEbVUDvXxnT6-cdb8,23149
193
+ pygpt_net/core/command/command.py,sha256=2KiKKH2c4m-2HbczlJvBooZ6L_Sn8zswS81p9OcghAE,23266
194
194
  pygpt_net/core/ctx/__init__.py,sha256=hsqzIDxcwIIjF-7Zr5SkkhQV9LLmIYndQ_dohK20bg0,507
195
195
  pygpt_net/core/ctx/bag.py,sha256=IcUrmS8KafOHwS_7ufhet6GY90fp4xmG7dS6W17gw4o,1340
196
196
  pygpt_net/core/ctx/container.py,sha256=D2GOOThsOb974xd6uJWlWv-nwm1FJ7pGGH_LXNBzgkY,5063
@@ -232,7 +232,7 @@ pygpt_net/core/events/event.py,sha256=uxNdPGaV5KDBaosPM6uxio7dPig091wAoz-OdOPCmx
232
232
  pygpt_net/core/events/kernel.py,sha256=Y5zQ-YCex04OQNMRMC7Q8g55A-imyj9XQ0Jkuyk2eCU,2074
233
233
  pygpt_net/core/events/render.py,sha256=Xfncp6ESvjPyBLtFq6KiNxckAFDN0DsUOJ_mrowjfnM,2525
234
234
  pygpt_net/core/experts/__init__.py,sha256=oscAmAEsCZclyHU7k3z5JzYqilwIO7J90e6oTa29tZ0,511
235
- pygpt_net/core/experts/experts.py,sha256=Bq7-xsXK-UBs7ZbjC6kPDULOIwndDcAJSHlV1vXIMug,30287
235
+ pygpt_net/core/experts/experts.py,sha256=vqD7vnzoW8SQ6Of3rp42VVIbamRkhmOwAWoG4gZcCPU,32127
236
236
  pygpt_net/core/filesystem/__init__.py,sha256=KZLS3s_otd3Md9eDA6FN-b4CtOCWl_fplUlM9V6hTy8,514
237
237
  pygpt_net/core/filesystem/actions.py,sha256=2lRVF_MpIxCwbH8DkugP0K6pY6FymLeH6LKVR2rtQGQ,4152
238
238
  pygpt_net/core/filesystem/editor.py,sha256=or7cT2xhZfDwjX47reyXQCt-_1c4h_xPJDddYi1auNw,4284
@@ -278,7 +278,7 @@ pygpt_net/core/notepad/notepad.py,sha256=zYE7BRERDOxROMMfjTwS6M5Vk08DXxXqHdKi1aX
278
278
  pygpt_net/core/platforms/__init__.py,sha256=NRmTzf4xFxcYseYs1mgCPZA0YUH2v0Aufq4CG1_mKDE,513
279
279
  pygpt_net/core/platforms/platforms.py,sha256=599XwekDL1cNs5p8i89rcUO05Dl4t1XFBPf9jnNRlAM,5094
280
280
  pygpt_net/core/plugins/__init__.py,sha256=NOKL-CNsF4rrKTBpsN-ue92H4pTUGKlgDCwr1iA0geY,511
281
- pygpt_net/core/plugins/plugins.py,sha256=2tARWlrBbjarWINp-woHMqB4jzp2SvzVVZVrLzFhgxg,14832
281
+ pygpt_net/core/plugins/plugins.py,sha256=Qnm6y75i5WFz405zR9quIh7oF-XmfVCZwxUl6CS04cI,15198
282
282
  pygpt_net/core/presets/__init__.py,sha256=NZjBxjGv4fgEX6Hp8FznsWK5QqD1Tl7zyp2Ir3ufXv4,511
283
283
  pygpt_net/core/presets/presets.py,sha256=rdumbBggdXJCZ45o4aFOBswzW4GDGXrWBAAEZneJRig,12961
284
284
  pygpt_net/core/profile/__init__.py,sha256=ovh37AKXCbEz1owutNltCXRkmhZj097wcdZLSzkJUvk,511
@@ -290,24 +290,24 @@ pygpt_net/core/prompt/custom.py,sha256=kexQrazSm_pCmHclTkVT2YId3aNiF53kg6UCSCFZ-
290
290
  pygpt_net/core/prompt/prompt.py,sha256=cEovsa_FUZfiOjC74AWDaXc1RzYdaxXXw3w9xKtVPss,7484
291
291
  pygpt_net/core/prompt/template.py,sha256=Uygs2W-Bw53SX6gZXjYKuHlPtbFGZf41VzR8244dfc0,3329
292
292
  pygpt_net/core/render/__init__.py,sha256=19xPDIYeoDn3Sf1tpcvXtxLaaKkjs0nDQ7-4GqTfeRk,489
293
- pygpt_net/core/render/base.py,sha256=oT0f3rTvvB8SQ1XtcmuDMbX6OWlPfmyfAGSQarl00NA,10061
293
+ pygpt_net/core/render/base.py,sha256=Lkj6_E4hnx7WT8sDOecJQcm41tg1jZ9q3VQSxtWHE5w,10197
294
294
  pygpt_net/core/render/markdown/__init__.py,sha256=19xPDIYeoDn3Sf1tpcvXtxLaaKkjs0nDQ7-4GqTfeRk,489
295
295
  pygpt_net/core/render/markdown/body.py,sha256=OgIshkfCqMnZ-0acCHE6A9ue6irT0cR6laE-v24TS48,7238
296
296
  pygpt_net/core/render/markdown/helpers.py,sha256=qH0roW-XBa7fN6JYOqJrbcyXc_9ztIeQph0siVL0Jpo,2688
297
297
  pygpt_net/core/render/markdown/parser.py,sha256=4lCC_pCWmi-SUli4nnDH-FZEbBi0SnVl0FoL0ZBuNHo,5450
298
298
  pygpt_net/core/render/markdown/pid.py,sha256=bRAOdL8bS-LSfOKReWK3nu-BUZ2qfNchrAsrkxRKlHU,851
299
- pygpt_net/core/render/markdown/renderer.py,sha256=4IqgEfO_4lqy261I3xhqRAs5pVmyH75fNriZZ4GLp1Y,19302
299
+ pygpt_net/core/render/markdown/renderer.py,sha256=PER4BxQUU2zjyMq-flM83_cNcjFyJrRHx2VNa7FN5-I,19488
300
300
  pygpt_net/core/render/plain/__init__.py,sha256=19xPDIYeoDn3Sf1tpcvXtxLaaKkjs0nDQ7-4GqTfeRk,489
301
301
  pygpt_net/core/render/plain/body.py,sha256=i2iQ8VGzh2E3r32XHPTArAQA1Lu-Xlr1tAjJyUwBZd8,4226
302
302
  pygpt_net/core/render/plain/helpers.py,sha256=CMF84kSeuQnkgZVHmN_9YWaL5BC958tDE9ZWfZWhAzg,1630
303
303
  pygpt_net/core/render/plain/pid.py,sha256=Pz3v1tnLj-XI_9vcaVkCf9SZ2EgVs4LYV4qzelBMoOg,1119
304
- pygpt_net/core/render/plain/renderer.py,sha256=Cm-HXHd5Mc6LAiDW5qNXOyZoLKlUo16I_cU-B2cGnYM,15595
304
+ pygpt_net/core/render/plain/renderer.py,sha256=Zzo4O-jo59outV3WuUUd6DNkpq0rkZPbvS-Y3HW7qWo,15781
305
305
  pygpt_net/core/render/web/__init__.py,sha256=istp5dsn6EkLEP7lOBeDb8RjodUcWZqjcEvTroaTT-w,489
306
306
  pygpt_net/core/render/web/body.py,sha256=rybg76GiLWowR-qEvM0Y64woSsO4KSBnww4f8BU7GgI,54872
307
307
  pygpt_net/core/render/web/helpers.py,sha256=ivrXrCqRIUWHDmu3INu-i6XUlB2W9IOO8iYyqpbnSRU,5438
308
308
  pygpt_net/core/render/web/parser.py,sha256=pDFc9Tf8P-jvrDilXyT1fukcQHbixHRJ9Dn9hF10Gko,12892
309
309
  pygpt_net/core/render/web/pid.py,sha256=pXBdPb8hw_aZS2Rtz3pLBpuybpXrzoqwYAFWBal9bLE,3685
310
- pygpt_net/core/render/web/renderer.py,sha256=b7nKnICWSrqZqdd6VBN-JPbm_x5WIkTQ7auhF72Hm-Y,56128
310
+ pygpt_net/core/render/web/renderer.py,sha256=slIQ4J-XcLoeCSd_EYBbXgxhzERHgwnH0U37SKpQZes,56482
311
311
  pygpt_net/core/render/web/syntax_highlight.py,sha256=QSLGF5cJL_Xeqej7_TYwY_5C2w9enXV_cMEuaJ3C43U,2005
312
312
  pygpt_net/core/settings/__init__.py,sha256=GQ6_gJ2jf_Chm7ZuZLvkcvEh_sfMDVMBieeoJi2iPI4,512
313
313
  pygpt_net/core/settings/settings.py,sha256=onqwNiICm2VhHfmXLvp1MiEJ14m2jzeeI2pjUiaUwtY,7787
@@ -343,8 +343,8 @@ pygpt_net/css_rc.py,sha256=i13kX7irhbYCWZ5yJbcMmnkFp_UfS4PYnvRFSPF7XXo,11349
343
343
  pygpt_net/data/audio/click_off.mp3,sha256=aNiRDP1pt-Jy7ija4YKCNFBwvGWbzU460F4pZWZDS90,65201
344
344
  pygpt_net/data/audio/click_on.mp3,sha256=qfdsSnthAEHVXzeyN4LlC0OvXuyW8p7stb7VXtlvZ1k,65201
345
345
  pygpt_net/data/audio/ok.mp3,sha256=LTiV32pEBkpUGBkKkcOdOFB7Eyt_QoP2Nv6c5AaXftk,32256
346
- pygpt_net/data/config/config.json,sha256=pYWdDpJvFUZg2YhkGAe2sfqhzyb8nC5ZmZMMrZN0c8U,24924
347
- pygpt_net/data/config/models.json,sha256=eD8uuC55qsr7lljL0b-JdwL6ieTBjvKGqUnrZ3wN8Uw,109650
346
+ pygpt_net/data/config/config.json,sha256=2DfLNPTfo-v7ul1dIy_q9hMJWIYDliwmUAo5pbdNx-I,24923
347
+ pygpt_net/data/config/models.json,sha256=Lv5nfuyBXzfcjDUPHyZaOp7Dhp0kVTBJg7aeyX309Zg,109650
348
348
  pygpt_net/data/config/modes.json,sha256=M882iiqX_R2sNQl9cqZ3k-uneEvO9wpARtHRMLx_LHw,2265
349
349
  pygpt_net/data/config/presets/agent_code_act.json,sha256=GYHqhxtKFLUCvRI3IJAJ7Qe1k8yD9wGGNwManldWzlI,754
350
350
  pygpt_net/data/config/presets/agent_openai.json,sha256=bpDJgLRey_effQkzFRoOEGd4aHUrmzeODSDdNzrf62I,730
@@ -1603,14 +1603,14 @@ pygpt_net/data/js/katex/fonts/KaTeX_Typewriter-Regular.woff2,sha256=cdUX1ngneHz6
1603
1603
  pygpt_net/data/js/katex/katex.min.css,sha256=lVaKnUaQNG4pI71WHffQZVALLQF4LMZEk4nOia8U9ow,23532
1604
1604
  pygpt_net/data/js/katex/katex.min.js,sha256=KLASOtKS2x8pUxWVzCDmlWJ4jhuLb0vtrgakbD6gDDo,276757
1605
1605
  pygpt_net/data/languages.csv,sha256=fvtER6vnTXFHQslCh-e0xCfZDQ-ijgW4GYpOJG4U7LY,8289
1606
- pygpt_net/data/locale/locale.de.ini,sha256=OAIMkRf3jn3dL0nmgAGy-_x396cEo2Pq1ueA8rHKOBg,100053
1607
- pygpt_net/data/locale/locale.en.ini,sha256=WZbA60fvPYfkFslcUc_MpXxQdgOS76c39nVzQpQpq10,90669
1608
- pygpt_net/data/locale/locale.es.ini,sha256=dxTi0doVys5nc50_hiPM1nq5qT_PEdCQ-I5mz_jzErA,100611
1609
- pygpt_net/data/locale/locale.fr.ini,sha256=9jhKAt89WgH_jabmWe56_22SIprAqtygcJQD1Xn6x14,103350
1610
- pygpt_net/data/locale/locale.it.ini,sha256=GDgWt7Hr66LSeGJOwtXBqEe8RMXQzunN7mrRSw9X3GA,98423
1611
- pygpt_net/data/locale/locale.pl.ini,sha256=L8woS3AAtQY60QK3XTXE0yB0cfPtJHgYLxuhvVd-zm8,98104
1612
- pygpt_net/data/locale/locale.uk.ini,sha256=b2ozaT6zFkt3I-E_bsOXQqzmQ_S-Y7hvquTYi_apIVw,136863
1613
- pygpt_net/data/locale/locale.zh.ini,sha256=_MsyjgcUBrAzxaQbbbuY_lLdDetjFGhnZUrfMSX0zcY,87622
1606
+ pygpt_net/data/locale/locale.de.ini,sha256=ERoIXnA8Atyzm5EOh6By1psT62ZqSYjkjVPHDasRPR8,100092
1607
+ pygpt_net/data/locale/locale.en.ini,sha256=wokB6xmDGRGHUOpYcMSEfPzBwcECKWlKB4SSLB1ZOZ4,90693
1608
+ pygpt_net/data/locale/locale.es.ini,sha256=bImZrxHRY4yTuAlVznzQCn8mK4zB88p0Y0UUNzVOI4Y,100658
1609
+ pygpt_net/data/locale/locale.fr.ini,sha256=Z-1LvfecWp4ZMZf-9HqFddcoBbVxUWMKzSID86wASzk,103400
1610
+ pygpt_net/data/locale/locale.it.ini,sha256=-K3NkIURZ5gK1JPwjk_7GwCCH6TUqI9aUZDKoq8jL1o,98471
1611
+ pygpt_net/data/locale/locale.pl.ini,sha256=ZEoJJZqo0eptaoJI5tDPRq14leoYdO9LdKMDnMSqJ_Y,98152
1612
+ pygpt_net/data/locale/locale.uk.ini,sha256=NqaflpbTBUfOwUUPmI1_TxgTfCh6h9k3UHI4zupMPaI,136948
1613
+ pygpt_net/data/locale/locale.zh.ini,sha256=VuAe2oKEuHYWo0NyO8YCz11OKXunHjVUm6YaVclL3JE,87662
1614
1614
  pygpt_net/data/locale/plugin.agent.de.ini,sha256=BY28KpfFvgfVYJzcw2o5ScWnR4uuErIYGyc3NVHlmTw,1714
1615
1615
  pygpt_net/data/locale/plugin.agent.en.ini,sha256=HwOWCI7e8uzlIgyRWRVyr1x6Xzs8Xjv5pfEc7jfLOo4,1728
1616
1616
  pygpt_net/data/locale/plugin.agent.es.ini,sha256=bqaJQne8HPKFVtZ8Ukzo1TSqVW41yhYbGUqW3j2x1p8,1680
@@ -1740,22 +1740,22 @@ pygpt_net/data/locale/plugin.idx_llama_index.pl.ini,sha256=cV8NY621r-GUdA0wcsp3W
1740
1740
  pygpt_net/data/locale/plugin.idx_llama_index.uk.ini,sha256=P74E9ZnGUMP7QOIj9ZQscVrHtpEqJIjhsEBks6kPBek,3287
1741
1741
  pygpt_net/data/locale/plugin.idx_llama_index.zh.ini,sha256=x0A2Yy6wAbEgJUU8-u9pTUsSzQKzS4aKBVnVA7N9IHc,1830
1742
1742
  pygpt_net/data/locale/plugin.mailer.en.ini,sha256=ZK7LCHAiQGw38PzZy_LyES9b7vQ47QA6XjSiq2NlsSs,962
1743
- pygpt_net/data/locale/plugin.openai_dalle.de.ini,sha256=ooTDwaBiadq4-simQJND-B_AuB7xna-tzGUIMaOWGB8,452
1744
- pygpt_net/data/locale/plugin.openai_dalle.en.ini,sha256=WsMjjpTr4xWIzPvwZ--QmQYUovFt0Yv8TGJV7z9S05E,498
1745
- pygpt_net/data/locale/plugin.openai_dalle.es.ini,sha256=U_pd3VK_-7VjNYwcdzHpY8I_ycOxoeOx5HHgabypOk0,459
1746
- pygpt_net/data/locale/plugin.openai_dalle.fr.ini,sha256=YU-vBckxjbH-xosa5HFmviIWsGM8ZLpCJposJXIInzw,481
1747
- pygpt_net/data/locale/plugin.openai_dalle.it.ini,sha256=Cjq8NDqONIMKe8f7nPJ1egefdMQsna_MrcDYmwDP7FY,438
1748
- pygpt_net/data/locale/plugin.openai_dalle.pl.ini,sha256=AoSo_qz7-88rOr9DYKF4sfo03uoekZN2ZOx4CE8xrAA,415
1749
- pygpt_net/data/locale/plugin.openai_dalle.uk.ini,sha256=LqqeBKtq6otr5Ba_T2PNVGesBUq3QAWUN_imKHLXfdw,679
1750
- pygpt_net/data/locale/plugin.openai_dalle.zh.ini,sha256=834zGVQKcf5jZ65xLX4ARYGasxPeTVLYLe91QB8Ej-g,357
1751
- pygpt_net/data/locale/plugin.openai_vision.de.ini,sha256=wkBq24heliusWxp8X0wan8UHS5npp4lZNS10ApZLb5s,1527
1752
- pygpt_net/data/locale/plugin.openai_vision.en.ini,sha256=k523r3rtr5M6iaBeG34d9d0NSkOLQFP36NhBaDGQ3q4,1391
1753
- pygpt_net/data/locale/plugin.openai_vision.es.ini,sha256=gNx6XmJYJazuN5Y6R3s531xtS8u5m-CNS3zGBDsedmI,1553
1754
- pygpt_net/data/locale/plugin.openai_vision.fr.ini,sha256=0rtlvjMVP2UOvEMF8SckFSaIA2gSU9gP5jXbLVXIIEU,1563
1755
- pygpt_net/data/locale/plugin.openai_vision.it.ini,sha256=Sf-N_MMWBSw37BxukHAcridCKYGaq7D09YrmjGpgfrM,1554
1756
- pygpt_net/data/locale/plugin.openai_vision.pl.ini,sha256=4bIiC24nljjf3L-8kWPhXTGSKBFVkaGaYiJVtp93JzM,1490
1757
- pygpt_net/data/locale/plugin.openai_vision.uk.ini,sha256=KnwiyT20lkOJNEj_zrp8CJiylhOI4sBsvOi30_0bz04,2281
1758
- pygpt_net/data/locale/plugin.openai_vision.zh.ini,sha256=JDAf53b8FtUzsLgT4ycKGt67s7QGEEd65OGSa6PmQWY,1294
1743
+ pygpt_net/data/locale/plugin.openai_dalle.de.ini,sha256=XKQ6q2DbS5PrIXzB3mrHmQJmZKbq3YtSY4eglT1V-Ls,442
1744
+ pygpt_net/data/locale/plugin.openai_dalle.en.ini,sha256=yJ9Ie9waoM10yrsNpduCY3Rq1NqKK8NF9ygbTBFpOyI,488
1745
+ pygpt_net/data/locale/plugin.openai_dalle.es.ini,sha256=YUGL_CIzjRCEeXEYHCUYepOlEHSGFU0E1MpPcwZYH2k,449
1746
+ pygpt_net/data/locale/plugin.openai_dalle.fr.ini,sha256=ASYN8zGPmLFKxJZc9mUu1wqN7mRP6--zQJF9ioFn1Tk,470
1747
+ pygpt_net/data/locale/plugin.openai_dalle.it.ini,sha256=z3yFLuwS5HfXP7cKi4dkgezJpnI6WrSq2m-sDW4m7As,428
1748
+ pygpt_net/data/locale/plugin.openai_dalle.pl.ini,sha256=2TOnD6zgs-qyF9CQGOuOak8Q4BZWpX33wHJUi3VNb1U,405
1749
+ pygpt_net/data/locale/plugin.openai_dalle.uk.ini,sha256=bdq0tBv55a9cxsoqKsPVGAhsmC0oB0pA3xplUCviR-Y,669
1750
+ pygpt_net/data/locale/plugin.openai_dalle.zh.ini,sha256=gOxpWDCXDL3CGHvaEEHBZZ6x5Kd-eF8Zu755yfiZhoY,346
1751
+ pygpt_net/data/locale/plugin.openai_vision.de.ini,sha256=d0fkTnestehlmmkJmYA0jKM-Iuc184CNn3mQq8u3Tac,1521
1752
+ pygpt_net/data/locale/plugin.openai_vision.en.ini,sha256=lYUCYvK-smfGLcjTeIZ39f8MPOucjRaturktQ1k4bgU,1385
1753
+ pygpt_net/data/locale/plugin.openai_vision.es.ini,sha256=0rMReaWyErBL2Xke0uaZXYBV2-XoxHU9Mlk6qPqU05Q,1547
1754
+ pygpt_net/data/locale/plugin.openai_vision.fr.ini,sha256=WvfcDaSR6w_J4C6pbofak2_tuIaMD9y26h9KMZE_de8,1557
1755
+ pygpt_net/data/locale/plugin.openai_vision.it.ini,sha256=jPnYzeVa6ulF7P5c4mr7REr6EjA78NDFt6e7otInx64,1548
1756
+ pygpt_net/data/locale/plugin.openai_vision.pl.ini,sha256=JOywxX2jmf1kT097u9X85JJpdsvoRO1-Hx55YQHMErs,1484
1757
+ pygpt_net/data/locale/plugin.openai_vision.uk.ini,sha256=sUopD45q1mOKwTUIOnBP4vheUtrBcp21x1h4uoKthSM,2275
1758
+ pygpt_net/data/locale/plugin.openai_vision.zh.ini,sha256=_kyoxidMj1le4Omz1oAMegFnniAKPihSC3Y4bznMccI,1288
1759
1759
  pygpt_net/data/locale/plugin.real_time.de.ini,sha256=GPz0E6qcyzftdE61lKqkK-wUvnsgrcxwOeg19-JhdCY,712
1760
1760
  pygpt_net/data/locale/plugin.real_time.en.ini,sha256=_CBscABhj1feneX4ohr-jtt9meGO8fcMDGDzdBl4jyw,675
1761
1761
  pygpt_net/data/locale/plugin.real_time.es.ini,sha256=CN-d7cs7ymsSbavjzSgvL20sQ0D2akbULvphGIR1pnI,713
@@ -1798,7 +1798,7 @@ pygpt_net/item/__init__.py,sha256=jQQgG9u_ZLsZWXustoc1uvC-abUvj4RBKPAM30-f2Kc,48
1798
1798
  pygpt_net/item/assistant.py,sha256=65NZlvvR2VHWi6ZbPGi46qX0n0iJpbGHF2AxWXAIQlU,9588
1799
1799
  pygpt_net/item/attachment.py,sha256=Wo-36L_R-P--JjDEpnpbaYo3vuIqr1s82m5rman9h28,2818
1800
1800
  pygpt_net/item/calendar_note.py,sha256=EBhAAS09E5tIO3XhW_iA_wofSUywLWlYtiiMJJzVc3g,2114
1801
- pygpt_net/item/ctx.py,sha256=EboFJD0eVQZ5jMqOG94O4SvzF6J2C7EPvR-oSHYqMqg,20770
1801
+ pygpt_net/item/ctx.py,sha256=jUfdobUN02WxPH46nj-kxupOf2SVL4G6DlWRC7Vs4uQ,20822
1802
1802
  pygpt_net/item/index.py,sha256=2feQPpOzrNkAGF4f8nKMAQzxDBAMpt6DKzCcYpCBE1E,1682
1803
1803
  pygpt_net/item/mode.py,sha256=zMgJUA8943vg_WfF7Qwa63BdR3lMn7H8ItMpAj8z2Z0,601
1804
1804
  pygpt_net/item/model.py,sha256=H_q20RZEebN5MJnswnf291LQUNJAaFuSHagq9xE4NCE,11104
@@ -1917,8 +1917,8 @@ pygpt_net/plugin/google/plugin.py,sha256=HcsBWXIdLdBbYr165x_GTaOD-BwI3jHTf7YryV9
1917
1917
  pygpt_net/plugin/google/worker.py,sha256=woxatLXJMuB--I_Gz_uZml2BQ8TTcvMLqx-Lq4hPxVc,62684
1918
1918
  pygpt_net/plugin/idx_llama_index/__init__.py,sha256=tvF6upS93L61NRbkQmscSJXM7ZzPlmVj16mVHUM-NHU,510
1919
1919
  pygpt_net/plugin/idx_llama_index/config.py,sha256=znp2ZADvwCUcwvLM_Szi8nxEDvl-Sg4M6Y_tXih8HdM,5794
1920
- pygpt_net/plugin/idx_llama_index/plugin.py,sha256=hNCb9t3-9B6M2noJR1zXJR_e5SnVcqsda38fD7BTq7s,10997
1921
- pygpt_net/plugin/idx_llama_index/worker.py,sha256=NNSXyZDRO1fVmW4iNhidP48vh4ZsDDq-DbgGTVR62jA,3208
1920
+ pygpt_net/plugin/idx_llama_index/plugin.py,sha256=MiJUbfgT_8_a0CgkrXhRfoRr9gxtZMaoGCCbDxlZLVM,11221
1921
+ pygpt_net/plugin/idx_llama_index/worker.py,sha256=bv-ED7PAwWv5YwPtycNh2GxVJPq9_89zKgLnjMjkNL4,3362
1922
1922
  pygpt_net/plugin/mailer/__init__.py,sha256=3CFRbMfxCodtGwsWTmOtY2KZdTFofe4moGaP8jgjP88,510
1923
1923
  pygpt_net/plugin/mailer/config.py,sha256=Sc5ezdsOevx50v3XHRZdf_dgw1x4wUhRY0z2vcfg7Dc,4828
1924
1924
  pygpt_net/plugin/mailer/plugin.py,sha256=JiOnJnt-IYvP7CNAkb0u-c48EAYrUeEPOgOSnqrD-_s,3387
@@ -1926,7 +1926,7 @@ pygpt_net/plugin/mailer/runner.py,sha256=xM-a6XWvJ8JwOzS2JRugBfxPj0CHVL7A8ZAmzC-
1926
1926
  pygpt_net/plugin/mailer/worker.py,sha256=dl9_3i8comtHWr1zYukaXoIPVl3kJEvaCrdWR5TAu2g,3900
1927
1927
  pygpt_net/plugin/openai_dalle/__init__.py,sha256=tvF6upS93L61NRbkQmscSJXM7ZzPlmVj16mVHUM-NHU,510
1928
1928
  pygpt_net/plugin/openai_dalle/config.py,sha256=XUYCRaT77BDlg2GnauyRwzbxZZWpTgfs6W_oMSKNWUw,4965
1929
- pygpt_net/plugin/openai_dalle/plugin.py,sha256=wtS04CizNPx3hZw5tkfjGVqTTxAQNkPu0tAcHWus9Fs,5390
1929
+ pygpt_net/plugin/openai_dalle/plugin.py,sha256=dzBHfoRM-SXJW09cQzJtA0hdshrSlBSg46RCqonCtSc,5380
1930
1930
  pygpt_net/plugin/openai_vision/__init__.py,sha256=tvF6upS93L61NRbkQmscSJXM7ZzPlmVj16mVHUM-NHU,510
1931
1931
  pygpt_net/plugin/openai_vision/config.py,sha256=V323eAXXKY01e8XJDTg6auavNzx7YMRIINgPiXGh_gk,4703
1932
1932
  pygpt_net/plugin/openai_vision/plugin.py,sha256=nbzVAZK_4L3vnkOeIFGJlqGds37UaBZYKRvJU0kzuXo,11369
@@ -2244,8 +2244,8 @@ pygpt_net/tools/text_editor/ui/widgets.py,sha256=K_yxkyMyLfBfXXZ8iOczci10tPlsBJ5
2244
2244
  pygpt_net/tools/translator/__init__.py,sha256=R4-y_danRZamZRwXctX1b0tI9oz4qM_xcVthXNyYjcU,508
2245
2245
  pygpt_net/tools/translator/tool.py,sha256=3QIv50Bc7TgrkVQ-7qcuxIERAJz5e4Vy22Uj8K79_a0,14527
2246
2246
  pygpt_net/tools/translator/ui/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
2247
- pygpt_net/tools/translator/ui/dialogs.py,sha256=COkslLD9cSBl8QXMUXjfpjAxRm9DD7UbrIjjhZnGb5w,4102
2248
- pygpt_net/tools/translator/ui/widgets.py,sha256=trDSWEMBYO6Hk9-W1P19D0XBWONI4PHM-Tio7Bwr2Fo,17561
2247
+ pygpt_net/tools/translator/ui/dialogs.py,sha256=qC-dCNtOLbOe-h586iBmsBTlv4KlUoxCkPqYOq8336k,4137
2248
+ pygpt_net/tools/translator/ui/widgets.py,sha256=2wQa1T0oWAkoQGTDntzFUE6r1slW-an5uretGxMAJeo,17540
2249
2249
  pygpt_net/ui/__init__.py,sha256=jNQKiNb5lXFVFoHe6SGqS-1LvCg9LOkmKnoyyPnctOE,9225
2250
2250
  pygpt_net/ui/base/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
2251
2251
  pygpt_net/ui/base/config_dialog.py,sha256=DHRN6NyvvMxPIiyTzTFgZailBgFW21hgeLLPcQ5x1FE,8322
@@ -2268,7 +2268,7 @@ pygpt_net/ui/dialog/license.py,sha256=15Qrk_vnybnI3CAtvOHYJy8cSAkIG7fPG-HYqmSdct
2268
2268
  pygpt_net/ui/dialog/logger.py,sha256=AGszZzKFL8gHtoVl96nxeRapebubEQrzB1fpG6QJRcc,2287
2269
2269
  pygpt_net/ui/dialog/models.py,sha256=rURV8zf0rXXejdA4pahvwY3fjNY9AhCoFXq_OVW10Yk,13791
2270
2270
  pygpt_net/ui/dialog/models_importer.py,sha256=RBAVr5lJgTEOq42V3MjagPBHsecLEJ2m0OadCOEAyAs,4547
2271
- pygpt_net/ui/dialog/plugins.py,sha256=iCwUhcGcKL6SwjtJKznhoZeZ8bsMrbsE9N9EUz3ytC0,21177
2271
+ pygpt_net/ui/dialog/plugins.py,sha256=--I4Jszj1fygXHHPgHqQuJdHEURFJwfz6De8YAICi-E,21191
2272
2272
  pygpt_net/ui/dialog/preset.py,sha256=qSckSNtx57Ij4im1sj1XnAy7QhmmHSOQ1qtyLnfChjk,17864
2273
2273
  pygpt_net/ui/dialog/preset_plugins.py,sha256=ynqc0aWjU7MTL4jxcVKaRH_tC9uzeWJCUzUjI74ADb0,3796
2274
2274
  pygpt_net/ui/dialog/profile.py,sha256=Xk9NNQmr1A5pRUxdedu7ePEBq5OYhLT8UInuRWYBktU,4105
@@ -2423,7 +2423,7 @@ pygpt_net/ui/widget/textarea/__init__.py,sha256=8HT4tQFqQogEEpGYTv2RplKBthlsFKcl
2423
2423
  pygpt_net/ui/widget/textarea/calendar_note.py,sha256=qjs2uqX6OWQP11pr9y78V-nNL71qPEsXjOI2Mo_ezXw,5922
2424
2424
  pygpt_net/ui/widget/textarea/console.py,sha256=nCV92S5JR4DiRWH6akWhygxg9kaLLxnCPoqXV0ZRK74,1333
2425
2425
  pygpt_net/ui/widget/textarea/create.py,sha256=f4SrAW-2hjkKYIPrwVliSYH-LkgsQP8G13Jkq8EKhuI,1358
2426
- pygpt_net/ui/widget/textarea/editor.py,sha256=dX1PQnMxKF7WsMgOEGDyc9XVJM440PueHVflJH1h258,6024
2426
+ pygpt_net/ui/widget/textarea/editor.py,sha256=MMFZ4Fee0YGzHer5ctgbcGHBtsg5qNzwG8AMRMhFlVM,6003
2427
2427
  pygpt_net/ui/widget/textarea/find.py,sha256=29-5i6VByMI45M_yz_84bXpwN-Z0alUHg7sVOXZD6So,1543
2428
2428
  pygpt_net/ui/widget/textarea/html.py,sha256=QnrCTYc5daqqm5pWhRAQETv0Mkpa-XlSAaBW_36oI8Q,12431
2429
2429
  pygpt_net/ui/widget/textarea/input.py,sha256=SYrkkO7lomp2fT1GzzsqR-J2_UuHcZcghgJ9kT8K1h8,6664
@@ -2437,8 +2437,8 @@ pygpt_net/ui/widget/textarea/web.py,sha256=3XA7Ue8PtxYkVbZRaOPIGjpC5Iko37RlxfO35
2437
2437
  pygpt_net/ui/widget/vision/__init__.py,sha256=8HT4tQFqQogEEpGYTv2RplKBthlsFKcl5egnv4lzzEw,488
2438
2438
  pygpt_net/ui/widget/vision/camera.py,sha256=T8b5cmK6uhf_WSSxzPt_Qod8JgMnst6q8sQqRvgQiSA,2584
2439
2439
  pygpt_net/utils.py,sha256=gGbw-lBTodGg_uBx6zKEwa58GaVNZN1I9zY_ZDyJ9xg,8872
2440
- pygpt_net-2.6.14.dist-info/LICENSE,sha256=rbPqNB_xxANH8hKayJyIcTwD4bj4Y2G-Mcm85r1OImM,1126
2441
- pygpt_net-2.6.14.dist-info/METADATA,sha256=unXw9fPsGAEbt_rxZ0LGD0J5d4z9T1y-9SxBWKSBjs0,189682
2442
- pygpt_net-2.6.14.dist-info/WHEEL,sha256=b4K_helf-jlQoXBBETfwnf4B04YC67LOev0jo4fX5m8,88
2443
- pygpt_net-2.6.14.dist-info/entry_points.txt,sha256=qvpII6UHIt8XfokmQWnCYQrTgty8FeJ9hJvOuUFCN-8,43
2444
- pygpt_net-2.6.14.dist-info/RECORD,,
2440
+ pygpt_net-2.6.16.dist-info/LICENSE,sha256=rbPqNB_xxANH8hKayJyIcTwD4bj4Y2G-Mcm85r1OImM,1126
2441
+ pygpt_net-2.6.16.dist-info/METADATA,sha256=KdVcE2-cd3IEx2wKM3gwciqjrbIbkl2vyLRNNpa5-I8,189995
2442
+ pygpt_net-2.6.16.dist-info/WHEEL,sha256=b4K_helf-jlQoXBBETfwnf4B04YC67LOev0jo4fX5m8,88
2443
+ pygpt_net-2.6.16.dist-info/entry_points.txt,sha256=qvpII6UHIt8XfokmQWnCYQrTgty8FeJ9hJvOuUFCN-8,43
2444
+ pygpt_net-2.6.16.dist-info/RECORD,,