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.
- pygpt_net/CHANGELOG.txt +13 -0
- pygpt_net/__init__.py +3 -3
- pygpt_net/controller/__init__.py +2 -0
- pygpt_net/controller/debug/debug.py +7 -19
- pygpt_net/controller/debug/fixtures.py +103 -0
- pygpt_net/controller/launcher/launcher.py +2 -2
- pygpt_net/controller/presets/presets.py +10 -0
- pygpt_net/core/debug/debug.py +2 -2
- pygpt_net/core/fixtures/stream/__init__.py +0 -0
- pygpt_net/{provider/api/fake → core/fixtures/stream}/generator.py +1 -1
- pygpt_net/core/models/models.py +11 -1
- pygpt_net/core/render/web/body.py +5 -1
- pygpt_net/core/updater/updater.py +18 -7
- pygpt_net/data/config/config.json +10 -6
- pygpt_net/data/config/models.json +4 -10
- pygpt_net/data/config/settings.json +59 -19
- pygpt_net/data/css/web-blocks.css +4 -0
- pygpt_net/data/css/web-chatgpt.css +4 -0
- pygpt_net/data/css/web-chatgpt_wide.css +4 -0
- pygpt_net/data/js/app.js +727 -361
- pygpt_net/data/locale/locale.en.ini +8 -1
- pygpt_net/js_rc.py +11506 -10502
- pygpt_net/provider/api/openai/__init__.py +4 -12
- pygpt_net/provider/core/config/patch.py +26 -2457
- pygpt_net/provider/core/config/patches/__init__.py +0 -0
- pygpt_net/provider/core/config/patches/patch_before_2_6_42.py +2510 -0
- pygpt_net/provider/core/model/patch.py +12 -764
- pygpt_net/provider/core/model/patches/__init__.py +0 -0
- pygpt_net/provider/core/model/patches/patch_before_2_6_42.py +813 -0
- pygpt_net/provider/core/preset/patch.py +12 -221
- pygpt_net/provider/core/preset/patches/__init__.py +0 -0
- pygpt_net/provider/core/preset/patches/patch_before_2_6_42.py +272 -0
- pygpt_net/ui/base/context_menu.py +3 -2
- pygpt_net/ui/dialog/settings.py +5 -4
- pygpt_net/ui/layout/ctx/ctx_list.py +3 -3
- pygpt_net/ui/menu/debug.py +36 -23
- pygpt_net/ui/widget/lists/context.py +233 -51
- {pygpt_net-2.6.42.dist-info → pygpt_net-2.6.44.dist-info}/METADATA +18 -129
- {pygpt_net-2.6.42.dist-info → pygpt_net-2.6.44.dist-info}/RECORD +43 -35
- /pygpt_net/{provider/api/fake/__init__.py → core/fixtures/__init__} +0 -0
- {pygpt_net-2.6.42.dist-info → pygpt_net-2.6.44.dist-info}/LICENSE +0 -0
- {pygpt_net-2.6.42.dist-info → pygpt_net-2.6.44.dist-info}/WHEEL +0 -0
- {pygpt_net-2.6.42.dist-info → pygpt_net-2.6.44.dist-info}/entry_points.txt +0 -0
|
@@ -782,7 +782,7 @@ menu.debug.config = Config...
|
|
|
782
782
|
menu.debug.context = Context...
|
|
783
783
|
menu.debug.db = DB Viewer
|
|
784
784
|
menu.debug.events = Events...
|
|
785
|
-
menu.debug.
|
|
785
|
+
menu.debug.fixtures.stream = Fixture: stream
|
|
786
786
|
menu.debug.indexes = Indexes...
|
|
787
787
|
menu.debug.kernel = Kernel...
|
|
788
788
|
menu.debug.logger = Open Logger
|
|
@@ -1377,12 +1377,17 @@ settings.remote_tools.xai.sources.web.desc = Enable Web in Live Search
|
|
|
1377
1377
|
settings.remote_tools.xai.sources.x = Source: X / Twitter
|
|
1378
1378
|
settings.remote_tools.xai.sources.x.desc = Enable X / Twitter in Live Search
|
|
1379
1379
|
settings.render.code_syntax = Code syntax highlight
|
|
1380
|
+
settings.render.code_syntax.disabled = Disable syntax highlight
|
|
1380
1381
|
settings.render.code_syntax.final_max_chars = Max chars to highlight (static)
|
|
1381
1382
|
settings.render.code_syntax.final_max_chars.desc = Syntax highlight: max chars to highlight in static content, 0 to disable
|
|
1382
1383
|
settings.render.code_syntax.final_max_lines = Max lines to highlight (static)
|
|
1383
1384
|
settings.render.code_syntax.final_max_lines.desc = Syntax highlight: max lines to highlight in static content, 0 to disable
|
|
1384
1385
|
settings.render.code_syntax.stream_max_lines = Max lines to highlight (real-time)
|
|
1385
1386
|
settings.render.code_syntax.stream_max_lines.desc = Syntax highlight: max lines to highlight in stream, 0 to disable
|
|
1387
|
+
settings.render.code_syntax.stream_n_chars = Highlight every N chars (real-time)
|
|
1388
|
+
settings.render.code_syntax.stream_n_chars.desc = Syntax highlight: highlight every N chars in stream
|
|
1389
|
+
settings.render.code_syntax.stream_n_line = Highlight every N line (real-time)
|
|
1390
|
+
settings.render.code_syntax.stream_n_line.desc = Syntax highlight: highlight every N line in stream
|
|
1386
1391
|
settings.render.engine = Rendering engine
|
|
1387
1392
|
settings.render.memory.limit = Memory Limit
|
|
1388
1393
|
settings.render.memory.limit.desc = Renderer memory limit; set to 0 to disable. If > 0, the app will try to free memory after the limit is reached. Accepted formats: 3.5GB, 2GB, 2048MB, 1_000_000. Minimum: 2GB.
|
|
@@ -1644,3 +1649,5 @@ vision.capture.manual.captured.success = Image captured from the camera:
|
|
|
1644
1649
|
vision.capture.name.prefix = Camera capture:
|
|
1645
1650
|
vision.capture.options.title = Video capture
|
|
1646
1651
|
vision.checkbox.tooltip = If checked, the vision model is active. It will be automatically activated upon image upload. You can deactivate it in real-time.
|
|
1652
|
+
settings.render.msg.user.collapse.px = Auto-collapse user message (px)
|
|
1653
|
+
settings.render.msg.user.collapse.px.desc = Auto-collapse user message after N pixels of height, set to 0 to disable auto-collapse
|