pygpt-net 2.5.95__py3-none-any.whl → 2.5.96__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 +4 -0
- pygpt_net/__init__.py +3 -3
- pygpt_net/controller/chat/output.py +5 -3
- pygpt_net/controller/chat/response.py +1 -1
- pygpt_net/controller/chat/stream.py +171 -207
- pygpt_net/controller/ctx/ctx.py +5 -5
- pygpt_net/controller/kernel/kernel.py +200 -223
- pygpt_net/core/bridge/worker.py +7 -11
- pygpt_net/core/ctx/bag.py +2 -4
- pygpt_net/core/ctx/container.py +3 -4
- pygpt_net/core/ctx/ctx.py +1 -0
- pygpt_net/core/ctx/output.py +137 -93
- pygpt_net/core/dispatcher/dispatcher.py +60 -80
- pygpt_net/core/idx/chat.py +0 -21
- pygpt_net/core/render/web/body.py +873 -853
- pygpt_net/core/render/web/helpers.py +99 -59
- pygpt_net/core/render/web/parser.py +144 -126
- pygpt_net/core/render/web/renderer.py +354 -296
- pygpt_net/data/config/config.json +4 -4
- pygpt_net/data/config/models.json +3 -3
- pygpt_net/item/ctx.py +11 -1
- pygpt_net/launcher.py +4 -1
- pygpt_net/ui/layout/chat/input.py +4 -2
- pygpt_net/ui/layout/ctx/ctx_list.py +106 -104
- pygpt_net/ui/layout/toolbox/presets.py +4 -0
- pygpt_net/ui/main.py +6 -1
- pygpt_net/ui/widget/textarea/web.py +162 -164
- pygpt_net/utils.py +48 -2
- {pygpt_net-2.5.95.dist-info → pygpt_net-2.5.96.dist-info}/METADATA +6 -2
- {pygpt_net-2.5.95.dist-info → pygpt_net-2.5.96.dist-info}/RECORD +33 -33
- {pygpt_net-2.5.95.dist-info → pygpt_net-2.5.96.dist-info}/LICENSE +0 -0
- {pygpt_net-2.5.95.dist-info → pygpt_net-2.5.96.dist-info}/WHEEL +0 -0
- {pygpt_net-2.5.95.dist-info → pygpt_net-2.5.96.dist-info}/entry_points.txt +0 -0
pygpt_net/CHANGELOG.txt
CHANGED
pygpt_net/__init__.py
CHANGED
|
@@ -6,15 +6,15 @@
|
|
|
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.08.
|
|
9
|
+
# Updated Date: 2025.08.10 00: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.5.
|
|
17
|
-
__build__ = "2025-08-
|
|
16
|
+
__version__ = "2.5.96"
|
|
17
|
+
__build__ = "2025-08-10"
|
|
18
18
|
__maintainer__ = "Marcin Szczygliński"
|
|
19
19
|
__github__ = "https://github.com/szczyglis-dev/py-gpt"
|
|
20
20
|
__report__ = "https://github.com/szczyglis-dev/py-gpt/issues"
|
|
@@ -6,10 +6,9 @@
|
|
|
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.08.
|
|
9
|
+
# Updated Date: 2025.08.11 00:00:00 #
|
|
10
10
|
# ================================================== #
|
|
11
11
|
|
|
12
|
-
import gc
|
|
13
12
|
from typing import Any, Optional
|
|
14
13
|
|
|
15
14
|
from pygpt_net.core.bridge import BridgeContext
|
|
@@ -20,6 +19,7 @@ from pygpt_net.core.types import (
|
|
|
20
19
|
)
|
|
21
20
|
from pygpt_net.core.events import Event, AppEvent, RenderEvent, KernelEvent
|
|
22
21
|
from pygpt_net.item.ctx import CtxItem
|
|
22
|
+
from pygpt_net.utils import mem_clean
|
|
23
23
|
|
|
24
24
|
|
|
25
25
|
class Output:
|
|
@@ -294,8 +294,10 @@ class Output:
|
|
|
294
294
|
event = RenderEvent(RenderEvent.RELOAD)
|
|
295
295
|
self.window.dispatch(event) # reload chat window
|
|
296
296
|
|
|
297
|
+
del ctx.prev_ctx # clear previous context to free memory
|
|
298
|
+
mem_clean()
|
|
299
|
+
|
|
297
300
|
# self.window.core.debug.mem("END") # debug memory usage
|
|
298
|
-
# gc.collect()
|
|
299
301
|
|
|
300
302
|
def log(self, data: Any):
|
|
301
303
|
"""
|
|
@@ -181,7 +181,7 @@ class Response:
|
|
|
181
181
|
# at first, handle previous context (user input) if not handled yet
|
|
182
182
|
prev_ctx = ctx.prev_ctx
|
|
183
183
|
stream = False
|
|
184
|
-
if prev_ctx.current:
|
|
184
|
+
if prev_ctx and prev_ctx.current:
|
|
185
185
|
prev_ctx.current = False # reset previous context
|
|
186
186
|
self.window.core.ctx.update_item(prev_ctx)
|
|
187
187
|
prev_ctx.from_previous() # append previous result if exists
|