pygpt-net 2.6.42__py3-none-any.whl → 2.6.44__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 (43) hide show
  1. pygpt_net/CHANGELOG.txt +13 -0
  2. pygpt_net/__init__.py +3 -3
  3. pygpt_net/controller/__init__.py +2 -0
  4. pygpt_net/controller/debug/debug.py +7 -19
  5. pygpt_net/controller/debug/fixtures.py +103 -0
  6. pygpt_net/controller/launcher/launcher.py +2 -2
  7. pygpt_net/controller/presets/presets.py +10 -0
  8. pygpt_net/core/debug/debug.py +2 -2
  9. pygpt_net/core/fixtures/stream/__init__.py +0 -0
  10. pygpt_net/{provider/api/fake → core/fixtures/stream}/generator.py +1 -1
  11. pygpt_net/core/models/models.py +11 -1
  12. pygpt_net/core/render/web/body.py +5 -1
  13. pygpt_net/core/updater/updater.py +18 -7
  14. pygpt_net/data/config/config.json +10 -6
  15. pygpt_net/data/config/models.json +4 -10
  16. pygpt_net/data/config/settings.json +59 -19
  17. pygpt_net/data/css/web-blocks.css +4 -0
  18. pygpt_net/data/css/web-chatgpt.css +4 -0
  19. pygpt_net/data/css/web-chatgpt_wide.css +4 -0
  20. pygpt_net/data/js/app.js +727 -361
  21. pygpt_net/data/locale/locale.en.ini +8 -1
  22. pygpt_net/js_rc.py +11506 -10502
  23. pygpt_net/provider/api/openai/__init__.py +4 -12
  24. pygpt_net/provider/core/config/patch.py +26 -2457
  25. pygpt_net/provider/core/config/patches/__init__.py +0 -0
  26. pygpt_net/provider/core/config/patches/patch_before_2_6_42.py +2510 -0
  27. pygpt_net/provider/core/model/patch.py +12 -764
  28. pygpt_net/provider/core/model/patches/__init__.py +0 -0
  29. pygpt_net/provider/core/model/patches/patch_before_2_6_42.py +813 -0
  30. pygpt_net/provider/core/preset/patch.py +12 -221
  31. pygpt_net/provider/core/preset/patches/__init__.py +0 -0
  32. pygpt_net/provider/core/preset/patches/patch_before_2_6_42.py +272 -0
  33. pygpt_net/ui/base/context_menu.py +3 -2
  34. pygpt_net/ui/dialog/settings.py +5 -4
  35. pygpt_net/ui/layout/ctx/ctx_list.py +3 -3
  36. pygpt_net/ui/menu/debug.py +36 -23
  37. pygpt_net/ui/widget/lists/context.py +233 -51
  38. {pygpt_net-2.6.42.dist-info → pygpt_net-2.6.44.dist-info}/METADATA +18 -129
  39. {pygpt_net-2.6.42.dist-info → pygpt_net-2.6.44.dist-info}/RECORD +43 -35
  40. /pygpt_net/{provider/api/fake/__init__.py → core/fixtures/__init__} +0 -0
  41. {pygpt_net-2.6.42.dist-info → pygpt_net-2.6.44.dist-info}/LICENSE +0 -0
  42. {pygpt_net-2.6.42.dist-info → pygpt_net-2.6.44.dist-info}/WHEEL +0 -0
  43. {pygpt_net-2.6.42.dist-info → pygpt_net-2.6.44.dist-info}/entry_points.txt +0 -0
File without changes