pygpt-net 2.4.34__py3-none-any.whl → 2.4.36__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 (37) hide show
  1. CHANGELOG.md +13 -0
  2. README.md +2097 -1892
  3. pygpt_net/CHANGELOG.txt +13 -0
  4. pygpt_net/__init__.py +3 -3
  5. pygpt_net/config.py +13 -1
  6. pygpt_net/controller/attachment.py +1 -0
  7. pygpt_net/controller/chat/attachment.py +24 -1
  8. pygpt_net/controller/chat/image.py +2 -1
  9. pygpt_net/controller/presets/editor.py +4 -0
  10. pygpt_net/controller/ui/__init__.py +4 -1
  11. pygpt_net/core/attachments/__init__.py +3 -2
  12. pygpt_net/data/config/config.json +5 -5
  13. pygpt_net/data/config/models.json +3 -3
  14. pygpt_net/data/config/modes.json +3 -3
  15. pygpt_net/data/locale/locale.de.ini +1 -1
  16. pygpt_net/data/locale/locale.en.ini +2 -1
  17. pygpt_net/data/locale/locale.es.ini +1 -1
  18. pygpt_net/data/locale/locale.fr.ini +1 -1
  19. pygpt_net/data/locale/locale.it.ini +1 -1
  20. pygpt_net/data/locale/locale.pl.ini +1 -1
  21. pygpt_net/data/locale/locale.uk.ini +1 -1
  22. pygpt_net/data/locale/locale.zh.ini +1 -1
  23. pygpt_net/data/win32/USER-LICENSE.rtf +0 -0
  24. pygpt_net/data/win32/banner.bmp +0 -0
  25. pygpt_net/data/win32/banner_welcome.bmp +0 -0
  26. pygpt_net/launcher.py +13 -1
  27. pygpt_net/provider/core/config/patch.py +6 -0
  28. pygpt_net/ui/dialog/about.py +1 -1
  29. pygpt_net/ui/dialog/preset.py +1 -1
  30. pygpt_net/ui/widget/anims/toggles.py +2 -2
  31. pygpt_net/ui/widget/option/checkbox.py +1 -3
  32. pygpt_net/ui/widget/option/toggle.py +1 -0
  33. {pygpt_net-2.4.34.dist-info → pygpt_net-2.4.36.dist-info}/METADATA +2098 -1893
  34. {pygpt_net-2.4.34.dist-info → pygpt_net-2.4.36.dist-info}/RECORD +37 -35
  35. {pygpt_net-2.4.34.dist-info → pygpt_net-2.4.36.dist-info}/LICENSE +0 -0
  36. {pygpt_net-2.4.34.dist-info → pygpt_net-2.4.36.dist-info}/WHEEL +0 -0
  37. {pygpt_net-2.4.34.dist-info → pygpt_net-2.4.36.dist-info}/entry_points.txt +0 -0
CHANGELOG.md CHANGED
@@ -1,5 +1,18 @@
1
1
  # CHANGELOG
2
2
 
3
+ ## 2.4.36 (2024-11-28)
4
+
5
+ - Added a new command-line argument: --workdir="/path/to/workdir" to explicitly set the current working directory.
6
+ - Fix: start image generation in Image mode.
7
+
8
+ ## 2.4.35 (2024-11-28)
9
+
10
+ - Docker removed from dependencies in Snap version #82
11
+ - Refactored documentation.
12
+ - Fix: toggles real-time update hook.
13
+ - Fix: missing edit icons.
14
+ - Added tokens from attachments to counters if mode == Full context.
15
+
3
16
  ## 2.4.34 (2024-11-26)
4
17
 
5
18
  - Added a new mode: `Chat with Audio`, with built-in multimodal support for audio input/output. Currently in beta, the execution of commands and tools in this mode is temporarily unavailable.