pygpt-net 2.4.37__py3-none-any.whl → 2.4.41__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.
- CHANGELOG.md +29 -0
- README.md +44 -115
- pygpt_net/CHANGELOG.txt +29 -0
- pygpt_net/__init__.py +3 -3
- pygpt_net/controller/__init__.py +7 -3
- pygpt_net/controller/access/control.py +1 -1
- pygpt_net/controller/access/voice.py +11 -5
- pygpt_net/controller/agent/experts.py +11 -6
- pygpt_net/controller/agent/legacy.py +8 -6
- pygpt_net/controller/agent/llama.py +4 -2
- pygpt_net/controller/assistant/__init__.py +9 -4
- pygpt_net/controller/assistant/batch.py +38 -21
- pygpt_net/controller/assistant/editor.py +7 -6
- pygpt_net/controller/assistant/files.py +23 -7
- pygpt_net/controller/assistant/store.py +20 -7
- pygpt_net/controller/assistant/threads.py +34 -8
- pygpt_net/controller/attachment.py +29 -10
- pygpt_net/controller/audio/__init__.py +25 -4
- pygpt_net/controller/calendar/__init__.py +23 -4
- pygpt_net/controller/calendar/note.py +57 -11
- pygpt_net/controller/camera.py +3 -2
- pygpt_net/controller/chat/__init__.py +5 -3
- pygpt_net/controller/chat/attachment.py +34 -7
- pygpt_net/controller/chat/command.py +4 -2
- pygpt_net/controller/chat/common.py +11 -4
- pygpt_net/controller/chat/files.py +10 -3
- pygpt_net/controller/chat/image.py +17 -5
- pygpt_net/controller/chat/input.py +10 -7
- pygpt_net/controller/chat/output.py +21 -6
- pygpt_net/controller/chat/render.py +100 -21
- pygpt_net/controller/chat/response.py +34 -7
- pygpt_net/controller/chat/stream.py +4 -2
- pygpt_net/controller/chat/text.py +6 -4
- pygpt_net/controller/command.py +11 -3
- pygpt_net/controller/config/__init__.py +34 -6
- pygpt_net/controller/config/field/checkbox.py +7 -4
- pygpt_net/controller/config/field/cmd.py +7 -5
- pygpt_net/controller/config/field/combo.py +14 -6
- pygpt_net/controller/config/field/dictionary.py +14 -11
- pygpt_net/controller/config/field/input.py +9 -6
- pygpt_net/controller/config/field/slider.py +11 -8
- pygpt_net/controller/config/field/textarea.py +8 -5
- pygpt_net/controller/config/placeholder.py +52 -21
- pygpt_net/controller/ctx/__init__.py +138 -49
- pygpt_net/controller/ctx/common.py +15 -4
- pygpt_net/controller/ctx/extra.py +11 -3
- pygpt_net/controller/ctx/summarizer.py +24 -5
- pygpt_net/controller/debug/__init__.py +27 -6
- pygpt_net/controller/dialogs/confirm.py +34 -7
- pygpt_net/controller/dialogs/debug.py +4 -2
- pygpt_net/controller/dialogs/info.py +7 -2
- pygpt_net/controller/files.py +48 -10
- pygpt_net/controller/finder.py +11 -5
- pygpt_net/controller/idx/__init__.py +10 -3
- pygpt_net/controller/idx/common.py +4 -2
- pygpt_net/controller/idx/indexer.py +25 -17
- pygpt_net/controller/idx/settings.py +9 -3
- pygpt_net/controller/kernel/__init__.py +34 -8
- pygpt_net/controller/kernel/reply.py +12 -3
- pygpt_net/controller/kernel/stack.py +5 -3
- pygpt_net/controller/lang/custom.py +2 -7
- pygpt_net/controller/lang/mapping.py +5 -3
- pygpt_net/controller/layout.py +2 -2
- pygpt_net/controller/mode.py +16 -4
- pygpt_net/controller/model/__init__.py +14 -3
- pygpt_net/controller/model/editor.py +8 -3
- pygpt_net/controller/notepad.py +26 -12
- pygpt_net/controller/painter/capture.py +23 -4
- pygpt_net/controller/painter/common.py +9 -7
- pygpt_net/controller/plugins/__init__.py +19 -5
- pygpt_net/controller/plugins/presets.py +15 -6
- pygpt_net/controller/plugins/settings.py +9 -3
- pygpt_net/controller/presets/__init__.py +55 -16
- pygpt_net/controller/presets/editor.py +26 -10
- pygpt_net/controller/settings/__init__.py +3 -2
- pygpt_net/controller/settings/editor.py +29 -7
- pygpt_net/controller/settings/profile.py +22 -5
- pygpt_net/controller/theme/__init__.py +54 -12
- pygpt_net/controller/theme/common.py +24 -2
- pygpt_net/controller/theme/markdown.py +32 -16
- pygpt_net/controller/theme/menu.py +26 -5
- pygpt_net/controller/theme/nodes.py +2 -5
- pygpt_net/controller/tools/__init__.py +40 -2
- pygpt_net/controller/ui/__init__.py +4 -6
- pygpt_net/controller/ui/tabs.py +363 -65
- pygpt_net/core/access/actions.py +6 -4
- pygpt_net/core/access/shortcuts.py +4 -3
- pygpt_net/core/access/voice.py +6 -5
- pygpt_net/core/agents/legacy.py +4 -2
- pygpt_net/core/agents/memory.py +7 -2
- pygpt_net/core/agents/observer/evaluation.py +15 -7
- pygpt_net/core/agents/provider.py +9 -4
- pygpt_net/core/agents/runner.py +61 -15
- pygpt_net/core/agents/tools.py +23 -5
- pygpt_net/core/assistants/__init__.py +6 -4
- pygpt_net/core/assistants/files.py +35 -12
- pygpt_net/core/assistants/store.py +20 -10
- pygpt_net/core/attachments/__init__.py +54 -15
- pygpt_net/core/attachments/context.py +92 -29
- pygpt_net/core/audio/__init__.py +71 -3
- pygpt_net/core/audio/context.py +7 -2
- pygpt_net/core/bridge/__init__.py +22 -6
- pygpt_net/core/bridge/context.py +5 -3
- pygpt_net/core/calendar/__init__.py +57 -11
- pygpt_net/core/chain/__init__.py +8 -2
- pygpt_net/core/chain/chat.py +10 -8
- pygpt_net/core/chain/completion.py +10 -7
- pygpt_net/core/command.py +62 -17
- pygpt_net/core/ctx/__init__.py +260 -58
- pygpt_net/core/ctx/bag.py +25 -4
- pygpt_net/core/ctx/container.py +28 -17
- pygpt_net/core/ctx/idx.py +45 -8
- pygpt_net/core/ctx/output.py +95 -74
- pygpt_net/core/ctx/reply.py +5 -2
- pygpt_net/core/db/__init__.py +8 -7
- pygpt_net/core/db/viewer.py +17 -11
- pygpt_net/core/debug/__init__.py +10 -9
- pygpt_net/core/debug/tabs.py +5 -2
- pygpt_net/core/docker/__init__.py +11 -5
- pygpt_net/core/docker/builder.py +11 -3
- pygpt_net/core/events/app.py +5 -3
- pygpt_net/core/events/base.py +11 -5
- pygpt_net/core/events/control.py +5 -3
- pygpt_net/core/events/event.py +17 -7
- pygpt_net/core/events/kernel.py +5 -3
- pygpt_net/core/events/render.py +5 -3
- pygpt_net/core/experts/__init__.py +5 -4
- pygpt_net/core/filesystem/__init__.py +52 -34
- pygpt_net/core/filesystem/actions.py +8 -5
- pygpt_net/core/filesystem/editor.py +13 -3
- pygpt_net/core/filesystem/types.py +12 -7
- pygpt_net/core/filesystem/url.py +7 -3
- pygpt_net/core/idx/__init__.py +34 -25
- pygpt_net/core/idx/chat.py +40 -16
- pygpt_net/core/idx/context.py +6 -2
- pygpt_net/core/idx/indexing.py +84 -35
- pygpt_net/core/idx/llm.py +11 -3
- pygpt_net/core/idx/metadata.py +13 -3
- pygpt_net/core/idx/types/ctx.py +32 -6
- pygpt_net/core/idx/types/external.py +41 -7
- pygpt_net/core/idx/types/files.py +31 -6
- pygpt_net/core/image.py +15 -4
- pygpt_net/core/llm/__init__.py +13 -3
- pygpt_net/core/locale.py +34 -8
- pygpt_net/core/models.py +4 -3
- pygpt_net/core/notepad.py +9 -4
- pygpt_net/core/plugins.py +7 -6
- pygpt_net/core/presets.py +19 -10
- pygpt_net/core/profile.py +12 -6
- pygpt_net/core/prompt/__init__.py +10 -3
- pygpt_net/core/prompt/custom.py +7 -6
- pygpt_net/core/prompt/template.py +9 -3
- pygpt_net/core/render/base.py +117 -22
- pygpt_net/core/render/markdown/body.py +27 -7
- pygpt_net/core/render/markdown/renderer.py +119 -22
- pygpt_net/core/render/plain/body.py +22 -5
- pygpt_net/core/render/plain/renderer.py +97 -21
- pygpt_net/core/render/web/body.py +75 -25
- pygpt_net/core/render/web/renderer.py +313 -63
- pygpt_net/core/settings.py +9 -4
- pygpt_net/core/tabs/__init__.py +290 -103
- pygpt_net/core/tabs/tab.py +17 -4
- pygpt_net/core/tokens.py +44 -11
- pygpt_net/core/updater/__init__.py +20 -7
- pygpt_net/core/vision/analyzer.py +29 -6
- pygpt_net/core/web.py +130 -2
- pygpt_net/data/config/config.json +15 -4
- pygpt_net/data/config/models.json +3 -3
- pygpt_net/data/config/modes.json +3 -3
- pygpt_net/data/config/settings.json +55 -10
- pygpt_net/data/config/settings_section.json +3 -0
- pygpt_net/data/css/style.light.css +1 -0
- pygpt_net/data/css/{web.css → web-blocks.css} +162 -133
- pygpt_net/data/css/{web.light.css → web-blocks.light.css} +7 -0
- pygpt_net/data/css/web-chatgpt.css +350 -0
- pygpt_net/data/css/web-chatgpt.dark.css +64 -0
- pygpt_net/data/css/web-chatgpt.light.css +75 -0
- pygpt_net/data/css/web-chatgpt_wide.css +350 -0
- pygpt_net/data/css/web-chatgpt_wide.dark.css +64 -0
- pygpt_net/data/css/web-chatgpt_wide.light.css +75 -0
- pygpt_net/data/icons/split_screen.svg +1 -0
- pygpt_net/data/locale/locale.de.ini +12 -0
- pygpt_net/data/locale/locale.en.ini +17 -2
- pygpt_net/data/locale/locale.es.ini +12 -0
- pygpt_net/data/locale/locale.fr.ini +12 -0
- pygpt_net/data/locale/locale.it.ini +12 -0
- pygpt_net/data/locale/locale.pl.ini +12 -0
- pygpt_net/data/locale/locale.uk.ini +12 -0
- pygpt_net/data/locale/locale.zh.ini +12 -0
- pygpt_net/data/locale/plugin.cmd_web.de.ini +2 -0
- pygpt_net/data/locale/plugin.cmd_web.en.ini +20 -10
- pygpt_net/data/locale/plugin.cmd_web.es.ini +2 -0
- pygpt_net/data/locale/plugin.cmd_web.fr.ini +2 -0
- pygpt_net/data/locale/plugin.cmd_web.it.ini +2 -0
- pygpt_net/data/locale/plugin.cmd_web.pl.ini +2 -0
- pygpt_net/data/locale/plugin.cmd_web.uk.ini +2 -0
- pygpt_net/data/locale/plugin.cmd_web.zh.ini +2 -0
- pygpt_net/icons.qrc +1 -0
- pygpt_net/icons_rc.py +165 -136
- pygpt_net/item/ctx.py +46 -24
- pygpt_net/plugin/audio_input/simple.py +21 -5
- pygpt_net/plugin/audio_output/__init__.py +4 -1
- pygpt_net/plugin/base/config.py +4 -2
- pygpt_net/plugin/base/plugin.py +26 -6
- pygpt_net/plugin/base/worker.py +37 -9
- pygpt_net/plugin/cmd_code_interpreter/__init__.py +39 -37
- pygpt_net/plugin/cmd_code_interpreter/runner.py +25 -12
- pygpt_net/plugin/cmd_web/__init__.py +46 -6
- pygpt_net/plugin/cmd_web/config.py +74 -48
- pygpt_net/plugin/cmd_web/websearch.py +61 -28
- pygpt_net/plugin/cmd_web/worker.py +79 -13
- pygpt_net/provider/core/config/patch.py +43 -1
- pygpt_net/provider/core/ctx/base.py +4 -1
- pygpt_net/provider/core/ctx/db_sqlite/__init__.py +10 -1
- pygpt_net/provider/core/ctx/db_sqlite/storage.py +22 -1
- pygpt_net/provider/gpt/assistants.py +10 -9
- pygpt_net/provider/gpt/audio.py +3 -2
- pygpt_net/provider/gpt/chat.py +8 -7
- pygpt_net/provider/gpt/completion.py +6 -4
- pygpt_net/provider/gpt/image.py +9 -2
- pygpt_net/provider/gpt/store.py +14 -13
- pygpt_net/provider/gpt/vision.py +6 -5
- pygpt_net/tools/__init__.py +9 -1
- pygpt_net/tools/base.py +15 -1
- pygpt_net/tools/code_interpreter/__init__.py +174 -75
- pygpt_net/tools/code_interpreter/ui/dialogs.py +21 -103
- pygpt_net/tools/code_interpreter/ui/widgets.py +284 -9
- pygpt_net/tools/html_canvas/__init__.py +78 -23
- pygpt_net/tools/html_canvas/ui/dialogs.py +46 -62
- pygpt_net/tools/html_canvas/ui/widgets.py +96 -3
- pygpt_net/ui/base/context_menu.py +2 -2
- pygpt_net/ui/layout/chat/input.py +10 -18
- pygpt_net/ui/layout/chat/output.py +26 -44
- pygpt_net/ui/layout/ctx/ctx_list.py +13 -4
- pygpt_net/ui/layout/toolbox/footer.py +18 -2
- pygpt_net/ui/main.py +2 -2
- pygpt_net/ui/menu/config.py +7 -11
- pygpt_net/ui/menu/debug.py +11 -1
- pygpt_net/ui/menu/theme.py +9 -2
- pygpt_net/ui/widget/filesystem/explorer.py +2 -2
- pygpt_net/ui/widget/lists/context.py +27 -5
- pygpt_net/ui/widget/tabs/Input.py +2 -2
- pygpt_net/ui/widget/tabs/body.py +2 -1
- pygpt_net/ui/widget/tabs/layout.py +195 -0
- pygpt_net/ui/widget/tabs/output.py +218 -55
- pygpt_net/ui/widget/textarea/html.py +11 -1
- pygpt_net/ui/widget/textarea/output.py +10 -1
- pygpt_net/ui/widget/textarea/search_input.py +4 -1
- pygpt_net/ui/widget/textarea/web.py +49 -9
- {pygpt_net-2.4.37.dist-info → pygpt_net-2.4.41.dist-info}/METADATA +45 -116
- {pygpt_net-2.4.37.dist-info → pygpt_net-2.4.41.dist-info}/RECORD +255 -247
- /pygpt_net/data/css/{web.dark.css → web-blocks.dark.css} +0 -0
- {pygpt_net-2.4.37.dist-info → pygpt_net-2.4.41.dist-info}/LICENSE +0 -0
- {pygpt_net-2.4.37.dist-info → pygpt_net-2.4.41.dist-info}/WHEEL +0 -0
- {pygpt_net-2.4.37.dist-info → pygpt_net-2.4.41.dist-info}/entry_points.txt +0 -0
@@ -1,149 +1,149 @@
|
|
1
|
-
CHANGELOG.md,sha256=
|
2
|
-
README.md,sha256=
|
1
|
+
CHANGELOG.md,sha256=q8l0SvbtI7zhwda5TzuzGxiznyoEuFMwwB2ZviTfQvg,79125
|
2
|
+
README.md,sha256=3X6sE1w3-oqPzGbBtHZWStw8fLjQ5eic2MojHdl8wpw,160940
|
3
3
|
icon.png,sha256=CzcINJaU23a9hNjsDlDNbyuiEvKZ4Wg6DQVYF6SpuRg,13970
|
4
|
-
pygpt_net/CHANGELOG.txt,sha256=
|
4
|
+
pygpt_net/CHANGELOG.txt,sha256=VPwm0yrpKarBPYqbdAhLSZcc7s3pA2kiKmkssRWyegs,77666
|
5
5
|
pygpt_net/LICENSE,sha256=6Ku72-zJ8wO5VIR87UoJ5P_coCVjPghaFL9ZF2jLp7E,1146
|
6
|
-
pygpt_net/__init__.py,sha256=
|
6
|
+
pygpt_net/__init__.py,sha256=BmUhl0djAZJHzFghZLX-Z6IJFOpHo2HBtaOVHG_qyfI,1067
|
7
7
|
pygpt_net/app.py,sha256=Q7g-2UlF7FlEOBytbGb_nrjT4zEio2HzfzQd687QuUo,15930
|
8
8
|
pygpt_net/config.py,sha256=Qc1FOBtTf3O6A6-6KoqUGtoJ0u8hXQeowvCVbZFwtik,16405
|
9
9
|
pygpt_net/container.py,sha256=BemiVZPpPNIzfB-ZvnZeeBPFu-AcX2c30OqYFylEjJc,4023
|
10
|
-
pygpt_net/controller/__init__.py,sha256=
|
10
|
+
pygpt_net/controller/__init__.py,sha256=wtlkw4viFVuf2sP0iMSkK0jI1QMa3kcPfvQaqnC-1io,5917
|
11
11
|
pygpt_net/controller/access/__init__.py,sha256=5DzR7zVmFsOICo9I5mEQcIOgsk2WCNi1amUWxExwUiY,2639
|
12
|
-
pygpt_net/controller/access/control.py,sha256=
|
13
|
-
pygpt_net/controller/access/voice.py,sha256=
|
12
|
+
pygpt_net/controller/access/control.py,sha256=nMGWzg60jNJMVAHIrism0_APzVMpbLAOcXG6mJuOSJ8,17332
|
13
|
+
pygpt_net/controller/access/voice.py,sha256=Mt8waiGSc0p-aM8O_8OcGYjAxb0okgG0M1aHVbim9ok,15532
|
14
14
|
pygpt_net/controller/agent/__init__.py,sha256=bArPuyZOJujcf4l1GKMMQ7Wx--xBoFHXz1A3TDjNjAk,1267
|
15
15
|
pygpt_net/controller/agent/common.py,sha256=55CHhV-dsWeNe5QvdvNoyhEYVhQNrHt_Lv-VDTuiYRc,3871
|
16
|
-
pygpt_net/controller/agent/experts.py,sha256=
|
17
|
-
pygpt_net/controller/agent/legacy.py,sha256=
|
18
|
-
pygpt_net/controller/agent/llama.py,sha256=
|
19
|
-
pygpt_net/controller/assistant/__init__.py,sha256=
|
20
|
-
pygpt_net/controller/assistant/batch.py,sha256=
|
21
|
-
pygpt_net/controller/assistant/editor.py,sha256=
|
22
|
-
pygpt_net/controller/assistant/files.py,sha256=
|
23
|
-
pygpt_net/controller/assistant/store.py,sha256=
|
24
|
-
pygpt_net/controller/assistant/threads.py,sha256=
|
25
|
-
pygpt_net/controller/attachment.py,sha256=
|
26
|
-
pygpt_net/controller/audio/__init__.py,sha256=
|
27
|
-
pygpt_net/controller/calendar/__init__.py,sha256=
|
28
|
-
pygpt_net/controller/calendar/note.py,sha256=
|
29
|
-
pygpt_net/controller/camera.py,sha256=
|
30
|
-
pygpt_net/controller/chat/__init__.py,sha256=
|
31
|
-
pygpt_net/controller/chat/attachment.py,sha256=
|
16
|
+
pygpt_net/controller/agent/experts.py,sha256=qllzrjVNfDoueBc0nsQLaWlOY4wpUKENp4l9cjWz0BM,5830
|
17
|
+
pygpt_net/controller/agent/legacy.py,sha256=M3fKxp6B86Y7cQNg0U5OXOi3PGzt1m_5arQ7e56WLts,13448
|
18
|
+
pygpt_net/controller/agent/llama.py,sha256=5sHGqcL6ISeLn8UB6qrGBYf_sOyUJlBvOBm3CNrgwmQ,4673
|
19
|
+
pygpt_net/controller/assistant/__init__.py,sha256=K4uu-D-kLHaHibMKb8eyTu7kFtu4oULhWMczZk30cxU,10634
|
20
|
+
pygpt_net/controller/assistant/batch.py,sha256=yVa6G1xwBv7-knt7nRxsOuV8uFlVYy28YV94gqPISVw,20643
|
21
|
+
pygpt_net/controller/assistant/editor.py,sha256=yzGPzatwUBsEew3H75rNJWL0AdJRmiaFtP-jERQ3GRI,15271
|
22
|
+
pygpt_net/controller/assistant/files.py,sha256=0TmDcDyXpmDc7BsCFZaF6Oj-H4Yr4CxOgkusbBjtC5k,14777
|
23
|
+
pygpt_net/controller/assistant/store.py,sha256=t0h5EeJ9d-Cc_KzV6gQ3kZneoIeECp4iVHxvpJhjP-Q,15771
|
24
|
+
pygpt_net/controller/assistant/threads.py,sha256=wo1m5G2vWF5e3hU6380CHSdSlsCQRXs7hbsCEeL0fNk,20907
|
25
|
+
pygpt_net/controller/attachment.py,sha256=RC2aKfeOT9X2NuFr_1KxSpHavE9ppoIFAdJJRxofC0Y,19370
|
26
|
+
pygpt_net/controller/audio/__init__.py,sha256=lwTFkIpi15tEMt8GQNeU6gAoRFFgdzCZ9ox_ngo-3Hg,10365
|
27
|
+
pygpt_net/controller/calendar/__init__.py,sha256=s55RkCFQPFzdDoQ2zp3kohlNdpiWxdSxQtsaROeiigw,4424
|
28
|
+
pygpt_net/controller/calendar/note.py,sha256=y8Gkg35-aM1MfQ9P2NsRnmfSJw4Ps__9g6I1RhonR6s,11428
|
29
|
+
pygpt_net/controller/camera.py,sha256=G_p_CNqxnqYa3TIQNRBrPL-IFnHd1vGcGhgraHNg14g,16550
|
30
|
+
pygpt_net/controller/chat/__init__.py,sha256=JUDt_DqxgpBROpr6k2jFQ03EIqXwmrAkwkkN0hN6jFU,3086
|
31
|
+
pygpt_net/controller/chat/attachment.py,sha256=TXvPm0ifYBqHtbQ170SlE7IXrGTx8oT56N4DQMv96wg,20882
|
32
32
|
pygpt_net/controller/chat/audio.py,sha256=1eX_kIiRLFBDrNAPVthj-1ftknhdOkn3jWBuC7kT79c,3181
|
33
|
-
pygpt_net/controller/chat/command.py,sha256=
|
34
|
-
pygpt_net/controller/chat/common.py,sha256
|
35
|
-
pygpt_net/controller/chat/files.py,sha256=
|
36
|
-
pygpt_net/controller/chat/image.py,sha256=
|
37
|
-
pygpt_net/controller/chat/input.py,sha256=
|
38
|
-
pygpt_net/controller/chat/output.py,sha256=
|
39
|
-
pygpt_net/controller/chat/render.py,sha256=
|
40
|
-
pygpt_net/controller/chat/response.py,sha256=
|
41
|
-
pygpt_net/controller/chat/stream.py,sha256=
|
42
|
-
pygpt_net/controller/chat/text.py,sha256=
|
33
|
+
pygpt_net/controller/chat/command.py,sha256=sop5xP9Sm0sLx7iTdBmCifGnF_nQw2cIb_pT6-0_ETg,2857
|
34
|
+
pygpt_net/controller/chat/common.py,sha256=-BJa2wHRHLDY-BHgp36GFhSr0yGNclkJGMiJQDktHaA,13958
|
35
|
+
pygpt_net/controller/chat/files.py,sha256=VFiiTeWTYR15Nwf1CTLEmeXqlmRHzNQVkNaU6hY2Gz4,2846
|
36
|
+
pygpt_net/controller/chat/image.py,sha256=UR6R5Nj2MXPIg8goxA1BUc8vGD26x7Xs04KhEE9nigQ,8039
|
37
|
+
pygpt_net/controller/chat/input.py,sha256=yLIhEPh0oh5BYQnOxYUI9raaRziAJdjQlQolmT-m3Lo,9981
|
38
|
+
pygpt_net/controller/chat/output.py,sha256=VuziVuI9Lj_4kZmTWvXg8t2tq4w9uD7J1g2MqlMCV6s,9272
|
39
|
+
pygpt_net/controller/chat/render.py,sha256=h23QCvMDIAaCpInqwwADa4G43sSpSn-CE5celnk1LSc,17206
|
40
|
+
pygpt_net/controller/chat/response.py,sha256=UnTnnn2on-Qg2_T_QcQcklTCcuq6XhyLLxs1fn-D9Tg,9450
|
41
|
+
pygpt_net/controller/chat/stream.py,sha256=zdyC-IGgb9gUtvNCOBXc__XU__kiBmSF6XJitDjcXxU,7486
|
42
|
+
pygpt_net/controller/chat/text.py,sha256=0Q0FxoGXuIEP4Kcr5kCyUgXymsg4jUyoXTKW2ElTIW8,10185
|
43
43
|
pygpt_net/controller/chat/vision.py,sha256=bTQ6TFEh9NsPSDSLpExS7KvxQMtqm2sDPm5A0skyOGo,2838
|
44
|
-
pygpt_net/controller/command.py,sha256=
|
45
|
-
pygpt_net/controller/config/__init__.py,sha256=
|
44
|
+
pygpt_net/controller/command.py,sha256=sUvnvsKISkHTrbv7woQQ8r4SAGDR8Gy85H42q8eAg78,5671
|
45
|
+
pygpt_net/controller/config/__init__.py,sha256=cpVI1-_DkrnDkl5K4rGjOhYD-TzXKUoQx99pKzwXjKg,4863
|
46
46
|
pygpt_net/controller/config/field/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
47
|
-
pygpt_net/controller/config/field/checkbox.py,sha256=
|
48
|
-
pygpt_net/controller/config/field/cmd.py,sha256=
|
49
|
-
pygpt_net/controller/config/field/combo.py,sha256=
|
50
|
-
pygpt_net/controller/config/field/dictionary.py,sha256=
|
51
|
-
pygpt_net/controller/config/field/input.py,sha256=
|
52
|
-
pygpt_net/controller/config/field/slider.py,sha256=
|
53
|
-
pygpt_net/controller/config/field/textarea.py,sha256=
|
54
|
-
pygpt_net/controller/config/placeholder.py,sha256=
|
55
|
-
pygpt_net/controller/ctx/__init__.py,sha256=
|
56
|
-
pygpt_net/controller/ctx/common.py,sha256=
|
57
|
-
pygpt_net/controller/ctx/extra.py,sha256=
|
58
|
-
pygpt_net/controller/ctx/summarizer.py,sha256=
|
59
|
-
pygpt_net/controller/debug/__init__.py,sha256=
|
47
|
+
pygpt_net/controller/config/field/checkbox.py,sha256=CBAkM_wmIp6WC8eZ8FKTvvZ8UhbWHnErMlUHoDykP-A,2473
|
48
|
+
pygpt_net/controller/config/field/cmd.py,sha256=G5UKTZknnmf1NSDSIpWr5gvgy6y0jX9QOEUtbQpZxyw,4933
|
49
|
+
pygpt_net/controller/config/field/combo.py,sha256=ZP9XylpYtPpr0VdFRIcx0FRXOwUM8ywTOko8iwE6T1A,3362
|
50
|
+
pygpt_net/controller/config/field/dictionary.py,sha256=E8b3Quid_kdQQ54fuZJ4GdcPoErvNvVkQduKnUeoXm4,6873
|
51
|
+
pygpt_net/controller/config/field/input.py,sha256=081bzm0-MSN6UYIsyDS4gAEhgojWswCNjGqTyyg4Ric,3663
|
52
|
+
pygpt_net/controller/config/field/slider.py,sha256=2XToxPkIvfRPcANa-um6HDQ8rLqpDGynDN05ocKdE1w,4692
|
53
|
+
pygpt_net/controller/config/field/textarea.py,sha256=CySGd21ljR3v3DX9V2WwSvmKVEihD547rnHiRngWuuc,2398
|
54
|
+
pygpt_net/controller/config/placeholder.py,sha256=4kroY967ZBCHYZipIfihiZ5IDonxM_LNiMOKsw3nkEI,11809
|
55
|
+
pygpt_net/controller/ctx/__init__.py,sha256=K1LslZqoIPtTphLDcrTxiqqJ6Fx1EZkJkbPEUCRws9Y,33913
|
56
|
+
pygpt_net/controller/ctx/common.py,sha256=yz1s4kVfxlRpd0XW_sygbmer66LqLxQA1e6O8Pz7FL4,6380
|
57
|
+
pygpt_net/controller/ctx/extra.py,sha256=eDl0_iu80pRtyMX5ub52mjvOo_xo-vb1kZmTt0Idyoo,8219
|
58
|
+
pygpt_net/controller/ctx/summarizer.py,sha256=i6TNIcfzSGeBo1AKlflFt-Tt_YoXB6_3JXBvpvI_YTk,2859
|
59
|
+
pygpt_net/controller/debug/__init__.py,sha256=Dn12CfDYml_n4Xq3mWkafUrM-UVXFEU1mDpL1f6nPm0,8318
|
60
60
|
pygpt_net/controller/dialogs/__init__.py,sha256=sJHyZxkAn9QKTegUqx_xETesN2ecMBkrtf-VsCubr2w,1008
|
61
|
-
pygpt_net/controller/dialogs/confirm.py,sha256=
|
62
|
-
pygpt_net/controller/dialogs/debug.py,sha256=
|
63
|
-
pygpt_net/controller/dialogs/info.py,sha256=
|
64
|
-
pygpt_net/controller/files.py,sha256=
|
65
|
-
pygpt_net/controller/finder.py,sha256=
|
66
|
-
pygpt_net/controller/idx/__init__.py,sha256=
|
67
|
-
pygpt_net/controller/idx/common.py,sha256=
|
68
|
-
pygpt_net/controller/idx/indexer.py,sha256=
|
69
|
-
pygpt_net/controller/idx/settings.py,sha256=
|
70
|
-
pygpt_net/controller/kernel/__init__.py,sha256=
|
71
|
-
pygpt_net/controller/kernel/reply.py,sha256
|
72
|
-
pygpt_net/controller/kernel/stack.py,sha256=
|
61
|
+
pygpt_net/controller/dialogs/confirm.py,sha256=EpLYx4cAyb3S723-ACU-nCvcx0lH9tj4upLnjPiekF8,15875
|
62
|
+
pygpt_net/controller/dialogs/debug.py,sha256=v6E85vyCwfaDG9XZysxhBjRwlrDkbYC-NxUnDamNRpk,5980
|
63
|
+
pygpt_net/controller/dialogs/info.py,sha256=7J3LwDX13BEXds5jVy5FQZAZgKIOGkqoOz8-kFadtTU,2835
|
64
|
+
pygpt_net/controller/files.py,sha256=1Zm9L8-rhLG-GjRQDaOCkAFocAAobTQj-D3ILxLUGn4,16135
|
65
|
+
pygpt_net/controller/finder.py,sha256=4jl8EzTVR1Wc0dJkVwacAdvBiuF1CyOSKB4Qewju0Jw,4955
|
66
|
+
pygpt_net/controller/idx/__init__.py,sha256=kTpUrAiv6oU6DZmpHJ2uvAv28RylX3j8ZnRblD53iFc,10089
|
67
|
+
pygpt_net/controller/idx/common.py,sha256=gfJnR-hkJjTQUwPQr0pWySDCp7izJ_WexHf8PMhVtvk,1875
|
68
|
+
pygpt_net/controller/idx/indexer.py,sha256=5odavgOrqsTD_JZn6fyK0_fKH1BYWYJJAPhec3uxyM0,22303
|
69
|
+
pygpt_net/controller/idx/settings.py,sha256=orWd8ARxIBBs3MWJLjEKcqmrXLi6DvsLitsPvPd2fXU,7916
|
70
|
+
pygpt_net/controller/kernel/__init__.py,sha256=5Ks4FDuwxy76BxVF-QOcenCCpCX4byzYbHpuI7o3vr0,11231
|
71
|
+
pygpt_net/controller/kernel/reply.py,sha256=-5z1QHsXh2PvtZSC18gXc-fdyVVK5WACiEK_yhNg-a0,5914
|
72
|
+
pygpt_net/controller/kernel/stack.py,sha256=aPLetBoQDKYawQJg8pkAO3tHfJgKwO_NvDOR8F2wJkM,3767
|
73
73
|
pygpt_net/controller/lang/__init__.py,sha256=pTSX0il3xLNGHoh4XAOdIUlbC2f9kIBCzthRDDOjyNY,3287
|
74
|
-
pygpt_net/controller/lang/custom.py,sha256=
|
75
|
-
pygpt_net/controller/lang/mapping.py,sha256=
|
74
|
+
pygpt_net/controller/lang/custom.py,sha256=sA8fC9CqNNbaJ3cywa4xlZXBTJP9QUWJLa1YliKHPRw,5802
|
75
|
+
pygpt_net/controller/lang/mapping.py,sha256=YcURiyirrVCd5PIfbhY3NYxg9_i5GJchhJ8JYzb-NPM,23044
|
76
76
|
pygpt_net/controller/lang/plugins.py,sha256=JEiOajXB7BfxPPfBkYl82K1_gKpRVcMEPNPwsNAJ6WU,3879
|
77
77
|
pygpt_net/controller/lang/settings.py,sha256=awPEshWbHlOt11Zyg_uQKlbYjvABXrQ7QMHdpu2L9ZI,2634
|
78
78
|
pygpt_net/controller/launcher.py,sha256=om6aEZx31cSiCuShnDHp5Fs-Lj6Rb_pmbOO5fBweEWU,1899
|
79
|
-
pygpt_net/controller/layout.py,sha256
|
80
|
-
pygpt_net/controller/mode.py,sha256=
|
81
|
-
pygpt_net/controller/model/__init__.py,sha256=
|
82
|
-
pygpt_net/controller/model/editor.py,sha256=
|
83
|
-
pygpt_net/controller/notepad.py,sha256=
|
79
|
+
pygpt_net/controller/layout.py,sha256=9R30zrZtvedAf1OxQLzxDWt8o2XirUq0bkcFRnpCztg,11433
|
80
|
+
pygpt_net/controller/mode.py,sha256=TY3y5fD8kpqLCmDyyCoEL_1OTSOXLnHVdIvH2lGUTew,7303
|
81
|
+
pygpt_net/controller/model/__init__.py,sha256=nuykmI7v-CqReuZ9xepAg41IibB8y95P-r63LrU1DUM,5671
|
82
|
+
pygpt_net/controller/model/editor.py,sha256=8UaNi_Ui5ooPdio9_mw4ECihTxE7Iq5n5hDl41D3hu0,12675
|
83
|
+
pygpt_net/controller/notepad.py,sha256=wgnvLtTBuq6W6Eio3BgjrESPRNLRRVyqUutpBNb9T7k,9267
|
84
84
|
pygpt_net/controller/painter/__init__.py,sha256=1Ekmr2a3irDkSb2wowiPXhW59rfdZOW1tdbxeubph-k,2747
|
85
|
-
pygpt_net/controller/painter/capture.py,sha256=
|
86
|
-
pygpt_net/controller/painter/common.py,sha256=
|
87
|
-
pygpt_net/controller/plugins/__init__.py,sha256
|
88
|
-
pygpt_net/controller/plugins/presets.py,sha256=
|
89
|
-
pygpt_net/controller/plugins/settings.py,sha256=
|
90
|
-
pygpt_net/controller/presets/__init__.py,sha256=
|
91
|
-
pygpt_net/controller/presets/editor.py,sha256=
|
85
|
+
pygpt_net/controller/painter/capture.py,sha256=oLBh5emwjJUTddjT6hWErv2FFjSakC_9WSruxPhkJO8,6664
|
86
|
+
pygpt_net/controller/painter/common.py,sha256=gTRCIcmAsgYhueUWNfEIwIJo-40YBVhoNSksOY1Oj34,6395
|
87
|
+
pygpt_net/controller/plugins/__init__.py,sha256=-Y4K2-DovAh903cc7n4xYHv0ka9jI96zN8E08h0EOCQ,15930
|
88
|
+
pygpt_net/controller/plugins/presets.py,sha256=SaMJTUENCsssz0lU__URBeFZXZHpkKiSjNEgKz-yYA4,12061
|
89
|
+
pygpt_net/controller/plugins/settings.py,sha256=imKitT7FBCfuDQvCTy1Qz4dq4xaT4LKbh9qGdxg7aBQ,6110
|
90
|
+
pygpt_net/controller/presets/__init__.py,sha256=nasEC4qE3OLzvh9l9YWv1h18cLXsab7-210oWeVTvkw,22367
|
91
|
+
pygpt_net/controller/presets/editor.py,sha256=MDLZHaJ7_vNZvrJXLFFaWukRXw0hz_L7_Wv1NX8ctcQ,19453
|
92
92
|
pygpt_net/controller/presets/experts.py,sha256=ipC4UBPseWK4OviQtOcrWY4HW9j2A4AButVS_9Z5leY,4998
|
93
|
-
pygpt_net/controller/settings/__init__.py,sha256=
|
94
|
-
pygpt_net/controller/settings/editor.py,sha256=
|
95
|
-
pygpt_net/controller/settings/profile.py,sha256=
|
93
|
+
pygpt_net/controller/settings/__init__.py,sha256=FFCU_GlL2WX_6FPApx_qjmzXNYlJq3TMfn6TVkvsqFY,7767
|
94
|
+
pygpt_net/controller/settings/editor.py,sha256=2z2uFS4A4JImdlDbx8yhIyXfXn6WEBJ7BgXV3MXSZKo,16368
|
95
|
+
pygpt_net/controller/settings/profile.py,sha256=1sdsGlVf8DRy3NvyXdem6Bb8iJVrMe9yPdmWO23nDE8,21253
|
96
96
|
pygpt_net/controller/settings/workdir.py,sha256=khvMDJrQoLMVh2rnTyk9cKilBUig5PKdULRVLZJ5X1k,8794
|
97
|
-
pygpt_net/controller/theme/__init__.py,sha256=
|
98
|
-
pygpt_net/controller/theme/common.py,sha256=
|
99
|
-
pygpt_net/controller/theme/markdown.py,sha256=
|
100
|
-
pygpt_net/controller/theme/menu.py,sha256=
|
101
|
-
pygpt_net/controller/theme/nodes.py,sha256=
|
102
|
-
pygpt_net/controller/tools/__init__.py,sha256=
|
103
|
-
pygpt_net/controller/ui/__init__.py,sha256=
|
97
|
+
pygpt_net/controller/theme/__init__.py,sha256=iT12qfxMLBW8PBQ0-KmVnRcRfKC4ZH-M_1TBggtF4go,7255
|
98
|
+
pygpt_net/controller/theme/common.py,sha256=drAO3vrvQXY0pckF5niHdqpsuHDuB2IOpqlGK58z-tI,6294
|
99
|
+
pygpt_net/controller/theme/markdown.py,sha256=Q1lOdp8hiKR50N5pdEyF4jk5I9A9RtYr3egzkkhJEcc,5975
|
100
|
+
pygpt_net/controller/theme/menu.py,sha256=dMhkGVBlMEk7ePL3eKmK0JCPIWEp1yKGWEkqoyaUMhk,5671
|
101
|
+
pygpt_net/controller/theme/nodes.py,sha256=6SCKMGQ5SZdKgy4t69raiikTLQDPPkjoYTPwlWligv8,5200
|
102
|
+
pygpt_net/controller/tools/__init__.py,sha256=b_yt413iRUI9fWHzZGdtM4333UjzrJb-zmq_exYTgy4,2723
|
103
|
+
pygpt_net/controller/ui/__init__.py,sha256=WsH7OzMS_ixCwuHeSajv2E3irPo9B4H3dQe7Svd_71k,5903
|
104
104
|
pygpt_net/controller/ui/mode.py,sha256=UOyUXi0vkbQFjq3l8KI0WnrenQ1MUTwCDmBwvBFpu7k,10324
|
105
|
-
pygpt_net/controller/ui/tabs.py,sha256=
|
105
|
+
pygpt_net/controller/ui/tabs.py,sha256=Z3IoZfD_DCYh3-o1ueBiYyu0BNAVjPeYSst4icSrNfk,19789
|
106
106
|
pygpt_net/controller/ui/vision.py,sha256=KrP8wFuuz-gsO9iwbLDnzvC5iqWVlWjFarQ27HkHdEg,2303
|
107
107
|
pygpt_net/core/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
108
108
|
pygpt_net/core/access/__init__.py,sha256=rFKp9xMsuJHS_wxiMEMMHVRd5lXdkPj7LuObAIdQFBY,942
|
109
|
-
pygpt_net/core/access/actions.py,sha256=
|
109
|
+
pygpt_net/core/access/actions.py,sha256=b5gXIB9YJ6HP_-xZBHjy5UlrUjpJ_VICYv8DxmGrEWQ,4359
|
110
110
|
pygpt_net/core/access/helpers.py,sha256=z-MFnXpx1VDehsMYmq0tpqjHIKZsXuJbbQRtVltzbmw,6672
|
111
|
-
pygpt_net/core/access/shortcuts.py,sha256=
|
112
|
-
pygpt_net/core/access/voice.py,sha256=
|
111
|
+
pygpt_net/core/access/shortcuts.py,sha256=uysYbKoj6fBGNS1LaSgYNdjOIsD_hnOoDwxrx7U8j8A,4072
|
112
|
+
pygpt_net/core/access/voice.py,sha256=4HoUOwEBq00_dFqNqM6wVUcVzryIH3DpxC0XUQjRTKg,11782
|
113
113
|
pygpt_net/core/agents/__init__.py,sha256=sXP4AgrXW07Ap0w3ycVG4j-GxAZbp7aVKpRv4HMTWfM,1050
|
114
|
-
pygpt_net/core/agents/legacy.py,sha256=
|
115
|
-
pygpt_net/core/agents/memory.py,sha256=
|
114
|
+
pygpt_net/core/agents/legacy.py,sha256=bJTBrOkfjtjhGVu69uk4T2TsA6QOMlHO3w0mpJrnqO8,1683
|
115
|
+
pygpt_net/core/agents/memory.py,sha256=K0wcAOkgvGBndnS08--ZG_pIiWQoL8Hra3v1pVeiGZ4,2810
|
116
116
|
pygpt_net/core/agents/observer/__init__.py,sha256=qVIBJKpGbc0k7PTESAwAR7SbN-pbkBMJUTzeliCAaJU,651
|
117
|
-
pygpt_net/core/agents/observer/evaluation.py,sha256=
|
118
|
-
pygpt_net/core/agents/provider.py,sha256=
|
119
|
-
pygpt_net/core/agents/runner.py,sha256
|
120
|
-
pygpt_net/core/agents/tools.py,sha256=
|
121
|
-
pygpt_net/core/assistants/__init__.py,sha256=
|
122
|
-
pygpt_net/core/assistants/files.py,sha256=
|
123
|
-
pygpt_net/core/assistants/store.py,sha256=
|
124
|
-
pygpt_net/core/attachments/__init__.py,sha256=
|
125
|
-
pygpt_net/core/attachments/context.py,sha256=
|
117
|
+
pygpt_net/core/agents/observer/evaluation.py,sha256=IJzHhwXK4ZfYoJkNJWvIhLs88NNTHc0VXV5KPHL37G4,5052
|
118
|
+
pygpt_net/core/agents/provider.py,sha256=MejAYHDh76hB-4PgWxMqIn9lPmbSU89qEfa7cAVg3sg,1671
|
119
|
+
pygpt_net/core/agents/runner.py,sha256=4i_1lcHS_2jUoXWz_w3Y_wY2WmOgZ3t3BnQ2Siptf0o,23571
|
120
|
+
pygpt_net/core/agents/tools.py,sha256=Fq9PtkFWWebT3-Sd9P8UsoqmdNFuJJNC4vgLNLYknFg,5554
|
121
|
+
pygpt_net/core/assistants/__init__.py,sha256=JVseBSjDJh9vJYjxoZVwU93EFTBJk_rUtRh_Ml550H0,4391
|
122
|
+
pygpt_net/core/assistants/files.py,sha256=rmIVxDNfLrpA95Ghs_mc5s8Yn4xiC7POynpZMzaBcd0,10150
|
123
|
+
pygpt_net/core/assistants/store.py,sha256=4zz8_10_f6o8gdRekEPo5Ox0tLwuZO8tKyVsz-AhYfs,8211
|
124
|
+
pygpt_net/core/attachments/__init__.py,sha256=7YXB1dD8yFPIDEQrQxkkCR-CWSdUMM6zZ2SiWeuiF_8,12771
|
125
|
+
pygpt_net/core/attachments/context.py,sha256=d7IhVswoBnrEmLNHslkm2-0dG_spJE31_SzJVbbTE1c,24121
|
126
126
|
pygpt_net/core/attachments/worker.py,sha256=_aUCyi5-Mbz0IGfgY6QKBZ6MFz8aKRDfKasbBVXg7kU,1341
|
127
|
-
pygpt_net/core/audio/__init__.py,sha256=
|
128
|
-
pygpt_net/core/audio/context.py,sha256=
|
129
|
-
pygpt_net/core/bridge/__init__.py,sha256=
|
130
|
-
pygpt_net/core/bridge/context.py,sha256=
|
127
|
+
pygpt_net/core/audio/__init__.py,sha256=CRL6p-9m5fIlD6QNpHH_XrnPYOmeFRjR70UJcHroUqk,4697
|
128
|
+
pygpt_net/core/audio/context.py,sha256=2XpXWhDC09iUvc0FRMq9BF2_rnQ60ZG4Js6LbO5MohY,1115
|
129
|
+
pygpt_net/core/bridge/__init__.py,sha256=ezS02_2wUrnV6eTF33wfob8rVWM5snfY92-PF_i15uQ,9568
|
130
|
+
pygpt_net/core/bridge/context.py,sha256=zIqbbFyZYsU5JEJGvwBg07u9QeeMUKsdTnURyp8tR4Y,4351
|
131
131
|
pygpt_net/core/bridge/worker.py,sha256=knquYoNZSZY7RK-qmbNfj3LJDns3uDnkZhGus23qsJg,5819
|
132
|
-
pygpt_net/core/calendar/__init__.py,sha256=
|
132
|
+
pygpt_net/core/calendar/__init__.py,sha256=ao9kQk6Xjse95m1TbL1Mlbo1k1Q8D9eGc10L-71G9TY,7227
|
133
133
|
pygpt_net/core/camera.py,sha256=WAo1YAmdjRuAtpVx73695aEHBmT2C16-T348MVOY7Rg,4034
|
134
|
-
pygpt_net/core/chain/__init__.py,sha256=
|
135
|
-
pygpt_net/core/chain/chat.py,sha256=
|
136
|
-
pygpt_net/core/chain/completion.py,sha256=
|
137
|
-
pygpt_net/core/command.py,sha256=
|
138
|
-
pygpt_net/core/ctx/__init__.py,sha256=
|
139
|
-
pygpt_net/core/ctx/bag.py,sha256
|
140
|
-
pygpt_net/core/ctx/container.py,sha256=
|
141
|
-
pygpt_net/core/ctx/idx.py,sha256=
|
142
|
-
pygpt_net/core/ctx/output.py,sha256=
|
143
|
-
pygpt_net/core/ctx/reply.py,sha256=
|
144
|
-
pygpt_net/core/db/__init__.py,sha256=
|
145
|
-
pygpt_net/core/db/viewer.py,sha256=
|
146
|
-
pygpt_net/core/debug/__init__.py,sha256=
|
134
|
+
pygpt_net/core/chain/__init__.py,sha256=C7Xm88bRblcyM4e0wZMFG-6SQCdw_frXN9kqnWzce60,3541
|
135
|
+
pygpt_net/core/chain/chat.py,sha256=5LxPWHkocjrIAAwrdDH1ss6knAnh4_owfbHPsOQYSws,5238
|
136
|
+
pygpt_net/core/chain/completion.py,sha256=GGRA-q6sQgPnSibiwHBwk7jgT0MgOkka1_jK2-IiBPg,5698
|
137
|
+
pygpt_net/core/command.py,sha256=B0rmRSF4F6AkIcCUIQIkxj2JryeczWmabsGxRMLKeeE,22058
|
138
|
+
pygpt_net/core/ctx/__init__.py,sha256=H9VUnCPkgjGYRy72IjTrAEzq4dHhsSvkg2E71TjnGXY,43105
|
139
|
+
pygpt_net/core/ctx/bag.py,sha256=-LRhttDRiQkw1Msl3kbGQYaY9w8zqn1o0miNRdqjHtQ,1286
|
140
|
+
pygpt_net/core/ctx/container.py,sha256=tdPHPRfTi8yGY1MZGgFtYtx2lvc5K9OTqhjde16wivY,4232
|
141
|
+
pygpt_net/core/ctx/idx.py,sha256=3Zi-48OWlU80si-Z7mVjnsc7TYATXK9g1dM0M5sXsV4,8167
|
142
|
+
pygpt_net/core/ctx/output.py,sha256=_F3RHOXIzApB3Gw9tFkfW9OC4Vb91CTOgrrN_yXziTY,7276
|
143
|
+
pygpt_net/core/ctx/reply.py,sha256=sgXe0YlkHbaITVhGU3NyMCa9Ph8EWFQjuA_BybohZQ4,1834
|
144
|
+
pygpt_net/core/db/__init__.py,sha256=KUczKfytHXeFAnUWG6IHovB50xgUoVxS4sgxtNOrVY0,16316
|
145
|
+
pygpt_net/core/db/viewer.py,sha256=mXn94mwP5A-GOrVwY6gtEVBfvg7Fq5F79rK-Ap1hkwE,9131
|
146
|
+
pygpt_net/core/debug/__init__.py,sha256=yK1g62SRqatrnod8HCUGSuqa-rdNg9utGUX49FAF018,9559
|
147
147
|
pygpt_net/core/debug/agent.py,sha256=BylgNCl8n8aV2GCK5cQZVwobm1kjH_ETtgEiObilvgQ,1922
|
148
148
|
pygpt_net/core/debug/assistants.py,sha256=fUYVdMsdtfWd3njirvw2lvBv7CgPHdz_9ZSDVr2VsEo,2672
|
149
149
|
pygpt_net/core/debug/attachments.py,sha256=shiRf3AwR4_lAttryNN7akSyu9_0nRuCFxBLLTblDz4,1638
|
@@ -156,95 +156,95 @@ pygpt_net/core/debug/kernel.py,sha256=kFw3dp2Azl_g6omMoxlieV8E8pn5JqtI2PTHBmJ0fA
|
|
156
156
|
pygpt_net/core/debug/models.py,sha256=tzpt-KMt3dwwCze5igSQb_BaVUUXVYfEYLbsAZcj0b0,1896
|
157
157
|
pygpt_net/core/debug/plugins.py,sha256=LchOpAn79J8qQH5eVvlBFz5h5Y8cus-XqGSmU9bGd98,1258
|
158
158
|
pygpt_net/core/debug/presets.py,sha256=v-2NiaNA3RgxMQQgfq7qdMB7LjmyV8FrPmQpCji4Dec,2399
|
159
|
-
pygpt_net/core/debug/tabs.py,sha256=
|
159
|
+
pygpt_net/core/debug/tabs.py,sha256=8-IOdZ0kFIXdC1vfoQr67R5E_3qWj421svnbXI7joPA,2427
|
160
160
|
pygpt_net/core/debug/ui.py,sha256=ObMa8_iA2UaPoHS_d6y9Ztbd6VpGYPJw45vcGnUmao4,2666
|
161
161
|
pygpt_net/core/dispatcher.py,sha256=kQq2FsZH2pRXTZj6kKpWPC414ZwATUfe5JIuUFMRarY,5214
|
162
|
-
pygpt_net/core/docker/__init__.py,sha256=
|
163
|
-
pygpt_net/core/docker/builder.py,sha256=
|
162
|
+
pygpt_net/core/docker/__init__.py,sha256=4woTImf3qyBkBmWmW_UmF4Pkbn9kf-TLsSaJ0rtVA8A,12999
|
163
|
+
pygpt_net/core/docker/builder.py,sha256=xlYKNvtercxS9cgg9aYFMj7zK_DtZ3h6hhlMehlrTbA,2877
|
164
164
|
pygpt_net/core/events/__init__.py,sha256=C6n8MRL_GXcHlr3txzyb2DtRMGLQbD_LEZygFVyQE-k,665
|
165
|
-
pygpt_net/core/events/app.py,sha256=
|
166
|
-
pygpt_net/core/events/base.py,sha256=
|
167
|
-
pygpt_net/core/events/control.py,sha256=
|
168
|
-
pygpt_net/core/events/event.py,sha256=
|
169
|
-
pygpt_net/core/events/kernel.py,sha256=
|
170
|
-
pygpt_net/core/events/render.py,sha256=
|
171
|
-
pygpt_net/core/experts/__init__.py,sha256=
|
172
|
-
pygpt_net/core/filesystem/__init__.py,sha256=
|
173
|
-
pygpt_net/core/filesystem/actions.py,sha256=
|
174
|
-
pygpt_net/core/filesystem/editor.py,sha256
|
165
|
+
pygpt_net/core/events/app.py,sha256=q19J25-UFdlgEINQ_Iqc_qLyB7CE2wT-goIM8FxZGiQ,1890
|
166
|
+
pygpt_net/core/events/base.py,sha256=B6cex7ifmVsvIwoMvSQwnIhHqLz0IQdOdHSU4YvtPTg,1886
|
167
|
+
pygpt_net/core/events/control.py,sha256=57EjCTnKMyC17aRIYpA81veKwwlHciCdk-VWNwKDDzM,2907
|
168
|
+
pygpt_net/core/events/event.py,sha256=TuhTVRI7wPg1o8GervrGrEchNF53jCC-3ttEkldcTnQ,3779
|
169
|
+
pygpt_net/core/events/kernel.py,sha256=QLhD7CMszdyg6TIs4q_5bHikjEY-cxOOhQkGnG113t8,1919
|
170
|
+
pygpt_net/core/events/render.py,sha256=EnZspEs10WwJbtvbSYu2CqkuXJ_3BOHoNXmZ2FLtFGM,2167
|
171
|
+
pygpt_net/core/experts/__init__.py,sha256=fIZtKa7CBVKk_Neg7ngr5mZSUHLQiAPnqixZPNiwOgQ,17548
|
172
|
+
pygpt_net/core/filesystem/__init__.py,sha256=gtJSEonPy_Nt1K9IJmBtt8JvtNIsJKQi6u5inNVHZU8,15566
|
173
|
+
pygpt_net/core/filesystem/actions.py,sha256=2lRVF_MpIxCwbH8DkugP0K6pY6FymLeH6LKVR2rtQGQ,4152
|
174
|
+
pygpt_net/core/filesystem/editor.py,sha256=or7cT2xhZfDwjX47reyXQCt-_1c4h_xPJDddYi1auNw,4284
|
175
175
|
pygpt_net/core/filesystem/packer.py,sha256=9CmQgq-lja2QGtc0JFqh197mLLViJ7TDPc8fVWTok1w,2568
|
176
|
-
pygpt_net/core/filesystem/types.py,sha256=
|
177
|
-
pygpt_net/core/filesystem/url.py,sha256=
|
176
|
+
pygpt_net/core/filesystem/types.py,sha256=1HFubxAHYup_SLQ7SlR5EvZb3KgVyd8K8vBRUkTcqaA,3458
|
177
|
+
pygpt_net/core/filesystem/url.py,sha256=cXctpPHBY1-fwn7vFqfZi3CeP73n2nFXF-ZnePiRk7U,3236
|
178
178
|
pygpt_net/core/history.py,sha256=LnSyB3nuXZxXeaiNdjg4Q4yWhJM5hA2QN5dy_AY9Pxo,3092
|
179
|
-
pygpt_net/core/idx/__init__.py,sha256=
|
180
|
-
pygpt_net/core/idx/chat.py,sha256=
|
181
|
-
pygpt_net/core/idx/context.py,sha256=
|
182
|
-
pygpt_net/core/idx/indexing.py,sha256=
|
183
|
-
pygpt_net/core/idx/llm.py,sha256=
|
184
|
-
pygpt_net/core/idx/metadata.py,sha256=
|
179
|
+
pygpt_net/core/idx/__init__.py,sha256=n9SMNczwEBApB1qKz7sElHamEGtwC8VpEB9Qjjjr1EY,17651
|
180
|
+
pygpt_net/core/idx/chat.py,sha256=VLy2UdDXp-un7uxQGK5ylFyLPad9jHwjAN4Q48lp4RM,21286
|
181
|
+
pygpt_net/core/idx/context.py,sha256=uISNiKprcA_Qv9t0PbMj1vDWCm1eccYbk5iGS-QcfG0,3143
|
182
|
+
pygpt_net/core/idx/indexing.py,sha256=W1jCWrxg-3iEO9DVRjCXzElhYpxxjGurE6ws6S9LUtM,41945
|
183
|
+
pygpt_net/core/idx/llm.py,sha256=oTyU1t-xEtadRl8Vkzpp_IWN4bXTtbLQsnhiA_9myMQ,5159
|
184
|
+
pygpt_net/core/idx/metadata.py,sha256=69jrZ54S2wYZ3HzVooozADkbjgK2Rg4MuXTgfd6rcsI,5445
|
185
185
|
pygpt_net/core/idx/types/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
186
|
-
pygpt_net/core/idx/types/ctx.py,sha256
|
187
|
-
pygpt_net/core/idx/types/external.py,sha256=
|
188
|
-
pygpt_net/core/idx/types/files.py,sha256=
|
186
|
+
pygpt_net/core/idx/types/ctx.py,sha256=IsmwGHAPuvb39E_7TfYr66ljv6v1svNKVDw5jQH2FGk,3409
|
187
|
+
pygpt_net/core/idx/types/external.py,sha256=Pu3hoXrmomGLCL6kVLNPtlrVlO2jEOl7TM8YV0dh9yA,5130
|
188
|
+
pygpt_net/core/idx/types/files.py,sha256=FzomPoQncYx3WtWNbHTjSNuTOP8x_z7f3ypybdabf1c,4039
|
189
189
|
pygpt_net/core/idx/worker.py,sha256=20rIDSHWSB0yDixAWuDRWAXZMN_-BD1z6YGW4_JE9XE,3803
|
190
|
-
pygpt_net/core/image.py,sha256=
|
190
|
+
pygpt_net/core/image.py,sha256=rQrDze74AsggafIOTf2RfJFnCh-1ZVIFS1zHkNzjgsU,3497
|
191
191
|
pygpt_net/core/info.py,sha256=YJEDJnGVMmMp0sQ0tEDyri6Kr94CopcZF6L97w9dXDg,829
|
192
192
|
pygpt_net/core/installer.py,sha256=sFiR-I9k9lBwrKuPXRSVVHid1czfq_PtVy5jh-h5RCI,2040
|
193
|
-
pygpt_net/core/llm/__init__.py,sha256=
|
194
|
-
pygpt_net/core/locale.py,sha256=
|
195
|
-
pygpt_net/core/models.py,sha256=
|
193
|
+
pygpt_net/core/llm/__init__.py,sha256=cns_L7QeKXwq22Jj09gOG5PPnX0PxB3dagcdiXZvBFI,1291
|
194
|
+
pygpt_net/core/locale.py,sha256=KcG4lwtiI7mqtS8ojX2A2IuO0kCYGQP0-bwuBqzx_mc,5484
|
195
|
+
pygpt_net/core/models.py,sha256=NihwXhkJUQG-qUnovHCmgstcPmPLqYZ1OhanjryGiJQ,9421
|
196
196
|
pygpt_net/core/modes.py,sha256=FJ7CzGubjgw6oBGQmZ9xp_T87ym2ZxiMEdAFxEyPdSI,3056
|
197
|
-
pygpt_net/core/notepad.py,sha256=
|
197
|
+
pygpt_net/core/notepad.py,sha256=zvySWLYpBLdiyT1q2VXXRRmRYqjp531ows3ahfrLdpo,4211
|
198
198
|
pygpt_net/core/platforms.py,sha256=QygvsQadTpWW1K4_GraO38r7u82sYpgz3FI4iv_Dodw,4563
|
199
|
-
pygpt_net/core/plugins.py,sha256=
|
200
|
-
pygpt_net/core/presets.py,sha256=
|
201
|
-
pygpt_net/core/profile.py,sha256=
|
202
|
-
pygpt_net/core/prompt/__init__.py,sha256=
|
203
|
-
pygpt_net/core/prompt/custom.py,sha256=
|
204
|
-
pygpt_net/core/prompt/template.py,sha256=
|
199
|
+
pygpt_net/core/plugins.py,sha256=oGQzcOtMdOU9LmIgHMpG3fWjtswnDZ4xKUE0n8-6wDc,14911
|
200
|
+
pygpt_net/core/presets.py,sha256=4bRxkvvzifikLsTQmLE4J_sdm1ZwUV7_quRo97VgaJA,14604
|
201
|
+
pygpt_net/core/profile.py,sha256=0eUEb2J_OxIlpbBHoEXQFY8fBWKNe97w3Q-IC_bNLNg,7756
|
202
|
+
pygpt_net/core/prompt/__init__.py,sha256=WrXHUiZwIiEWDxSjX4jfPBXDomm14kUvNwVQnepbFmo,5267
|
203
|
+
pygpt_net/core/prompt/custom.py,sha256=kexQrazSm_pCmHclTkVT2YId3aNiF53kg6UCSCFZ-KE,7849
|
204
|
+
pygpt_net/core/prompt/template.py,sha256=FFZHRtDdSO-0rUwGn8yPfl_njocG1qW8CIARB7tKc-E,3287
|
205
205
|
pygpt_net/core/render/__init__.py,sha256=19xPDIYeoDn3Sf1tpcvXtxLaaKkjs0nDQ7-4GqTfeRk,489
|
206
|
-
pygpt_net/core/render/base.py,sha256=
|
206
|
+
pygpt_net/core/render/base.py,sha256=s3XtAhymSmzGhyCGr2TA_8LDRZ-Uqk4QKEAOgx_ks4w,8735
|
207
207
|
pygpt_net/core/render/markdown/__init__.py,sha256=19xPDIYeoDn3Sf1tpcvXtxLaaKkjs0nDQ7-4GqTfeRk,489
|
208
|
-
pygpt_net/core/render/markdown/body.py,sha256=
|
208
|
+
pygpt_net/core/render/markdown/body.py,sha256=OgIshkfCqMnZ-0acCHE6A9ue6irT0cR6laE-v24TS48,7238
|
209
209
|
pygpt_net/core/render/markdown/helpers.py,sha256=a7LSL_jKVfxDU5erqU8tc5shfmhE-afIcb_GUH4Io6Y,2683
|
210
210
|
pygpt_net/core/render/markdown/parser.py,sha256=4lCC_pCWmi-SUli4nnDH-FZEbBi0SnVl0FoL0ZBuNHo,5450
|
211
211
|
pygpt_net/core/render/markdown/pid.py,sha256=bRAOdL8bS-LSfOKReWK3nu-BUZ2qfNchrAsrkxRKlHU,851
|
212
|
-
pygpt_net/core/render/markdown/renderer.py,sha256=
|
212
|
+
pygpt_net/core/render/markdown/renderer.py,sha256=TaIlTVjnNCSZNvX0fkWm8YBJM5OT39wiy1jHkWQRO9U,19302
|
213
213
|
pygpt_net/core/render/plain/__init__.py,sha256=19xPDIYeoDn3Sf1tpcvXtxLaaKkjs0nDQ7-4GqTfeRk,489
|
214
|
-
pygpt_net/core/render/plain/body.py,sha256
|
214
|
+
pygpt_net/core/render/plain/body.py,sha256=i2iQ8VGzh2E3r32XHPTArAQA1Lu-Xlr1tAjJyUwBZd8,4226
|
215
215
|
pygpt_net/core/render/plain/helpers.py,sha256=qf1w6EXa6cCFcMkipOA8MzxIRFIYNVv3uXZ3MT2XwfI,1628
|
216
216
|
pygpt_net/core/render/plain/pid.py,sha256=yngcS0o1lBQ2RlRzWrs5JwqT_ThamvnWftp3cXcyiG8,770
|
217
|
-
pygpt_net/core/render/plain/renderer.py,sha256=
|
217
|
+
pygpt_net/core/render/plain/renderer.py,sha256=VDJiNrGi35IHLGo_yX9JQ37tz-5w2qm6Z-MhFs_3MyA,15267
|
218
218
|
pygpt_net/core/render/web/__init__.py,sha256=istp5dsn6EkLEP7lOBeDb8RjodUcWZqjcEvTroaTT-w,489
|
219
|
-
pygpt_net/core/render/web/body.py,sha256=
|
219
|
+
pygpt_net/core/render/web/body.py,sha256=dDLQJa1SrPm7n1n_GRpf9Rvuyt1UsfMjzDev4qR3424,29520
|
220
220
|
pygpt_net/core/render/web/helpers.py,sha256=CcKB710SiKe3xGAB4jq_1XtLxQdD-XiVIlwqiqX7pdc,3062
|
221
221
|
pygpt_net/core/render/web/parser.py,sha256=upaTzDhKyGUVEU91JfeSt-luKfx9sS1uCddi_NjStt0,9998
|
222
222
|
pygpt_net/core/render/web/pid.py,sha256=ZyYmzB01adMqY9-1Zi0QhGgrzyg-E9xC_VxqjNvTHWk,1331
|
223
|
-
pygpt_net/core/render/web/renderer.py,sha256=
|
223
|
+
pygpt_net/core/render/web/renderer.py,sha256=vVMiFxffct1iCOtMhkF28N5AOM54g80haAszmoiuDD8,39227
|
224
224
|
pygpt_net/core/render/web/syntax_highlight.py,sha256=QSLGF5cJL_Xeqej7_TYwY_5C2w9enXV_cMEuaJ3C43U,2005
|
225
|
-
pygpt_net/core/settings.py,sha256
|
226
|
-
pygpt_net/core/tabs/__init__.py,sha256=
|
227
|
-
pygpt_net/core/tabs/tab.py,sha256=
|
225
|
+
pygpt_net/core/settings.py,sha256=MeDV0kQZVOEJO9mbx4BwAe20f8RIA4dtr18tUoePcVA,7745
|
226
|
+
pygpt_net/core/tabs/__init__.py,sha256=oLg6jU9Dm14HeImG1QqJbRXQOuJlUGVzpM5uBP5H7Cw,25064
|
227
|
+
pygpt_net/core/tabs/tab.py,sha256=Nw3TTw5T0XhKagZ4mjPkyTsMiV4M2eCAWhZFsLLgDNk,2010
|
228
228
|
pygpt_net/core/text/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
229
229
|
pygpt_net/core/text/finder.py,sha256=2p8lwNgJ28skGbIKAErP7cDOdhPbemrJzqikmfgVBcc,6566
|
230
230
|
pygpt_net/core/text/utils.py,sha256=Jq38mu0-yenI8iZwYaV2I6P9BYWZiK5kifphah4k4Vk,2292
|
231
231
|
pygpt_net/core/text/web_finder.py,sha256=fLqlyQJ90d9jrfKN9A_Be_nRVsWONvOVBm_HO9tv-Gg,6487
|
232
|
-
pygpt_net/core/tokens.py,sha256=
|
232
|
+
pygpt_net/core/tokens.py,sha256=EhIAN6q1wfLKerqHuSVRx56LtFD6tSlDn_XItiVMaas,15266
|
233
233
|
pygpt_net/core/types/__init__.py,sha256=oj7Ax1ODy5YwDCb920WaRbVcdxMeLn8KQMucJGXTBe4,508
|
234
234
|
pygpt_net/core/types/mode.py,sha256=fDUJB1jqENVWw10FO9pFONT1xc13syamKNHu9UXwhNA,769
|
235
|
-
pygpt_net/core/updater/__init__.py,sha256=
|
235
|
+
pygpt_net/core/updater/__init__.py,sha256=8rGF248QHvpVDBsb8PUyJ886QAtmelaZdnIWNGUNkOg,15412
|
236
236
|
pygpt_net/core/vision/__init__.py,sha256=JX_tazW31Xesd6nPY1I1UcGmPd_V0hCG3JfMYW06oHo,728
|
237
|
-
pygpt_net/core/vision/analyzer.py,sha256=
|
238
|
-
pygpt_net/core/web.py,sha256=
|
237
|
+
pygpt_net/core/vision/analyzer.py,sha256=7FqAvwrOSCKVTxvbbRGtGpdzj-LRG57mRMNtfeji_Us,4619
|
238
|
+
pygpt_net/core/web.py,sha256=2PNvW5b45Ntebyft-fMh0viiulRt64RdBbsr74sI_lw,6574
|
239
239
|
pygpt_net/core/worker.py,sha256=fdlstSxE5RMj-DcM-y1Y5XGkf6cGkzu4g7MKcfVCr8Q,901
|
240
240
|
pygpt_net/css.qrc,sha256=KPgj4zylsUaUEVQ_I1SUrs6WnIjh3Qm853MF0L7L_5Y,175
|
241
241
|
pygpt_net/css_rc.py,sha256=i13kX7irhbYCWZ5yJbcMmnkFp_UfS4PYnvRFSPF7XXo,11349
|
242
242
|
pygpt_net/data/audio/click_off.mp3,sha256=aNiRDP1pt-Jy7ija4YKCNFBwvGWbzU460F4pZWZDS90,65201
|
243
243
|
pygpt_net/data/audio/click_on.mp3,sha256=qfdsSnthAEHVXzeyN4LlC0OvXuyW8p7stb7VXtlvZ1k,65201
|
244
244
|
pygpt_net/data/audio/ok.mp3,sha256=LTiV32pEBkpUGBkKkcOdOFB7Eyt_QoP2Nv6c5AaXftk,32256
|
245
|
-
pygpt_net/data/config/config.json,sha256=
|
246
|
-
pygpt_net/data/config/models.json,sha256=
|
247
|
-
pygpt_net/data/config/modes.json,sha256=
|
245
|
+
pygpt_net/data/config/config.json,sha256=v-izuBrp6Cd4qwg9KjAoFX1_OISn7R-QTj3W9z-78Fc,19536
|
246
|
+
pygpt_net/data/config/models.json,sha256=Fytw3LoPJltSpbsLDjt7Hqau1SbshDfRE2sdqPmB3Wo,48872
|
247
|
+
pygpt_net/data/config/modes.json,sha256=gjngzA3wDYV5uNZGTH_LNYT08pzxYCfHOHVyyzZlF4I,1923
|
248
248
|
pygpt_net/data/config/presets/agent_openai.json,sha256=vMTR-soRBiEZrpJJHuFLWyx8a3Ez_BqtqjyXgxCAM_Q,733
|
249
249
|
pygpt_net/data/config/presets/agent_openai_assistant.json,sha256=awJw9lNTGpKML6SJUShVn7lv8AXh0oic7wBeyoN7AYs,798
|
250
250
|
pygpt_net/data/config/presets/agent_planner.json,sha256=a6Rv58Bnm2STNWB0Rw_dGhnsz6Lb3J8_GwsUVZaTIXc,742
|
@@ -264,18 +264,24 @@ pygpt_net/data/config/presets/current.vision.json,sha256=x1ll5B3ROSKYQA6l27PRGXU
|
|
264
264
|
pygpt_net/data/config/presets/dalle_white_cat.json,sha256=esqUb43cqY8dAo7B5u99tRC0MBV5lmlrVLnJhTSkL8w,552
|
265
265
|
pygpt_net/data/config/presets/joke_agent.json,sha256=R6n9P7KRb0s-vZWZE7kHdlOfXAx1yYrPmUw8uLyw8OE,474
|
266
266
|
pygpt_net/data/config/presets/joke_expert.json,sha256=aFBFCY97Uba71rRq0MSeakXaOj8yuaUqekQ842YHv64,683
|
267
|
-
pygpt_net/data/config/settings.json,sha256=
|
268
|
-
pygpt_net/data/config/settings_section.json,sha256=
|
267
|
+
pygpt_net/data/config/settings.json,sha256=wCDFz7GJrvMU1Ex3LEsMOhYeOEc_NJi1QyhyAv0xZCM,46356
|
268
|
+
pygpt_net/data/config/settings_section.json,sha256=ZNXZRobAL9-Cbe7chIJZXVkUFbUvqKDxE34g3ZLS0t4,934
|
269
269
|
pygpt_net/data/css/fix_windows.css,sha256=Mks14Vg25ncbMqZJfAMStrhvZmgHF6kU75ohTWRZeI8,664
|
270
270
|
pygpt_net/data/css/markdown.css,sha256=yaoJPogZZ_ghbqP8vTXTycwVyD61Ik5_033NpzuUzC0,1122
|
271
271
|
pygpt_net/data/css/markdown.dark.css,sha256=ixAwuT69QLesZttKhO4RAy-QukplZwwfXCZsWLN9TP4,730
|
272
272
|
pygpt_net/data/css/markdown.light.css,sha256=UZdv0jtuFgJ_4bYWsDaDQ4X4AP9tVNLUHBAckC_oD8k,833
|
273
273
|
pygpt_net/data/css/style.css,sha256=JgE5Y6ULYtNDVF49jhb_PfGPJVxCFj5DNMiobPopX64,400
|
274
274
|
pygpt_net/data/css/style.dark.css,sha256=5GqBiCiTdofU3AfgbuQEezFPE3iSf_mx3dkU4kAtygQ,729
|
275
|
-
pygpt_net/data/css/style.light.css,sha256=
|
276
|
-
pygpt_net/data/css/web.css,sha256=
|
277
|
-
pygpt_net/data/css/web.dark.css,sha256=x0b3DYWv0-XeUgCSKajIpkAXAEEg-YR7GIg94pwXO7A,1319
|
278
|
-
pygpt_net/data/css/web.light.css,sha256=
|
275
|
+
pygpt_net/data/css/style.light.css,sha256=szc-rgR_UoLOTegJerDoL2Rx_l-E6BOYSe956snPE3k,1741
|
276
|
+
pygpt_net/data/css/web-blocks.css,sha256=AhgdeXhdj1rk8jYT9a7I5ftAImNHknOqJCnkzUn8dtI,6175
|
277
|
+
pygpt_net/data/css/web-blocks.dark.css,sha256=x0b3DYWv0-XeUgCSKajIpkAXAEEg-YR7GIg94pwXO7A,1319
|
278
|
+
pygpt_net/data/css/web-blocks.light.css,sha256=TEzRZsdjY3xLkMQNzQemxORzsKvHkW_c53mYFNAGnNc,1379
|
279
|
+
pygpt_net/data/css/web-chatgpt.css,sha256=ak2PR_FuSQ_FRaAy5MhwQC3cwDOKSuVCccjLeGA62Yk,6480
|
280
|
+
pygpt_net/data/css/web-chatgpt.dark.css,sha256=fFYWpV4IraSto-GyaNe8sDjmtwEoWOiQYBLmQ5G5TOM,1106
|
281
|
+
pygpt_net/data/css/web-chatgpt.light.css,sha256=XoOyh-VP1gIpCqeBpSOi6jB6zG_7BMfvwo0-t67XmP8,1196
|
282
|
+
pygpt_net/data/css/web-chatgpt_wide.css,sha256=z0aLr7TGvHoBnOk5EhDqxJi5OWkEnxab7Wl19WJhp9Y,6479
|
283
|
+
pygpt_net/data/css/web-chatgpt_wide.dark.css,sha256=fFYWpV4IraSto-GyaNe8sDjmtwEoWOiQYBLmQ5G5TOM,1106
|
284
|
+
pygpt_net/data/css/web-chatgpt_wide.light.css,sha256=XoOyh-VP1gIpCqeBpSOi6jB6zG_7BMfvwo0-t67XmP8,1196
|
279
285
|
pygpt_net/data/fonts/Lato/Lato-Black.ttf,sha256=iUTaWoYezgAYX6Fz6mUyTn1Hl6qGPG-g8D4GaAWXS2w,69484
|
280
286
|
pygpt_net/data/fonts/Lato/Lato-BlackItalic.ttf,sha256=G7asNGubFS-gk9VAMO_NBz4o5R7AB8-3bCAflv103mc,71948
|
281
287
|
pygpt_net/data/fonts/Lato/Lato-Bold.ttf,sha256=e3IFmfiu07rFuVMf7PZ1DI-n5ZO3J3ObwGkvzA9Vtng,73316
|
@@ -431,6 +437,7 @@ pygpt_net/data/icons/settings_filled.svg,sha256=VxmZNFksGQUw5V7IQSQIh4H1JFU7qBgd
|
|
431
437
|
pygpt_net/data/icons/share.svg,sha256=xtlRK3rV9UZ6w3x1szTNTO8dCxGLUYeoAmQ-edgtkQ8,792
|
432
438
|
pygpt_net/data/icons/shedule.svg,sha256=8GcEcI5JNDbFpuERKzPrPVXUbZs6YWIyz5psQEbNmB8,469
|
433
439
|
pygpt_net/data/icons/sort.svg,sha256=ikaiVv8-3e273rO1AQBIAObDn_yBFSC0NKcb5sVLnMg,189
|
440
|
+
pygpt_net/data/icons/split_screen.svg,sha256=WnlaNyLLRIDsl54slXjWk7CHjZhwNLS9GNh7JUx_jEY,336
|
434
441
|
pygpt_net/data/icons/stack.svg,sha256=rbJdCqDGgyzG97pndcE3Yt0ShW9wVGdKuU80WXOt7Sw,386
|
435
442
|
pygpt_net/data/icons/stacks.svg,sha256=LayBXZkUUMMYrLhQTHCq2EYELueoQIj4j7RI7fe4Qns,306
|
436
443
|
pygpt_net/data/icons/star.svg,sha256=j80J8XYWY4mAsGpkVPQ_FJXeU8wSSZ4GC4vh8CUDdHk,291
|
@@ -1473,14 +1480,14 @@ pygpt_net/data/js/katex/fonts/KaTeX_Typewriter-Regular.woff,sha256=4U_tArGrp86fW
|
|
1473
1480
|
pygpt_net/data/js/katex/fonts/KaTeX_Typewriter-Regular.woff2,sha256=cdUX1ngneHz6vfGGkUzDNY7aU543kxlB8rL9SiH2jAs,13568
|
1474
1481
|
pygpt_net/data/js/katex/katex.min.css,sha256=lVaKnUaQNG4pI71WHffQZVALLQF4LMZEk4nOia8U9ow,23532
|
1475
1482
|
pygpt_net/data/js/katex/katex.min.js,sha256=KLASOtKS2x8pUxWVzCDmlWJ4jhuLb0vtrgakbD6gDDo,276757
|
1476
|
-
pygpt_net/data/locale/locale.de.ini,sha256=
|
1477
|
-
pygpt_net/data/locale/locale.en.ini,sha256=
|
1478
|
-
pygpt_net/data/locale/locale.es.ini,sha256=
|
1479
|
-
pygpt_net/data/locale/locale.fr.ini,sha256=
|
1480
|
-
pygpt_net/data/locale/locale.it.ini,sha256=
|
1481
|
-
pygpt_net/data/locale/locale.pl.ini,sha256=
|
1482
|
-
pygpt_net/data/locale/locale.uk.ini,sha256=
|
1483
|
-
pygpt_net/data/locale/locale.zh.ini,sha256=
|
1483
|
+
pygpt_net/data/locale/locale.de.ini,sha256=puZzzFN3TqMA7qUi4vvv6-c79sPaYa61Wxh8us9jukk,62637
|
1484
|
+
pygpt_net/data/locale/locale.en.ini,sha256=10Oz0cwLqopdN2o3XrIYDrOR6V42cOywlBhIBOgJRas,75071
|
1485
|
+
pygpt_net/data/locale/locale.es.ini,sha256=MYESRBXtbePUavejqCQbau5Z-mPwYFENQ2Ha2-__r-8,62859
|
1486
|
+
pygpt_net/data/locale/locale.fr.ini,sha256=1Ju-WgGhWYLLmkMgPHCl_WheEU0OHF51XuVcaYyIuGM,64892
|
1487
|
+
pygpt_net/data/locale/locale.it.ini,sha256=VyPtsUf215strAz59IzFJv6f9G2uJSN4aimxIbNy_Zs,61724
|
1488
|
+
pygpt_net/data/locale/locale.pl.ini,sha256=K-tnJEwWftkPNUySBYI_ib98VINw-DRRlD2Z4fDaopw,61783
|
1489
|
+
pygpt_net/data/locale/locale.uk.ini,sha256=CqOHbj9qTSTKJISwkbTM4UVITYHcR4SAi-S3Pbv8unc,86208
|
1490
|
+
pygpt_net/data/locale/locale.zh.ini,sha256=l5t5BbZiCmyZFv3sY7jcgO9iTvp611wEmWlaMg56TEY,63526
|
1484
1491
|
pygpt_net/data/locale/plugin.agent.de.ini,sha256=BY28KpfFvgfVYJzcw2o5ScWnR4uuErIYGyc3NVHlmTw,1714
|
1485
1492
|
pygpt_net/data/locale/plugin.agent.en.ini,sha256=88LkZUpilbV9l4QDbMyIdq_K9sbWt-CQPpavEttPjJU,1489
|
1486
1493
|
pygpt_net/data/locale/plugin.agent.es.ini,sha256=bqaJQne8HPKFVtZ8Ukzo1TSqVW41yhYbGUqW3j2x1p8,1680
|
@@ -1569,14 +1576,14 @@ pygpt_net/data/locale/plugin.cmd_system.it.ini,sha256=grekD4hNTSLjeGgFcPR72BYVYc
|
|
1569
1576
|
pygpt_net/data/locale/plugin.cmd_system.pl.ini,sha256=BOPQnlUkwIW3uRLJXVLqNjKn0Yky4tfVYCKHpXl3fEs,1256
|
1570
1577
|
pygpt_net/data/locale/plugin.cmd_system.uk.ini,sha256=lEWM_ZtyKKRnxNErKrNWgXcxviORws7Nq5W4SaaFA6E,1829
|
1571
1578
|
pygpt_net/data/locale/plugin.cmd_system.zh.ini,sha256=PlrKIjsI09Iodyj9tsjkbTUgqDgGVN0B0UFqZlRXd6k,1060
|
1572
|
-
pygpt_net/data/locale/plugin.cmd_web.de.ini,sha256=
|
1573
|
-
pygpt_net/data/locale/plugin.cmd_web.en.ini,sha256=
|
1574
|
-
pygpt_net/data/locale/plugin.cmd_web.es.ini,sha256=
|
1575
|
-
pygpt_net/data/locale/plugin.cmd_web.fr.ini,sha256=
|
1576
|
-
pygpt_net/data/locale/plugin.cmd_web.it.ini,sha256=
|
1577
|
-
pygpt_net/data/locale/plugin.cmd_web.pl.ini,sha256=
|
1578
|
-
pygpt_net/data/locale/plugin.cmd_web.uk.ini,sha256=
|
1579
|
-
pygpt_net/data/locale/plugin.cmd_web.zh.ini,sha256=
|
1579
|
+
pygpt_net/data/locale/plugin.cmd_web.de.ini,sha256=mOU-KOj2XoRyOgVC7Y0KNsraUpQrFB7u3akDrbJFxxQ,5771
|
1580
|
+
pygpt_net/data/locale/plugin.cmd_web.en.ini,sha256=A5L8_r9BIlQiUoJcIw6HPt9hc_8_Lf6B7tVMoCRbvWc,5687
|
1581
|
+
pygpt_net/data/locale/plugin.cmd_web.es.ini,sha256=Oj-2xGflHavZezRgrHWrEPpazDs7t2Zye9UcZBKTuiE,5784
|
1582
|
+
pygpt_net/data/locale/plugin.cmd_web.fr.ini,sha256=Erda5lsF7TeL6Qd_hwRR3j3QHtFtJqZbBhHgH6EWRUA,5827
|
1583
|
+
pygpt_net/data/locale/plugin.cmd_web.it.ini,sha256=XLCNetBegzzds0cZvo8iutbvm4uXaYaZ0XeX3qhYslk,5712
|
1584
|
+
pygpt_net/data/locale/plugin.cmd_web.pl.ini,sha256=GO8fjI5VtD67jOSl0eFGivi7_Q8ng4onh6odCORTdSY,5890
|
1585
|
+
pygpt_net/data/locale/plugin.cmd_web.uk.ini,sha256=KsGBQBHrDACDhuM3NhB_K61ccojNO7VzeJxL6Z2OnYA,8274
|
1586
|
+
pygpt_net/data/locale/plugin.cmd_web.zh.ini,sha256=yyZQHtTvzEmcX7dkr_e6_qhkySFc8IQSJzgh-bfWbO8,4798
|
1580
1587
|
pygpt_net/data/locale/plugin.crontab.de.ini,sha256=BVK_i4lvO4IQkLJRrpnKdtXULTUUtSq3-N-whM3qLUo,874
|
1581
1588
|
pygpt_net/data/locale/plugin.crontab.en.ini,sha256=jBNoj072WAgOuUVMF__pWh3Hfi9RfNosa79kqTNv9kk,754
|
1582
1589
|
pygpt_net/data/locale/plugin.crontab.es.ini,sha256=yTJ3o8UjWpGh1H8ACf56RV6eaqpKsurK8u19AvcEp8Y,962
|
@@ -1651,13 +1658,13 @@ pygpt_net/data/win32/pygpt.aip,sha256=JeMToDAs7EHPlwvZDM66T8Sxy5h_lCC7s-2FihcVtc
|
|
1651
1658
|
pygpt_net/data/win32/qt.conf,sha256=ayV8lvbqYO_zvFKdNhq8uB9FVei5-llAcheZ2j4qfVU,45
|
1652
1659
|
pygpt_net/fonts.qrc,sha256=SSDpK9iGjH-tMAJzNZBScBACJdGwravJ5JdXrXjfDtc,8803
|
1653
1660
|
pygpt_net/fonts_rc.py,sha256=EVwgIVDq-Sudy9DYpHbzuhQ_jd9pUuQ8e3-nycPzj3A,3238283
|
1654
|
-
pygpt_net/icons.qrc,sha256=
|
1655
|
-
pygpt_net/icons_rc.py,sha256=
|
1661
|
+
pygpt_net/icons.qrc,sha256=7etxjwGtJm61IfTFIloyO7yonX06Jc1ZoSniGUFTho4,14981
|
1662
|
+
pygpt_net/icons_rc.py,sha256=FWRllE_kudX-jI4lOto-Pvf5NDCFDrpAxuQgXgldg6k,92180
|
1656
1663
|
pygpt_net/item/__init__.py,sha256=jQQgG9u_ZLsZWXustoc1uvC-abUvj4RBKPAM30-f2Kc,488
|
1657
1664
|
pygpt_net/item/assistant.py,sha256=1X34PaUgr993MfVVtBY6rGMNTSdSv6oKKPRqHBQkHuk,9587
|
1658
1665
|
pygpt_net/item/attachment.py,sha256=lsfg8qHYDON2WKoNqPxsWv1U_xp0mz9nYrQlzZqrBOQ,2689
|
1659
1666
|
pygpt_net/item/calendar_note.py,sha256=ZXTIChVaH_E7ju_CJ2LI77C4ikvd2G-c3tRo7UG9uwc,2108
|
1660
|
-
pygpt_net/item/ctx.py,sha256=
|
1667
|
+
pygpt_net/item/ctx.py,sha256=iwG6bwdzMh8L4fOIhP3Cmi-3YTbuSs_gGQwU-rksIaM,15919
|
1661
1668
|
pygpt_net/item/index.py,sha256=gDQYPlhwHF0QVGwX4TFGxHyO7pt5tqHcuyc3DPgPCA0,1681
|
1662
1669
|
pygpt_net/item/mode.py,sha256=bhX6ZOvTKsiLI6-N-7cuJ_9izlAqq6bsXF1FjufJvfw,600
|
1663
1670
|
pygpt_net/item/model.py,sha256=_VxfztYd0HBnsBsymGLGqemM2zwPjWKlEEWxy3a1cjw,7482
|
@@ -1687,20 +1694,20 @@ pygpt_net/plugin/agent/__init__.py,sha256=dRbas7WJtMdzuEquxTZXKPhYxlEVhKtR21XUSn
|
|
1687
1694
|
pygpt_net/plugin/agent/config.py,sha256=V4M0boutzxFVWTQxM8UA7HgKUR4v_Y-5dX_XfeLzzL8,9792
|
1688
1695
|
pygpt_net/plugin/audio_input/__init__.py,sha256=vGwDtsPkwCEwiz2ePnzW48Tuhr0VHEc7kQua11VE7tI,15714
|
1689
1696
|
pygpt_net/plugin/audio_input/config.py,sha256=x57IVxBapJp9rwos327T6U0jTFSPeRJ6BorqfYxJ4u0,9197
|
1690
|
-
pygpt_net/plugin/audio_input/simple.py,sha256=
|
1697
|
+
pygpt_net/plugin/audio_input/simple.py,sha256=ea89IpCk_f-byqxdjDPCb3vvZH5nirO3ceP7-U54_Sc,6561
|
1691
1698
|
pygpt_net/plugin/audio_input/worker.py,sha256=kG7r08ot1h0Jyw_UQ_sFN1rOKOkOC-ByLbCp-oZZBr4,11828
|
1692
|
-
pygpt_net/plugin/audio_output/__init__.py,sha256=
|
1699
|
+
pygpt_net/plugin/audio_output/__init__.py,sha256=Z83kfXl0PlYh_BU11eRpOZZBEckCeVqHw7IiFklDM30,7638
|
1693
1700
|
pygpt_net/plugin/audio_output/config.py,sha256=IA2K-9fQMZSwYGyi30Uh5qAlYwuqwaHo3dtDJ13vQdo,1208
|
1694
1701
|
pygpt_net/plugin/audio_output/worker.py,sha256=qi_pI9S2mXJyvN819vjI0oubewk_Fvi2AkdE2OaOVUE,3110
|
1695
1702
|
pygpt_net/plugin/base/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
1696
|
-
pygpt_net/plugin/base/config.py,sha256=
|
1697
|
-
pygpt_net/plugin/base/plugin.py,sha256=
|
1703
|
+
pygpt_net/plugin/base/config.py,sha256=q5WAcF-h3KZH4bJFYANasM7UmV1v1c43fF1EZ05iF7Y,848
|
1704
|
+
pygpt_net/plugin/base/plugin.py,sha256=e8umUs6-X4rU7-Fi0RdAURzMPJ5DKrJ3uKltAhH3xD8,13669
|
1698
1705
|
pygpt_net/plugin/base/signals.py,sha256=vy1OHZ3RESuaLDt45jZ6jy3CH6cgMFCUeuj85D3aJlk,899
|
1699
|
-
pygpt_net/plugin/base/worker.py,sha256=
|
1706
|
+
pygpt_net/plugin/base/worker.py,sha256=9rgPQN73cQ1gjR2Co5Tsq30FtN1gBcXidnZ2qKzwpVI,7757
|
1700
1707
|
pygpt_net/plugin/cmd_api/__init__.py,sha256=MUyRh6cjcJWcmK4eQCqjxKBWDyLG5zr_Yf79kWuSZas,8652
|
1701
1708
|
pygpt_net/plugin/cmd_api/config.py,sha256=i7DpON0DcJvS3QRb8yjYDOVthldf2YfQNur5HcU4FkQ,3161
|
1702
1709
|
pygpt_net/plugin/cmd_api/worker.py,sha256=eqiFn3ERTHMgs8rcvSUlEQkZObI9eEfwhspWB9XkCNI,6075
|
1703
|
-
pygpt_net/plugin/cmd_code_interpreter/__init__.py,sha256=
|
1710
|
+
pygpt_net/plugin/cmd_code_interpreter/__init__.py,sha256=qtfEW0etRqPbK1b3GV1X0YCSNrTUsX5nxF7ytcQVaGk,9609
|
1704
1711
|
pygpt_net/plugin/cmd_code_interpreter/builder.py,sha256=vz3j1iCAKBPiPR5DW6NMm6x8kTA65qeldEeGaDBMDNk,2913
|
1705
1712
|
pygpt_net/plugin/cmd_code_interpreter/config.py,sha256=fwuVdHMHteQNq4sAo6HAABQuaqazfONgYO-VkMM1a_Y,13160
|
1706
1713
|
pygpt_net/plugin/cmd_code_interpreter/docker.py,sha256=-TVrW4FzeQrPh6K6kL7jy43pNyHO1MOc88BF_FvWVho,1852
|
@@ -1708,7 +1715,7 @@ pygpt_net/plugin/cmd_code_interpreter/ipython/__init__.py,sha256=rPQNs2VsRwqR-_w
|
|
1708
1715
|
pygpt_net/plugin/cmd_code_interpreter/ipython/docker_kernel.py,sha256=HtN4_XiTBi60vy2I9VuFg2-Lxi9bmXmDHRGruOtUJtE,17165
|
1709
1716
|
pygpt_net/plugin/cmd_code_interpreter/ipython/local_kernel.py,sha256=iKDSViKSzEqCQAckQ013nqRgHccNahI6m-dsHp58YW8,6685
|
1710
1717
|
pygpt_net/plugin/cmd_code_interpreter/output.py,sha256=6MEQ_Xkpgn8banI3Pm3vnlMjKeZJmN4btOz_m0U6KOE,1989
|
1711
|
-
pygpt_net/plugin/cmd_code_interpreter/runner.py,sha256=
|
1718
|
+
pygpt_net/plugin/cmd_code_interpreter/runner.py,sha256=iTSxqRmeslWa4BK0-VXaLh5HuxhiRmLM56izmwh7P9E,20447
|
1712
1719
|
pygpt_net/plugin/cmd_code_interpreter/worker.py,sha256=U5ahn_LV7xGm_S05AfQlLM_deHEo9smQRzYAjenexvI,11397
|
1713
1720
|
pygpt_net/plugin/cmd_custom/__init__.py,sha256=L8hD1WkbRBdNsbR4iHbgSXHWszF6DxNRbgEIEi2Q_og,3911
|
1714
1721
|
pygpt_net/plugin/cmd_custom/config.py,sha256=PuD18kxtfBr2iag4WYnpqmO29ZMThktVT859KRmBnNA,2026
|
@@ -1732,10 +1739,10 @@ pygpt_net/plugin/cmd_system/docker.py,sha256=-TVrW4FzeQrPh6K6kL7jy43pNyHO1MOc88B
|
|
1732
1739
|
pygpt_net/plugin/cmd_system/output.py,sha256=6MEQ_Xkpgn8banI3Pm3vnlMjKeZJmN4btOz_m0U6KOE,1989
|
1733
1740
|
pygpt_net/plugin/cmd_system/runner.py,sha256=DfE8o0qAqt2BVpb1J70u02wYoH7dj9leE-AbTdMNYo8,7257
|
1734
1741
|
pygpt_net/plugin/cmd_system/worker.py,sha256=jC8qegP4q2zp9Na28EaMZeJX-DxQkHRndHtm4O2Wskk,3723
|
1735
|
-
pygpt_net/plugin/cmd_web/__init__.py,sha256=
|
1736
|
-
pygpt_net/plugin/cmd_web/config.py,sha256
|
1737
|
-
pygpt_net/plugin/cmd_web/websearch.py,sha256=
|
1738
|
-
pygpt_net/plugin/cmd_web/worker.py,sha256=
|
1742
|
+
pygpt_net/plugin/cmd_web/__init__.py,sha256=0zfShXk32BKzmN9wgiqeD6pVmFg0Cw_jZVjGWSUBp78,14271
|
1743
|
+
pygpt_net/plugin/cmd_web/config.py,sha256=dgWjJf4cgdyYaQoZF-B4kZDcca30IhFrZ7vJ0FH1Ohk,11108
|
1744
|
+
pygpt_net/plugin/cmd_web/websearch.py,sha256=dy5vpYWz7_DhHCo4PRFRy-RuMUiT7kNqZditpZIJaeg,14386
|
1745
|
+
pygpt_net/plugin/cmd_web/worker.py,sha256=uZ2h1wJEJQLyT3ZZgV59dhYVEPVHEPosbC5FC8EIGVk,12507
|
1739
1746
|
pygpt_net/plugin/crontab/__init__.py,sha256=re10682yuXnpFFqez5WqDLt_wxzkqiDBpLrZ1jK5i5A,6228
|
1740
1747
|
pygpt_net/plugin/crontab/config.py,sha256=9WjGHXv8y0tXXrA-sK52KGqCoRwYa6zU-cwuuGNTWRw,2620
|
1741
1748
|
pygpt_net/plugin/experts/__init__.py,sha256=QUs2IwI6CB94oqkLwg1MLA9gbZRp8seS1lAQL6q5V5w,2476
|
@@ -1802,12 +1809,12 @@ pygpt_net/provider/core/calendar/db_sqlite/storage.py,sha256=aedWMmJr-uw7waUGzoj
|
|
1802
1809
|
pygpt_net/provider/core/config/__init__.py,sha256=jQQgG9u_ZLsZWXustoc1uvC-abUvj4RBKPAM30-f2Kc,488
|
1803
1810
|
pygpt_net/provider/core/config/base.py,sha256=nLMsTIe4sSaq-NGl7YLruBAR-DjRvq0aTR3OOvA9mIc,1235
|
1804
1811
|
pygpt_net/provider/core/config/json_file.py,sha256=a4bt7RofzFrq01ppcajWzJEg4SaracFbLyDVl5EI0b8,5017
|
1805
|
-
pygpt_net/provider/core/config/patch.py,sha256=
|
1812
|
+
pygpt_net/provider/core/config/patch.py,sha256=5V-nd6lqx_xkv28TWk6DJW1o-6Yt_DypiJFLS7Pp3xY,93756
|
1806
1813
|
pygpt_net/provider/core/ctx/__init__.py,sha256=jQQgG9u_ZLsZWXustoc1uvC-abUvj4RBKPAM30-f2Kc,488
|
1807
|
-
pygpt_net/provider/core/ctx/base.py,sha256=
|
1808
|
-
pygpt_net/provider/core/ctx/db_sqlite/__init__.py,sha256=
|
1814
|
+
pygpt_net/provider/core/ctx/base.py,sha256=hF8U6wvJXZlgiRbW7tIUorn3cYAhkvn9W2iOy38Q19Q,2695
|
1815
|
+
pygpt_net/provider/core/ctx/db_sqlite/__init__.py,sha256=xJred2XHBhfsWdZTgyX3vP0p8GRADtB6Bty8k7RuJ9E,11118
|
1809
1816
|
pygpt_net/provider/core/ctx/db_sqlite/patch.py,sha256=rQO893JsyYxXdL2sFSPvcsF1KgXv13VonpY-tU284go,3101
|
1810
|
-
pygpt_net/provider/core/ctx/db_sqlite/storage.py,sha256=
|
1817
|
+
pygpt_net/provider/core/ctx/db_sqlite/storage.py,sha256=9KuqixiuuBF527Z122mdVQgwqIDPEK47yn_IeSaG_o0,41883
|
1811
1818
|
pygpt_net/provider/core/ctx/db_sqlite/utils.py,sha256=UbuGaHQ3-4uq6jNna9Q-9GydlrcmBY3_eZ_dCmGVVmg,8277
|
1812
1819
|
pygpt_net/provider/core/ctx/json_file.py,sha256=g1U4vOxfyA2jydwYvPQ9HpUIQihyBK2K4K6SQ75jEEs,11665
|
1813
1820
|
pygpt_net/provider/core/history/__init__.py,sha256=jQQgG9u_ZLsZWXustoc1uvC-abUvj4RBKPAM30-f2Kc,488
|
@@ -1848,15 +1855,15 @@ pygpt_net/provider/core/prompt/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5
|
|
1848
1855
|
pygpt_net/provider/core/prompt/base.py,sha256=QTgk5VACOTkG9cDEolN0PmtkOpHQusXOAiUOotf-jO4,1200
|
1849
1856
|
pygpt_net/provider/core/prompt/json_file.py,sha256=ILmMjfm8hwcW8X52qlR1DjCa-eZ-ENpHr7PgVh5U_94,4715
|
1850
1857
|
pygpt_net/provider/gpt/__init__.py,sha256=1nY17w9PqNCQs4gY77CkQgh4PhLZDfJ81or6czWw_4c,8614
|
1851
|
-
pygpt_net/provider/gpt/assistants.py,sha256=
|
1852
|
-
pygpt_net/provider/gpt/audio.py,sha256=
|
1853
|
-
pygpt_net/provider/gpt/chat.py,sha256=
|
1854
|
-
pygpt_net/provider/gpt/completion.py,sha256=
|
1855
|
-
pygpt_net/provider/gpt/image.py,sha256=
|
1856
|
-
pygpt_net/provider/gpt/store.py,sha256=
|
1858
|
+
pygpt_net/provider/gpt/assistants.py,sha256=HbOByh6W1X2eP0qXB4IOmvtxtbppa5RSQ2GCclbKaYE,13958
|
1859
|
+
pygpt_net/provider/gpt/audio.py,sha256=iY-ccTjb9uQUgizBd081l3qujzgSnloLZZlHTy31LAc,1933
|
1860
|
+
pygpt_net/provider/gpt/chat.py,sha256=CtgokRmkYXmflpHhfjAxlsMTXHwoyBPJNk9sTbEiQuQ,9479
|
1861
|
+
pygpt_net/provider/gpt/completion.py,sha256=fawco68ZhbMLEckDEgQK097JLRhriIsInjy5Uq1sxbA,6076
|
1862
|
+
pygpt_net/provider/gpt/image.py,sha256=SPu5UEk6PDS4h1b31jhUDMOtxoqNBxi68pLBkjysPQE,8946
|
1863
|
+
pygpt_net/provider/gpt/store.py,sha256=omGOr69gEX_Lb5Fc1vs9cxLz5k0N3GhO3kd_2NePFZM,16950
|
1857
1864
|
pygpt_net/provider/gpt/summarizer.py,sha256=449yUqxwshSqeVoO7WIZasTpYlopG1Z_1ShPE5rAnvc,2260
|
1858
1865
|
pygpt_net/provider/gpt/utils.py,sha256=O0H0EPb4lXUMfE1bFdWB56yuWLv7M5owVIGWRyDDv-E,855
|
1859
|
-
pygpt_net/provider/gpt/vision.py,sha256=
|
1866
|
+
pygpt_net/provider/gpt/vision.py,sha256=g-0nTOArdhs1p9Z0WHvo6MrusJiIeaINsItDqwQ5cZA,8814
|
1860
1867
|
pygpt_net/provider/gpt/worker/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
1861
1868
|
pygpt_net/provider/gpt/worker/assistants.py,sha256=MFUlFJ9Xe4VTJFOz5OtFHvOHkJnTr2wbeKDavCCDn00,21088
|
1862
1869
|
pygpt_net/provider/gpt/worker/importer.py,sha256=zmu55TAWbSlRrI4Vk5llVhbiR6s7dskx3iaBgTrQ_js,15467
|
@@ -1945,19 +1952,19 @@ pygpt_net/provider/web/__init__.py,sha256=lOkgAiuNUqkAl_QrIG3ZsUznIZeJYtokgzEnDB
|
|
1945
1952
|
pygpt_net/provider/web/base.py,sha256=IMv1ERudVtf2liGxywkhzqhFHBdllgLtGgE63dqD2FU,2001
|
1946
1953
|
pygpt_net/provider/web/google_custom_search.py,sha256=FxcSYZZc0hn_HAptQy6jZqXJAYOSrIAH7imFpG0PuW4,4646
|
1947
1954
|
pygpt_net/provider/web/microsoft_bing.py,sha256=O8z2gE07JkcKYZi4UzR477sG1dnws7JyVPJQlKaU-2k,4104
|
1948
|
-
pygpt_net/tools/__init__.py,sha256=
|
1955
|
+
pygpt_net/tools/__init__.py,sha256=qBIvKtDG6-weCtWEYpyXG13h2kIwRPqOFYysVdevu80,4055
|
1949
1956
|
pygpt_net/tools/audio_transcriber/__init__.py,sha256=z1g2XBPC29rO2pdbHTU94KFt1GIMPpbp4EVC4X9H66A,9787
|
1950
1957
|
pygpt_net/tools/audio_transcriber/ui/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
1951
1958
|
pygpt_net/tools/audio_transcriber/ui/dialogs.py,sha256=D-roLNGj5Zkl7_2nlahGX4fwDzanBbrtr4TLQ30-S_E,5666
|
1952
|
-
pygpt_net/tools/base.py,sha256
|
1953
|
-
pygpt_net/tools/code_interpreter/__init__.py,sha256=
|
1959
|
+
pygpt_net/tools/base.py,sha256=1wWzRqDhtQS8ozF866KHf2tcjBozw6fFoUGqgrR58zs,2593
|
1960
|
+
pygpt_net/tools/code_interpreter/__init__.py,sha256=O1zPJ8YoBKYwGRLLT7SfCkHhkcEDPxP1_ujxfrojrpo,16273
|
1954
1961
|
pygpt_net/tools/code_interpreter/ui/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
1955
|
-
pygpt_net/tools/code_interpreter/ui/dialogs.py,sha256=
|
1956
|
-
pygpt_net/tools/code_interpreter/ui/widgets.py,sha256=
|
1957
|
-
pygpt_net/tools/html_canvas/__init__.py,sha256=
|
1962
|
+
pygpt_net/tools/code_interpreter/ui/dialogs.py,sha256=Gak8WXqimvwK80XX4oO4fLsXQ9WneM7kVV8bvbYQP1M,4597
|
1963
|
+
pygpt_net/tools/code_interpreter/ui/widgets.py,sha256=mDDte07to14Azcou3VJbwi00c-jVhSd-VifQKlKtq48,12563
|
1964
|
+
pygpt_net/tools/html_canvas/__init__.py,sha256=zxewbLKqPepI6jcOi6_nlRIxxq1njJrUNc9I1MYOKJk,8802
|
1958
1965
|
pygpt_net/tools/html_canvas/ui/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
1959
|
-
pygpt_net/tools/html_canvas/ui/dialogs.py,sha256=
|
1960
|
-
pygpt_net/tools/html_canvas/ui/widgets.py,sha256=
|
1966
|
+
pygpt_net/tools/html_canvas/ui/dialogs.py,sha256=g3PpIABQuLS_Qaf8uBojVfx2O317f_V30Ah7_np64Q4,4509
|
1967
|
+
pygpt_net/tools/html_canvas/ui/widgets.py,sha256=dDytkAZBP4sdmP6sLrPvxkK_MQqYZEjk6XWrLBKpDkA,4066
|
1961
1968
|
pygpt_net/tools/image_viewer/__init__.py,sha256=mwFjdbnANaFGvgk3__xKkiExheQIJ_hyS_YctszeR9M,9079
|
1962
1969
|
pygpt_net/tools/image_viewer/ui/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
1963
1970
|
pygpt_net/tools/image_viewer/ui/dialogs.py,sha256=WrSYyIRTuaLuFPCsA8iom_9Fn8nVY8eb4-YSa9mG0EA,4989
|
@@ -1980,7 +1987,7 @@ pygpt_net/tools/text_editor/ui/widgets.py,sha256=K_yxkyMyLfBfXXZ8iOczci10tPlsBJ5
|
|
1980
1987
|
pygpt_net/ui/__init__.py,sha256=K6lWxskW5wJUl5qr2RWOImJ5-jNiUdZKuBE-cUaDdbQ,9061
|
1981
1988
|
pygpt_net/ui/base/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
1982
1989
|
pygpt_net/ui/base/config_dialog.py,sha256=92CnUmDFv74BQ6mbwhHjn3L_s7IYhJX3sChFqAD_5Vo,9255
|
1983
|
-
pygpt_net/ui/base/context_menu.py,sha256=
|
1990
|
+
pygpt_net/ui/base/context_menu.py,sha256=Mq2UPWBwc9eaHc9qVOMQEQ7a2343wsrMrMnEzYdvs6Q,3245
|
1984
1991
|
pygpt_net/ui/dialog/__init__.py,sha256=1SGZ5i2G1UnKQpyj_HYkN0t-HLepD6jU_ICw1waaxlk,488
|
1985
1992
|
pygpt_net/ui/dialog/about.py,sha256=XAuIhzI6gLyND0DZmhTYpWi37-3i1sFE1ZZIqbA7WtA,7396
|
1986
1993
|
pygpt_net/ui/dialog/applog.py,sha256=jOevcc3-DMasNyWEtNB7MrXZ8TEcxcPEUCzgGqT1VaA,5140
|
@@ -2016,12 +2023,12 @@ pygpt_net/ui/layout/chat/attachments_ctx.py,sha256=qyidK2bbTufWX-crtEhat2i3-Juqq
|
|
2016
2023
|
pygpt_net/ui/layout/chat/attachments_uploaded.py,sha256=8xKa9xwU56ESSfBN5ybwT_BUZEwgij-tjHbhhzNuV2U,5462
|
2017
2024
|
pygpt_net/ui/layout/chat/calendar.py,sha256=Vc6ztv4S_gO2ceqO-SekXyqI4V7cbf-JN_sZ5dwbl34,5812
|
2018
2025
|
pygpt_net/ui/layout/chat/explorer.py,sha256=VGWS6JhXSJV2ry1pIY1Ijme6DvYHfsnKwfrieVXHc3U,1280
|
2019
|
-
pygpt_net/ui/layout/chat/input.py,sha256=
|
2026
|
+
pygpt_net/ui/layout/chat/input.py,sha256=6mvoyAmJvZa2cegyQXz5Wld_oqiuCOq0rabsITax-LE,11144
|
2020
2027
|
pygpt_net/ui/layout/chat/markdown.py,sha256=hjYY8Da1z0IZZD086_csMcDY1wwagpuQTDZ-XfgeNgs,18656
|
2021
|
-
pygpt_net/ui/layout/chat/output.py,sha256=
|
2028
|
+
pygpt_net/ui/layout/chat/output.py,sha256=X2BpukeHzwjrWS0lloOEc-qBc5m4pm_UcbHdXZ-Jpv4,9977
|
2022
2029
|
pygpt_net/ui/layout/chat/painter.py,sha256=2yGU9GET5PpcGteGyWcHTtodKqAL7rxrqxhQ10vhodM,5471
|
2023
2030
|
pygpt_net/ui/layout/ctx/__init__.py,sha256=txpvk6XMqZjBckstlWhn4laQnHBVpcD_7kshER_ymf4,1850
|
2024
|
-
pygpt_net/ui/layout/ctx/ctx_list.py,sha256=
|
2031
|
+
pygpt_net/ui/layout/ctx/ctx_list.py,sha256=aT3Sra015MIj5gJWPTYMXrwLJXBpLPYrtkmve9QHtcM,9221
|
2025
2032
|
pygpt_net/ui/layout/ctx/search_input.py,sha256=yM_X2sxeR09JRqmkd2R4z82GRo3I1k4rOb75PgIFydE,1441
|
2026
2033
|
pygpt_net/ui/layout/ctx/video.py,sha256=RzzyGObhlXamXIJHRqA9D2o6eVVulF4kNPVf3BkURGI,1068
|
2027
2034
|
pygpt_net/ui/layout/status.py,sha256=_XqhRz0yrCWNjes-2XCAo55wPZst-F8gm6TtyBHpaSA,1954
|
@@ -2029,7 +2036,7 @@ pygpt_net/ui/layout/toolbox/__init__.py,sha256=zEZr_XDz9QbPKL0u0KMSt1b8yOG-ao1gm
|
|
2029
2036
|
pygpt_net/ui/layout/toolbox/agent.py,sha256=Hf7s6ei8l2iwInQHZpBWlOw99RiC-sK7oQIABVuF7Tg,3146
|
2030
2037
|
pygpt_net/ui/layout/toolbox/agent_llama.py,sha256=lmirw0BjUeO1PMJFZfTibd7f0kwaNXAawuM1jTwblEc,2978
|
2031
2038
|
pygpt_net/ui/layout/toolbox/assistants.py,sha256=GAZ5lKTXlK7kIUPRtpzfVCVVi9JMArJ4QzWTsJMaOYM,4605
|
2032
|
-
pygpt_net/ui/layout/toolbox/footer.py,sha256
|
2039
|
+
pygpt_net/ui/layout/toolbox/footer.py,sha256=5DPtxR3jw7TSncnwUGSMq59W1jRZTXGX2TToP9j7aCU,5509
|
2033
2040
|
pygpt_net/ui/layout/toolbox/image.py,sha256=QiMDZmsLklIEVDibq1FRraD30NJll_bn4HVpdJ1KBic,2426
|
2034
2041
|
pygpt_net/ui/layout/toolbox/indexes.py,sha256=fPRuMS96HX3VJdvbGVg0Z7N6P0LTbrYM0BYjXZOUUic,8502
|
2035
2042
|
pygpt_net/ui/layout/toolbox/mode.py,sha256=EoXDzzhh3XRE5i42sWmiOCLT_m_sUELYXfk_vpDNoSs,1772
|
@@ -2037,16 +2044,16 @@ pygpt_net/ui/layout/toolbox/model.py,sha256=9JHW8yzTHUh6TJmOAylriwlDsyrB8J9wDpJp
|
|
2037
2044
|
pygpt_net/ui/layout/toolbox/presets.py,sha256=Afb_hLddPQlTcCUcWSCPhfp7ApKdbypkDJdjNnv1oFk,5797
|
2038
2045
|
pygpt_net/ui/layout/toolbox/prompt.py,sha256=QC5CZx5TvO0-CZVXea4eIuAHFjoYcGxYrLBtny15ATI,3937
|
2039
2046
|
pygpt_net/ui/layout/toolbox/vision.py,sha256=GZY-N2z8re1LN1ntsy-3Ius8OY4DujmJpyJ1qP2ZRxs,2447
|
2040
|
-
pygpt_net/ui/main.py,sha256=
|
2047
|
+
pygpt_net/ui/main.py,sha256=mkGgB7lhrx2WDUBf9N_kbQU9lDPuJ7UdeqnHZtEPRAs,10335
|
2041
2048
|
pygpt_net/ui/menu/__init__.py,sha256=86Mcp_TYTeoCQzsqoGXS9cnj75QbJU0rBfmztUh_7k0,1784
|
2042
2049
|
pygpt_net/ui/menu/about.py,sha256=GTsBPzbjY6XXc9aXq6rFpkpzzGXdECaRTM8s2FMtupQ,5476
|
2043
2050
|
pygpt_net/ui/menu/audio.py,sha256=F6viQibvSumKA0t7lwbpOjhl-2R23XuXhl5LHgz5AWI,3079
|
2044
|
-
pygpt_net/ui/menu/config.py,sha256=
|
2045
|
-
pygpt_net/ui/menu/debug.py,sha256=
|
2051
|
+
pygpt_net/ui/menu/config.py,sha256=uQjHZtZok4dasIngzNZkV42pC54zesJ8nJhLLptPtPg,8159
|
2052
|
+
pygpt_net/ui/menu/debug.py,sha256=umXmXVUyKvmIjZBMqD1luAykX62HSj7QCponycwHqIY,6779
|
2046
2053
|
pygpt_net/ui/menu/file.py,sha256=gi4XIMs3l2-9sc5Vl6L9t_le9YP-UUVDIBr1tAREEOE,3360
|
2047
2054
|
pygpt_net/ui/menu/lang.py,sha256=99dSS3mM4KIftgXgsgZoq2bJ_DnmgqA7z7cP49kICP4,897
|
2048
2055
|
pygpt_net/ui/menu/plugins.py,sha256=z0cUg_S5dY1T4oZH3Vv0Dxx0rOuHVaiprPZj2FfBzD0,2880
|
2049
|
-
pygpt_net/ui/menu/theme.py,sha256=
|
2056
|
+
pygpt_net/ui/menu/theme.py,sha256=HVqFp39QaeGdTqvDjL5mLJfI8GS0YACbQh23lwPyrPc,3709
|
2050
2057
|
pygpt_net/ui/menu/tools.py,sha256=LfL_8NnVsh9koSXyD7KoV-qVOCF5Fru-7FPYQjh6Sfw,3794
|
2051
2058
|
pygpt_net/ui/menu/video.py,sha256=yVEHdOiIMDOYaIbe3OumFyLxcwRqmo9n82bTACfBTVc,2026
|
2052
2059
|
pygpt_net/ui/tray.py,sha256=OaFt9-Jb5YYL1_NXlZMPK2JP_9EO3KBLrSguBYYMr-8,6728
|
@@ -2094,7 +2101,7 @@ pygpt_net/ui/widget/element/checkbox.py,sha256=i7774WlRHEg8Js7XdpdMF5LGW1DrBXU4M
|
|
2094
2101
|
pygpt_net/ui/widget/element/group.py,sha256=OMCLfAcipT_iutbcvB02ZlBvfLw1Q_V3EoPMaIT51vM,3283
|
2095
2102
|
pygpt_net/ui/widget/element/labels.py,sha256=qndt5qmIekCng2pPGfUiKnjRU75FLnU6kC2WUjBBexA,3789
|
2096
2103
|
pygpt_net/ui/widget/filesystem/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
2097
|
-
pygpt_net/ui/widget/filesystem/explorer.py,sha256=
|
2104
|
+
pygpt_net/ui/widget/filesystem/explorer.py,sha256=TpWMQt3-9k4PKn07cgb0WD-8ti5HnV8NkBlkr2OKqkA,23313
|
2098
2105
|
pygpt_net/ui/widget/image/__init__.py,sha256=X9-pucLqQF9_ocDV-qNY6EQAJ_4dubGb-7TcWIzCXBo,488
|
2099
2106
|
pygpt_net/ui/widget/image/display.py,sha256=VL3nfMxg8KhyLN6RJEDUKBW4du4DFi_PW2eJL1qStks,3797
|
2100
2107
|
pygpt_net/ui/widget/lists/__init__.py,sha256=8HT4tQFqQogEEpGYTv2RplKBthlsFKcl5egnv4lzzEw,488
|
@@ -2105,7 +2112,7 @@ pygpt_net/ui/widget/lists/attachment_ctx.py,sha256=yFqzJj8D6vdNLW8v-8yX5-08kYpAu
|
|
2105
2112
|
pygpt_net/ui/widget/lists/base.py,sha256=TRMhAHI14K3zTI-5JVROzO03QeVqLuFLmILLCOm7mUs,2435
|
2106
2113
|
pygpt_net/ui/widget/lists/base_combo.py,sha256=MP_CaMh3BrB0WOjE1k4axinzVP5YjU5OrZX2lkUIEu8,3871
|
2107
2114
|
pygpt_net/ui/widget/lists/base_list_combo.py,sha256=eCfAE8kYDjX2OtxhAuFpWVe7A0lcb0FGmd_T9Bi3Qzw,3411
|
2108
|
-
pygpt_net/ui/widget/lists/context.py,sha256=
|
2115
|
+
pygpt_net/ui/widget/lists/context.py,sha256=QGJEjsct8EKIVheej9Zgyw2IClzeW_9Ocaz7xz9zwE8,19384
|
2109
2116
|
pygpt_net/ui/widget/lists/db.py,sha256=f0EIzTSzjblJtCuGoWBq6PerFt8yqFZrP2hkIoHuzbI,5861
|
2110
2117
|
pygpt_net/ui/widget/lists/debug.py,sha256=bjzshfRXFwFQ4neCY8pFMHPm9b57i5x-pHdk-sY--VI,3658
|
2111
2118
|
pygpt_net/ui/widget/lists/experts.py,sha256=4ztuhpMjU36XWYYjm67wo-zSDfvViSJk2Z48lXdJT2s,5911
|
@@ -2134,29 +2141,30 @@ pygpt_net/ui/widget/option/slider.py,sha256=nEGocCAHZ-HuyE0D0QZxs30QiUXs8B2EQRQX
|
|
2134
2141
|
pygpt_net/ui/widget/option/textarea.py,sha256=qY85DHW33vaKrnktgdJuOMaxEKjgx3mEmIHDSeXxHPw,2774
|
2135
2142
|
pygpt_net/ui/widget/option/toggle.py,sha256=ainYgH-1UKeHf_BP0yZ48luD0k4zAvZ5jMLdr_lZDIU,2166
|
2136
2143
|
pygpt_net/ui/widget/option/toggle_label.py,sha256=vVgJVqODoA_Kr2K6z0Ala46gTFbXsUPKo4khaGb_vIg,2261
|
2137
|
-
pygpt_net/ui/widget/tabs/Input.py,sha256=
|
2144
|
+
pygpt_net/ui/widget/tabs/Input.py,sha256=KhVtwm1rQG1lDWbEntm752948p367rGfFWHlg_zd-i8,1672
|
2138
2145
|
pygpt_net/ui/widget/tabs/__init__.py,sha256=8HT4tQFqQogEEpGYTv2RplKBthlsFKcl5egnv4lzzEw,488
|
2139
|
-
pygpt_net/ui/widget/tabs/body.py,sha256=
|
2140
|
-
pygpt_net/ui/widget/tabs/
|
2146
|
+
pygpt_net/ui/widget/tabs/body.py,sha256=YsPp6RUeX2xVcRlPPTrcRH3qGqAMrct4OM9MoeQZmeI,1002
|
2147
|
+
pygpt_net/ui/widget/tabs/layout.py,sha256=eXD83Y54nQusbKdx8darJYrsApaN-gAdhu5ibwRsjgs,5128
|
2148
|
+
pygpt_net/ui/widget/tabs/output.py,sha256=mgDnXx-KuFl224GtuKPe_j_nIK5Hn36AFFTlkWks-nU,12693
|
2141
2149
|
pygpt_net/ui/widget/textarea/__init__.py,sha256=8HT4tQFqQogEEpGYTv2RplKBthlsFKcl5egnv4lzzEw,488
|
2142
2150
|
pygpt_net/ui/widget/textarea/calendar_note.py,sha256=oDHUJgJVtoq_1BOqvt2xxm9ed9Wx-kerxlh_9Vrq_Hs,5098
|
2143
2151
|
pygpt_net/ui/widget/textarea/create.py,sha256=f4SrAW-2hjkKYIPrwVliSYH-LkgsQP8G13Jkq8EKhuI,1358
|
2144
2152
|
pygpt_net/ui/widget/textarea/editor.py,sha256=3YfE8NiVp5Sxk5jq7sl-6fVeCD3EB2gAFlXWbJ0rVn0,5842
|
2145
2153
|
pygpt_net/ui/widget/textarea/find.py,sha256=29-5i6VByMI45M_yz_84bXpwN-Z0alUHg7sVOXZD6So,1543
|
2146
|
-
pygpt_net/ui/widget/textarea/html.py,sha256=
|
2154
|
+
pygpt_net/ui/widget/textarea/html.py,sha256=zabqSMA5KIslpk7JmE-5-TH1M_SME_pZ85NSdzSiaqQ,10149
|
2147
2155
|
pygpt_net/ui/widget/textarea/input.py,sha256=_9OMsJ_zKo8jZDpWEPturQJ4O5mmiIY9GzvPc-4Ue3I,6456
|
2148
2156
|
pygpt_net/ui/widget/textarea/name.py,sha256=vcyAY_pJWJoS_IJqdJjhIeDSniTL9rfpt8aaobWNFVY,1132
|
2149
2157
|
pygpt_net/ui/widget/textarea/notepad.py,sha256=-3oRoSE9a1hV1OasTvlspZCeEBmApPj51JOs39saZ2I,6766
|
2150
|
-
pygpt_net/ui/widget/textarea/output.py,sha256=
|
2158
|
+
pygpt_net/ui/widget/textarea/output.py,sha256=VgX_p4ZQo5dadS0ebQhzMoTRxPH-midEFLLbStHoKqg,5227
|
2151
2159
|
pygpt_net/ui/widget/textarea/rename.py,sha256=NwuGRIeWMo7WfsMguAFpTqdOz1eTiXbxrDXGsbWF_TY,1358
|
2152
|
-
pygpt_net/ui/widget/textarea/search_input.py,sha256=
|
2160
|
+
pygpt_net/ui/widget/textarea/search_input.py,sha256=qd0Q3GQPYYMgUXDPWxIkQRm4ebmG0LF25OkG5XivDH0,1974
|
2153
2161
|
pygpt_net/ui/widget/textarea/url.py,sha256=xbNQxoM5fYI1ZWbvybQkPmNPrIq3yhtNPBOSOWftZCg,1337
|
2154
|
-
pygpt_net/ui/widget/textarea/web.py,sha256=
|
2162
|
+
pygpt_net/ui/widget/textarea/web.py,sha256=9FoL02QY6mOxtc4t4fe8X7fVDIdPn9Sb_fwsv-OQDBA,11601
|
2155
2163
|
pygpt_net/ui/widget/vision/__init__.py,sha256=8HT4tQFqQogEEpGYTv2RplKBthlsFKcl5egnv4lzzEw,488
|
2156
2164
|
pygpt_net/ui/widget/vision/camera.py,sha256=T8b5cmK6uhf_WSSxzPt_Qod8JgMnst6q8sQqRvgQiSA,2584
|
2157
2165
|
pygpt_net/utils.py,sha256=YhMvgy0wNt3roHIbbAnS-5SXOxOOIIvRRGd6FPTa6d0,6153
|
2158
|
-
pygpt_net-2.4.
|
2159
|
-
pygpt_net-2.4.
|
2160
|
-
pygpt_net-2.4.
|
2161
|
-
pygpt_net-2.4.
|
2162
|
-
pygpt_net-2.4.
|
2166
|
+
pygpt_net-2.4.41.dist-info/LICENSE,sha256=GLKQTnJOPK4dDIWfkAIM4GwOxKJXi5zcMGt7FjLR1xk,1126
|
2167
|
+
pygpt_net-2.4.41.dist-info/METADATA,sha256=c1h3Tzf-k97eoRhoxUD4YPb_UuXdklFqHVY83vs4tTM,165742
|
2168
|
+
pygpt_net-2.4.41.dist-info/WHEEL,sha256=FMvqSimYX_P7y0a7UY-_Mc83r5zkBZsCYPm7Lr0Bsq4,88
|
2169
|
+
pygpt_net-2.4.41.dist-info/entry_points.txt,sha256=qvpII6UHIt8XfokmQWnCYQrTgty8FeJ9hJvOuUFCN-8,43
|
2170
|
+
pygpt_net-2.4.41.dist-info/RECORD,,
|