pygpt-net 2.6.21__py3-none-any.whl → 2.6.22__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/app.py +3 -1
- pygpt_net/controller/__init__.py +4 -8
- pygpt_net/controller/access/voice.py +2 -2
- pygpt_net/controller/assistant/batch.py +2 -3
- pygpt_net/controller/assistant/editor.py +2 -2
- pygpt_net/controller/assistant/files.py +2 -3
- pygpt_net/controller/assistant/store.py +2 -2
- pygpt_net/controller/audio/audio.py +2 -2
- pygpt_net/controller/ctx/ctx.py +2 -1
- pygpt_net/controller/idx/indexer.py +85 -76
- pygpt_net/controller/lang/lang.py +52 -34
- pygpt_net/controller/model/importer.py +2 -2
- pygpt_net/controller/notepad/notepad.py +86 -84
- pygpt_net/controller/plugins/settings.py +3 -4
- pygpt_net/controller/settings/profile.py +105 -124
- pygpt_net/controller/theme/menu.py +154 -57
- pygpt_net/controller/theme/nodes.py +51 -44
- pygpt_net/controller/theme/theme.py +33 -9
- pygpt_net/controller/tools/tools.py +2 -2
- pygpt_net/controller/ui/tabs.py +2 -3
- pygpt_net/core/ctx/container.py +13 -12
- pygpt_net/core/ctx/output.py +7 -4
- pygpt_net/core/debug/console/console.py +2 -2
- pygpt_net/core/filesystem/actions.py +1 -2
- pygpt_net/core/render/plain/helpers.py +2 -5
- pygpt_net/core/render/plain/renderer.py +26 -30
- pygpt_net/core/render/web/body.py +1 -1
- pygpt_net/core/settings/settings.py +43 -13
- pygpt_net/core/tabs/tabs.py +20 -13
- pygpt_net/data/config/config.json +4 -4
- pygpt_net/data/config/models.json +3 -3
- pygpt_net/data/locale/locale.de.ini +4 -1
- pygpt_net/data/locale/locale.en.ini +4 -1
- pygpt_net/data/locale/locale.es.ini +4 -1
- pygpt_net/data/locale/locale.fr.ini +4 -1
- pygpt_net/data/locale/locale.it.ini +4 -1
- pygpt_net/data/locale/locale.pl.ini +5 -4
- pygpt_net/data/locale/locale.uk.ini +4 -1
- pygpt_net/data/locale/locale.zh.ini +4 -1
- pygpt_net/plugin/twitter/plugin.py +2 -2
- pygpt_net/tools/audio_transcriber/ui/dialogs.py +44 -54
- pygpt_net/tools/code_interpreter/body.py +1 -2
- pygpt_net/tools/code_interpreter/tool.py +7 -4
- pygpt_net/tools/code_interpreter/ui/html.py +1 -3
- pygpt_net/tools/code_interpreter/ui/widgets.py +2 -3
- pygpt_net/tools/html_canvas/ui/widgets.py +1 -3
- pygpt_net/tools/image_viewer/ui/dialogs.py +40 -37
- pygpt_net/tools/indexer/ui/widgets.py +2 -4
- pygpt_net/tools/media_player/tool.py +2 -5
- pygpt_net/tools/media_player/ui/widgets.py +60 -36
- pygpt_net/tools/text_editor/ui/widgets.py +18 -19
- pygpt_net/tools/translator/ui/widgets.py +39 -35
- pygpt_net/ui/base/context_menu.py +9 -4
- pygpt_net/ui/dialog/db.py +1 -3
- pygpt_net/ui/dialog/models.py +1 -3
- pygpt_net/ui/dialog/models_importer.py +2 -4
- pygpt_net/ui/dialogs.py +34 -30
- pygpt_net/ui/layout/chat/attachments.py +72 -84
- pygpt_net/ui/layout/chat/attachments_ctx.py +40 -44
- pygpt_net/ui/layout/chat/attachments_uploaded.py +36 -39
- pygpt_net/ui/layout/chat/calendar.py +100 -70
- pygpt_net/ui/layout/chat/chat.py +23 -17
- pygpt_net/ui/layout/chat/input.py +95 -118
- pygpt_net/ui/layout/chat/output.py +100 -162
- pygpt_net/ui/layout/chat/painter.py +89 -61
- pygpt_net/ui/layout/ctx/ctx_list.py +43 -52
- pygpt_net/ui/layout/status.py +23 -14
- pygpt_net/ui/layout/toolbox/agent.py +27 -38
- pygpt_net/ui/layout/toolbox/agent_llama.py +42 -45
- pygpt_net/ui/layout/toolbox/assistants.py +42 -38
- pygpt_net/ui/layout/toolbox/computer_env.py +32 -23
- pygpt_net/ui/layout/toolbox/footer.py +13 -16
- pygpt_net/ui/layout/toolbox/image.py +18 -21
- pygpt_net/ui/layout/toolbox/indexes.py +46 -89
- pygpt_net/ui/layout/toolbox/mode.py +20 -7
- pygpt_net/ui/layout/toolbox/model.py +12 -10
- pygpt_net/ui/layout/toolbox/presets.py +68 -52
- pygpt_net/ui/layout/toolbox/prompt.py +31 -58
- pygpt_net/ui/layout/toolbox/toolbox.py +25 -21
- pygpt_net/ui/layout/toolbox/vision.py +20 -22
- pygpt_net/ui/main.py +2 -4
- pygpt_net/ui/menu/about.py +64 -84
- pygpt_net/ui/menu/audio.py +87 -63
- pygpt_net/ui/menu/config.py +121 -127
- pygpt_net/ui/menu/debug.py +69 -76
- pygpt_net/ui/menu/file.py +32 -35
- pygpt_net/ui/menu/menu.py +2 -3
- pygpt_net/ui/menu/plugins.py +69 -33
- pygpt_net/ui/menu/theme.py +45 -46
- pygpt_net/ui/menu/tools.py +56 -60
- pygpt_net/ui/menu/video.py +20 -25
- pygpt_net/ui/tray.py +1 -2
- pygpt_net/ui/widget/audio/bar.py +1 -3
- pygpt_net/ui/widget/audio/input_button.py +3 -4
- pygpt_net/ui/widget/calendar/select.py +1 -2
- pygpt_net/ui/widget/dialog/base.py +12 -9
- pygpt_net/ui/widget/dialog/editor_file.py +20 -23
- pygpt_net/ui/widget/dialog/find.py +25 -24
- pygpt_net/ui/widget/dialog/profile.py +57 -53
- pygpt_net/ui/widget/draw/painter.py +62 -93
- pygpt_net/ui/widget/element/button.py +42 -30
- pygpt_net/ui/widget/element/checkbox.py +23 -15
- pygpt_net/ui/widget/element/group.py +6 -5
- pygpt_net/ui/widget/element/labels.py +1 -2
- pygpt_net/ui/widget/filesystem/explorer.py +93 -102
- pygpt_net/ui/widget/image/display.py +1 -2
- pygpt_net/ui/widget/lists/assistant.py +1 -2
- pygpt_net/ui/widget/lists/attachment.py +1 -2
- pygpt_net/ui/widget/lists/attachment_ctx.py +1 -2
- pygpt_net/ui/widget/lists/context.py +2 -4
- pygpt_net/ui/widget/lists/index.py +1 -2
- pygpt_net/ui/widget/lists/model.py +1 -2
- pygpt_net/ui/widget/lists/model_editor.py +1 -2
- pygpt_net/ui/widget/lists/model_importer.py +1 -2
- pygpt_net/ui/widget/lists/preset.py +1 -2
- pygpt_net/ui/widget/lists/preset_plugins.py +1 -2
- pygpt_net/ui/widget/lists/profile.py +1 -2
- pygpt_net/ui/widget/lists/uploaded.py +1 -2
- pygpt_net/ui/widget/option/checkbox.py +2 -4
- pygpt_net/ui/widget/option/checkbox_list.py +1 -4
- pygpt_net/ui/widget/option/cmd.py +1 -4
- pygpt_net/ui/widget/option/dictionary.py +25 -28
- pygpt_net/ui/widget/option/input.py +1 -3
- pygpt_net/ui/widget/tabs/Input.py +16 -12
- pygpt_net/ui/widget/tabs/body.py +5 -3
- pygpt_net/ui/widget/tabs/layout.py +36 -25
- pygpt_net/ui/widget/tabs/output.py +96 -74
- pygpt_net/ui/widget/textarea/calendar_note.py +1 -2
- pygpt_net/ui/widget/textarea/editor.py +41 -73
- pygpt_net/ui/widget/textarea/find.py +11 -10
- pygpt_net/ui/widget/textarea/html.py +3 -6
- pygpt_net/ui/widget/textarea/input.py +63 -64
- pygpt_net/ui/widget/textarea/notepad.py +54 -38
- pygpt_net/ui/widget/textarea/output.py +65 -54
- pygpt_net/ui/widget/textarea/search_input.py +5 -4
- pygpt_net/ui/widget/textarea/web.py +2 -4
- pygpt_net/ui/widget/vision/camera.py +2 -31
- {pygpt_net-2.6.21.dist-info → pygpt_net-2.6.22.dist-info}/METADATA +15 -151
- {pygpt_net-2.6.21.dist-info → pygpt_net-2.6.22.dist-info}/RECORD +144 -144
- {pygpt_net-2.6.21.dist-info → pygpt_net-2.6.22.dist-info}/LICENSE +0 -0
- {pygpt_net-2.6.21.dist-info → pygpt_net-2.6.22.dist-info}/WHEEL +0 -0
- {pygpt_net-2.6.21.dist-info → pygpt_net-2.6.22.dist-info}/entry_points.txt +0 -0
|
@@ -1,14 +1,14 @@
|
|
|
1
|
-
pygpt_net/CHANGELOG.txt,sha256=
|
|
1
|
+
pygpt_net/CHANGELOG.txt,sha256=yNYTdUIXpSEQsvIuMWtEQV4_GrVVxO6OXqE5lU8Idhc,101270
|
|
2
2
|
pygpt_net/LICENSE,sha256=dz9sfFgYahvu2NZbx4C1xCsVn9GVer2wXcMkFRBvqzY,1146
|
|
3
|
-
pygpt_net/__init__.py,sha256=
|
|
4
|
-
pygpt_net/app.py,sha256=
|
|
3
|
+
pygpt_net/__init__.py,sha256=kTjvdCfGuLU6PqY6L1nbUTgWduZwFtZlbnuH_f9AZ0Y,1373
|
|
4
|
+
pygpt_net/app.py,sha256=8Yz8r16FpNntiVn2pN-_qnoYHd-jVdugKP0P_MOiYSA,21133
|
|
5
5
|
pygpt_net/config.py,sha256=LCKrqQfePVNrAvH3EY_1oZx1Go754sDoyUneJ0iGWFI,16660
|
|
6
6
|
pygpt_net/container.py,sha256=NsMSHURaEC_eW8vrCNdztwqkxB7jui3yVlzUOMYvCHg,4124
|
|
7
|
-
pygpt_net/controller/__init__.py,sha256=
|
|
7
|
+
pygpt_net/controller/__init__.py,sha256=JEG5RwohoHCcqhBVoUhlwDJwsAhMbCRfl89QTtVXW9Q,6145
|
|
8
8
|
pygpt_net/controller/access/__init__.py,sha256=_XZxGy5U93JGU49GbIB9E_I26_uRV_Zbz18lcp7u23A,510
|
|
9
9
|
pygpt_net/controller/access/access.py,sha256=nPttwQf6RZHJAlXZ-3fnlcplwXxcJWp8ciq3FMsSssI,3974
|
|
10
10
|
pygpt_net/controller/access/control.py,sha256=nMGWzg60jNJMVAHIrism0_APzVMpbLAOcXG6mJuOSJ8,17332
|
|
11
|
-
pygpt_net/controller/access/voice.py,sha256=
|
|
11
|
+
pygpt_net/controller/access/voice.py,sha256=0vse-KTNJiqHr7J2r8QNrxOSTSkTM9GQ2diNfH6vWF4,15768
|
|
12
12
|
pygpt_net/controller/agent/__init__.py,sha256=GRKHllr8kuzoA2_rRHiQv27znsEcwLCiuNuU4G9xVZw,509
|
|
13
13
|
pygpt_net/controller/agent/agent.py,sha256=2MYfXbWB4z11eAo5Y3Iz8kll3RKwA156E8D_BioXUSc,6319
|
|
14
14
|
pygpt_net/controller/agent/common.py,sha256=55CHhV-dsWeNe5QvdvNoyhEYVhQNrHt_Lv-VDTuiYRc,3871
|
|
@@ -17,15 +17,15 @@ pygpt_net/controller/agent/legacy.py,sha256=iOr1SD-A83Jgr6olZQMjhMr7UiQ7iWum0YND
|
|
|
17
17
|
pygpt_net/controller/agent/llama.py,sha256=p_5gKVsgbZnARCE3GirPMBAB_lBoRy5t0g4n6nQwdIo,6009
|
|
18
18
|
pygpt_net/controller/assistant/__init__.py,sha256=y5uoiH6oZki5Q3N1vt8szAJmxXRK_98RfSSXqVbDmQ0,513
|
|
19
19
|
pygpt_net/controller/assistant/assistant.py,sha256=WntItb7HGI_psv6TN02hrmyImHZvzIP-uzrnYms7VIg,11488
|
|
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=
|
|
20
|
+
pygpt_net/controller/assistant/batch.py,sha256=mHbqBC_m3-auUlz46LRXkn9OhT2JGdsDkLZYs-OVYXc,20643
|
|
21
|
+
pygpt_net/controller/assistant/editor.py,sha256=3hqxZqtHAKil9YehBbxw8AQrkaaB6I1l11DamGdPeoQ,15473
|
|
22
|
+
pygpt_net/controller/assistant/files.py,sha256=ZOHN-LZOHOZXnW1tua9Vhx0PPZYo6Ex_Qv7u9iwvwzY,14738
|
|
23
|
+
pygpt_net/controller/assistant/store.py,sha256=Gs6ncH746UOY3pqPt3tU1sTWg1o4PZKOkfWDxyzc_Vk,15771
|
|
24
24
|
pygpt_net/controller/assistant/threads.py,sha256=eh8qJfcMFJSWfciXMpsLvRgcdaK-ilXniKoKA2TPHH0,22782
|
|
25
25
|
pygpt_net/controller/attachment/__init__.py,sha256=-5owOyszPze-YLQuTtFLQnSwEj_ftTxFwAP_3jPNpss,514
|
|
26
26
|
pygpt_net/controller/attachment/attachment.py,sha256=jO45LFBY9tbVWXPGwHenAMZUIFPdubIkoSr10aAUMHQ,20942
|
|
27
27
|
pygpt_net/controller/audio/__init__.py,sha256=Ci5ClV3DKuMCLtFqQEOr5qun--tlIzKkQlwj9ug_kI0,509
|
|
28
|
-
pygpt_net/controller/audio/audio.py,sha256=
|
|
28
|
+
pygpt_net/controller/audio/audio.py,sha256=FC6Ht6yAtFZgT7iaUzWTtQE2KOcHPK7sdVDpUvcMDtE,13679
|
|
29
29
|
pygpt_net/controller/calendar/__init__.py,sha256=AyzoNqYgxV35CMEzoi_SCSsQh4ehg_Wu_2nsK3xsbyg,512
|
|
30
30
|
pygpt_net/controller/calendar/calendar.py,sha256=s55RkCFQPFzdDoQ2zp3kohlNdpiWxdSxQtsaROeiigw,4424
|
|
31
31
|
pygpt_net/controller/calendar/note.py,sha256=AkOQ0FslaDkQbNwXBg95XhtPi3KzhKiFd374L8kTKBA,10169
|
|
@@ -62,7 +62,7 @@ pygpt_net/controller/config/field/textarea.py,sha256=Ln545IHzXBeFIjnfMIpmlUr-V3w
|
|
|
62
62
|
pygpt_net/controller/config/placeholder.py,sha256=Q4csMg6q1xpV5Yz8jb2eh33lqdvqE5AAUg7L9ProRRY,16030
|
|
63
63
|
pygpt_net/controller/ctx/__init__.py,sha256=0wH7ziC75WscBW8cxpeGBwEz5tolo_kCxGPoz2udI_E,507
|
|
64
64
|
pygpt_net/controller/ctx/common.py,sha256=1jjRfEK1S4IqnzEGg1CIF-QqSN_83NLpaVtfB610NcM,6592
|
|
65
|
-
pygpt_net/controller/ctx/ctx.py,sha256=
|
|
65
|
+
pygpt_net/controller/ctx/ctx.py,sha256=xJqgfHGXa_DmvIdGMnoiJZWENYaeGQYgtcZuUUv1CXk,39209
|
|
66
66
|
pygpt_net/controller/ctx/extra.py,sha256=WApWjnIfl3SoI0VZVbptvjjqhFPJl-dSfqW12tlBHrY,8599
|
|
67
67
|
pygpt_net/controller/ctx/summarizer.py,sha256=dO-LqIclwI7gIot1yjNo9eZ0HxakWCSoqePORgCLOk8,3072
|
|
68
68
|
pygpt_net/controller/debug/__init__.py,sha256=dOJGTICjvTtrPIEDOsxCzcOHsfu8AFPLpSKbdN0q0KI,509
|
|
@@ -79,7 +79,7 @@ pygpt_net/controller/finder/finder.py,sha256=4jl8EzTVR1Wc0dJkVwacAdvBiuF1CyOSKB4
|
|
|
79
79
|
pygpt_net/controller/idx/__init__.py,sha256=EJ6C2RaW3RO72I7exGSoCcT6ooK-cuaLimM_9C_c7MA,507
|
|
80
80
|
pygpt_net/controller/idx/common.py,sha256=QOjDy2XMUONeeaXl6ULJGO8ropzd5fphf3DidJgFkp0,2097
|
|
81
81
|
pygpt_net/controller/idx/idx.py,sha256=Xah-oob7vgVF10sIHLdw-Ds3yfw08vzbxMLsPgPfH6M,11153
|
|
82
|
-
pygpt_net/controller/idx/indexer.py,sha256=
|
|
82
|
+
pygpt_net/controller/idx/indexer.py,sha256=BeR3qVSJJXyWKxmFYM1EWZoKLvzyakZAI3KAxP-G0MU,22173
|
|
83
83
|
pygpt_net/controller/idx/settings.py,sha256=orWd8ARxIBBs3MWJLjEKcqmrXLi6DvsLitsPvPd2fXU,7916
|
|
84
84
|
pygpt_net/controller/kernel/__init__.py,sha256=XVS7uaC0VZZkpjqkbs6pqSwXdAZWLnR3dVNCHmF7XH4,510
|
|
85
85
|
pygpt_net/controller/kernel/kernel.py,sha256=6_1uliyKxeH-pLmbDqZgksbB_IJkMYLUH_8RhfPLNVg,13529
|
|
@@ -87,7 +87,7 @@ pygpt_net/controller/kernel/reply.py,sha256=ccot0hZ7_TYBD29kYlTvahhQZ-QoHsBfXlPk
|
|
|
87
87
|
pygpt_net/controller/kernel/stack.py,sha256=Bs770-OfgXIAacT_uG_GTUTsr_YGuqO1WFmWzWdnC9A,4150
|
|
88
88
|
pygpt_net/controller/lang/__init__.py,sha256=Bpr9Ygoi_vd_CnfbQiZzYAeg9KV0vqNIuMl8EWmHKaM,508
|
|
89
89
|
pygpt_net/controller/lang/custom.py,sha256=HLLRNVBd4iLKEbcpTmG2cMxLVJH092mNyi9DKnc4g0s,6090
|
|
90
|
-
pygpt_net/controller/lang/lang.py,sha256=
|
|
90
|
+
pygpt_net/controller/lang/lang.py,sha256=Qa30AX9-qBUXN6z5lTNrdCe8JfBoe7su8o8gTuM0kRk,3452
|
|
91
91
|
pygpt_net/controller/lang/mapping.py,sha256=lpbN_6FyiE0A6yyr6ub9bHeMKjJGQlAT88alLnGMYUc,22296
|
|
92
92
|
pygpt_net/controller/lang/plugins.py,sha256=Lr01C_nvrVSdfkCdy9X5hI4q8QxaBT-mF6hcMa8r3Zc,4013
|
|
93
93
|
pygpt_net/controller/lang/settings.py,sha256=8_UCg6A1hMbAOYpF_6809cWoAkrkwXmOd5PEaCfPJ2E,2587
|
|
@@ -99,10 +99,10 @@ pygpt_net/controller/mode/__init__.py,sha256=1Kcz0xHc2IW_if9S9eQozBUvIu69eLAe7T-
|
|
|
99
99
|
pygpt_net/controller/mode/mode.py,sha256=F3rERGN_sAgAqDITFYd1Nj56_4MiBIS9TwjjSPH1uEc,7437
|
|
100
100
|
pygpt_net/controller/model/__init__.py,sha256=mQXq9u269D8TD3u_44J6DFFyHKkaZplk-tRFCssBGbE,509
|
|
101
101
|
pygpt_net/controller/model/editor.py,sha256=_WDVFTrgZKM5Y8MZiWur4e5oSuRbXr-Q3PDozVtZ9fw,16384
|
|
102
|
-
pygpt_net/controller/model/importer.py,sha256=
|
|
102
|
+
pygpt_net/controller/model/importer.py,sha256=gb-ETuoqaAZpr-KX7vIuBn1vB1-cBZgm7DwYJebDcFQ,22148
|
|
103
103
|
pygpt_net/controller/model/model.py,sha256=E0VfgIwNn75pjnB_v3RnqHr6jV1Eeua8VgpreQlA8vI,9132
|
|
104
104
|
pygpt_net/controller/notepad/__init__.py,sha256=ZbMh4D6nsGuI4AwYMdegfij5ubmUznEE_UcqSSDjSPk,511
|
|
105
|
-
pygpt_net/controller/notepad/notepad.py,sha256=
|
|
105
|
+
pygpt_net/controller/notepad/notepad.py,sha256=mQgXalIMKkYTVKGkUD1mEHkHIzhTlt3QSiSb5eIhZgo,10767
|
|
106
106
|
pygpt_net/controller/painter/__init__.py,sha256=ZNZE6YcKprDPqLK5kiwtcJVvcW3H-YkerFW0PwbeQ1Y,511
|
|
107
107
|
pygpt_net/controller/painter/capture.py,sha256=X3TqnNypxT_wngkQ4ovfS9glQwoGHyM-peR5aLJQGvk,6666
|
|
108
108
|
pygpt_net/controller/painter/common.py,sha256=gTRCIcmAsgYhueUWNfEIwIJo-40YBVhoNSksOY1Oj34,6395
|
|
@@ -110,27 +110,27 @@ pygpt_net/controller/painter/painter.py,sha256=1Ekmr2a3irDkSb2wowiPXhW59rfdZOW1t
|
|
|
110
110
|
pygpt_net/controller/plugins/__init__.py,sha256=iocY37De1H2Nh7HkC7ZYvUus2xzcckslgr5a4PwtQII,511
|
|
111
111
|
pygpt_net/controller/plugins/plugins.py,sha256=DysPDatuIi8t1k-nnUfy8tLBFBberTAuL8YKNVXXZd0,14917
|
|
112
112
|
pygpt_net/controller/plugins/presets.py,sha256=8EsEwpU2MjWMQu1kcY4JTcyqqN8pjBrcxA2uW2tFU_A,11674
|
|
113
|
-
pygpt_net/controller/plugins/settings.py,sha256=
|
|
113
|
+
pygpt_net/controller/plugins/settings.py,sha256=YVHsp8u3q9WRj1jucoeKP9nGI8BHqJBaMCNybeUBeTs,6041
|
|
114
114
|
pygpt_net/controller/presets/__init__.py,sha256=Bb9_aAvGxQcKCW2fvG5CAJ6ZUwNYN3GaCf3BXB9eGfI,511
|
|
115
115
|
pygpt_net/controller/presets/editor.py,sha256=B4ukcwX2MTGH2ocAlDyAC1AV0ftQipDTciqMiC-vhiw,39307
|
|
116
116
|
pygpt_net/controller/presets/experts.py,sha256=dfPKmAPO-7gaUD2ILs3lR005ir32G5vV-Sa5TGEHwOU,5820
|
|
117
117
|
pygpt_net/controller/presets/presets.py,sha256=Tq9AIgr042ALu6hEQunBxnUZTzLdzmp4IStWprzmyjg,21918
|
|
118
118
|
pygpt_net/controller/settings/__init__.py,sha256=hn5n_Hti6byJQdQCs4Ld2EbPoZF7dHVMwqaBPscePQ8,512
|
|
119
119
|
pygpt_net/controller/settings/editor.py,sha256=gmUXjLuRoa-l-xwrqkAzEie0EWjr6eawhBvfiKX-SJ8,18748
|
|
120
|
-
pygpt_net/controller/settings/profile.py,sha256=
|
|
120
|
+
pygpt_net/controller/settings/profile.py,sha256=L9tEorMfT36aiWP9faE5jhyoU087R7u2ReOWCqXMYJc,18586
|
|
121
121
|
pygpt_net/controller/settings/settings.py,sha256=cFA4ZKjcsu8uoapWMTllUUB9DvJXVBzbxLT6InRS4zU,7768
|
|
122
122
|
pygpt_net/controller/settings/workdir.py,sha256=h1-S6xU4_naPvfOCOtonOUrSnPlhX3_y7km_oD43D0Y,22163
|
|
123
123
|
pygpt_net/controller/theme/__init__.py,sha256=-HMDkTGRa7Q6_AGomkZPVyasIOgNCqeez0Ocw_z9gMc,509
|
|
124
124
|
pygpt_net/controller/theme/common.py,sha256=z5mzpMnfkTeFstKm_uodDboAa3xj5vTpMKGCZzvkX9A,7114
|
|
125
125
|
pygpt_net/controller/theme/markdown.py,sha256=iH34dsZWyXCtIZuuRBHiAV__W0P4bY-7OuzEwehizr0,6064
|
|
126
|
-
pygpt_net/controller/theme/menu.py,sha256=
|
|
127
|
-
pygpt_net/controller/theme/nodes.py,sha256=
|
|
128
|
-
pygpt_net/controller/theme/theme.py,sha256=
|
|
126
|
+
pygpt_net/controller/theme/menu.py,sha256=17D8mW5i97D_nENKFM2EZ9KgR7RP0whiaYXLzHO2rb8,7452
|
|
127
|
+
pygpt_net/controller/theme/nodes.py,sha256=RTaxLR2aXXDrVNIpS9585xbFQlqrGI3gAO7Jng8NUHs,4871
|
|
128
|
+
pygpt_net/controller/theme/theme.py,sha256=tCVXV4LIwkiTmBFg9tcEGBMwPoD1EDtfM802sfUAaN4,8777
|
|
129
129
|
pygpt_net/controller/tools/__init__.py,sha256=ds63rOuwLEIe-SlY_sQkhWSdXS0lfVwseUiHkg2NTD4,509
|
|
130
|
-
pygpt_net/controller/tools/tools.py,sha256=
|
|
130
|
+
pygpt_net/controller/tools/tools.py,sha256=bWxdwL3J2-WHBS3MBiKsS3kTW_rQI_nS9z8-8iKifKg,2920
|
|
131
131
|
pygpt_net/controller/ui/__init__.py,sha256=cxfh2SYeEDATGAZpcYDqCxYfp4KReQ1CYehevSf89EU,507
|
|
132
132
|
pygpt_net/controller/ui/mode.py,sha256=RX2omKQ65efycMPiH2BwMXIz30Ud5pA8MOe7WrX592s,8119
|
|
133
|
-
pygpt_net/controller/ui/tabs.py,sha256=
|
|
133
|
+
pygpt_net/controller/ui/tabs.py,sha256=nBh5zQsiDatXFDmyyzvs3lsTcnpYcKD_P3IlJOj480s,28782
|
|
134
134
|
pygpt_net/controller/ui/ui.py,sha256=UvqQdDNRuO45oE18kkxt2aUEsdCyItVnhisfWkjsHl8,7693
|
|
135
135
|
pygpt_net/controller/ui/vision.py,sha256=X4AxUXbPdoWgxNUUbWTeoQuyJa_AJ3sehSSNF0mQRaM,2415
|
|
136
136
|
pygpt_net/core/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -193,10 +193,10 @@ pygpt_net/core/command/__init__.py,sha256=3pjRwUt1VGN8P5HE1i2rokNhxtiCL-drc_mmu4
|
|
|
193
193
|
pygpt_net/core/command/command.py,sha256=2KiKKH2c4m-2HbczlJvBooZ6L_Sn8zswS81p9OcghAE,23266
|
|
194
194
|
pygpt_net/core/ctx/__init__.py,sha256=hsqzIDxcwIIjF-7Zr5SkkhQV9LLmIYndQ_dohK20bg0,507
|
|
195
195
|
pygpt_net/core/ctx/bag.py,sha256=IcUrmS8KafOHwS_7ufhet6GY90fp4xmG7dS6W17gw4o,1340
|
|
196
|
-
pygpt_net/core/ctx/container.py,sha256=
|
|
196
|
+
pygpt_net/core/ctx/container.py,sha256=5nlgM_8laH0igUASILD5zIiK3YhB-BA9pTKI0jVqHeQ,4938
|
|
197
197
|
pygpt_net/core/ctx/ctx.py,sha256=vhHFTvEY-i2d2dHuLeRc2Jqav_dzJ1Beytp4w1GDqrg,41340
|
|
198
198
|
pygpt_net/core/ctx/idx.py,sha256=3Zi-48OWlU80si-Z7mVjnsc7TYATXK9g1dM0M5sXsV4,8167
|
|
199
|
-
pygpt_net/core/ctx/output.py,sha256=
|
|
199
|
+
pygpt_net/core/ctx/output.py,sha256=ecb7tgU7C9Ip5ww16M-HejScN1Btp9IlPgzQyadOCls,8829
|
|
200
200
|
pygpt_net/core/ctx/reply.py,sha256=OqC334ErAx1To01lRRFl_Zkzyd0iYUhupFSZmUOTUtc,1908
|
|
201
201
|
pygpt_net/core/db/__init__.py,sha256=6VXnRrxVi5p1Ou9UA_rd_x09upFYQSZrtoKnKbrALqY,512
|
|
202
202
|
pygpt_net/core/db/database.py,sha256=H9tCfmnFH-h6cU13bqT8bpeU5SHR6UAu9np50__pdMY,16431
|
|
@@ -207,7 +207,7 @@ pygpt_net/core/debug/assistants.py,sha256=fUYVdMsdtfWd3njirvw2lvBv7CgPHdz_9ZSDVr
|
|
|
207
207
|
pygpt_net/core/debug/attachments.py,sha256=K-iVhHUrLDxi89Hchf7lQEst21SOOd8SK8xfuCJ7kTU,1685
|
|
208
208
|
pygpt_net/core/debug/config.py,sha256=MSxRLVIWZ0VHrB4p66fyM-nfQLMi2D6enDzJLDQEb40,2305
|
|
209
209
|
pygpt_net/core/debug/console/__init__.py,sha256=HAeCpOIaHnDNzW8Y_E-2W7pvKiCwwzBcETLcEyKONhA,517
|
|
210
|
-
pygpt_net/core/debug/console/console.py,sha256=
|
|
210
|
+
pygpt_net/core/debug/console/console.py,sha256=R1_gCDl2Ti4J_lL0Ztui6BOOOD5XB08Jx9C3ql_Raf4,3655
|
|
211
211
|
pygpt_net/core/debug/context.py,sha256=pNGrYBe6bmyMCU1MJPjAXNT-4SubEu-1DFGJafXwI_U,5838
|
|
212
212
|
pygpt_net/core/debug/db.py,sha256=TQtNpCjrcFw943nae3OIyq0af_okjr-aTfFKS_QhQQk,776
|
|
213
213
|
pygpt_net/core/debug/debug.py,sha256=cTDVgm6JK6A4hqlvPNNYdFf1sMuHE8s92N7-BkVHuPw,14040
|
|
@@ -235,7 +235,7 @@ pygpt_net/core/experts/__init__.py,sha256=oscAmAEsCZclyHU7k3z5JzYqilwIO7J90e6oTa
|
|
|
235
235
|
pygpt_net/core/experts/experts.py,sha256=pzDcqUo6GEO6PW93A3D-kbT5LwOc43nVjHupGyPjKjw,18787
|
|
236
236
|
pygpt_net/core/experts/worker.py,sha256=KdVJv0ovjJ9oJ0Gj79m35JxiQbAxNPcQ5hUnqxG7Bb0,14134
|
|
237
237
|
pygpt_net/core/filesystem/__init__.py,sha256=KZLS3s_otd3Md9eDA6FN-b4CtOCWl_fplUlM9V6hTy8,514
|
|
238
|
-
pygpt_net/core/filesystem/actions.py,sha256=
|
|
238
|
+
pygpt_net/core/filesystem/actions.py,sha256=nb5kG_pS6OZPDrv8qngliFQmY671DRf5nF-vzGRPCoI,4126
|
|
239
239
|
pygpt_net/core/filesystem/editor.py,sha256=or7cT2xhZfDwjX47reyXQCt-_1c4h_xPJDddYi1auNw,4284
|
|
240
240
|
pygpt_net/core/filesystem/filesystem.py,sha256=SVA3Pot6f-SsxHWXViexUjI02EwicedKjyGTsfIef7k,15630
|
|
241
241
|
pygpt_net/core/filesystem/packer.py,sha256=9CmQgq-lja2QGtc0JFqh197mLLViJ7TDPc8fVWTok1w,2568
|
|
@@ -300,21 +300,21 @@ pygpt_net/core/render/markdown/pid.py,sha256=bRAOdL8bS-LSfOKReWK3nu-BUZ2qfNchrAs
|
|
|
300
300
|
pygpt_net/core/render/markdown/renderer.py,sha256=PER4BxQUU2zjyMq-flM83_cNcjFyJrRHx2VNa7FN5-I,19488
|
|
301
301
|
pygpt_net/core/render/plain/__init__.py,sha256=19xPDIYeoDn3Sf1tpcvXtxLaaKkjs0nDQ7-4GqTfeRk,489
|
|
302
302
|
pygpt_net/core/render/plain/body.py,sha256=qupyjx_P5DG_82qV0xf5LJ9Fr9y5w2sseVwu6dPG8xE,3866
|
|
303
|
-
pygpt_net/core/render/plain/helpers.py,sha256=
|
|
303
|
+
pygpt_net/core/render/plain/helpers.py,sha256=tWbdJZBfjnuHLAUDVYLTfv3Vt-h7XN1tg65JENDrMLw,1420
|
|
304
304
|
pygpt_net/core/render/plain/pid.py,sha256=Pz3v1tnLj-XI_9vcaVkCf9SZ2EgVs4LYV4qzelBMoOg,1119
|
|
305
|
-
pygpt_net/core/render/plain/renderer.py,sha256=
|
|
305
|
+
pygpt_net/core/render/plain/renderer.py,sha256=mb1d6UBbuOs_fotG9fZPdBk95i8n0UMCJNnF4an8E0o,15357
|
|
306
306
|
pygpt_net/core/render/web/__init__.py,sha256=istp5dsn6EkLEP7lOBeDb8RjodUcWZqjcEvTroaTT-w,489
|
|
307
|
-
pygpt_net/core/render/web/body.py,sha256=
|
|
307
|
+
pygpt_net/core/render/web/body.py,sha256=EPY9wXfPctHgHHEHUqboX5rx200HtecHfXAqum5M03s,55666
|
|
308
308
|
pygpt_net/core/render/web/helpers.py,sha256=opEjAgUz056TiHzgpvJvDyeQTJDJ7ha2MGDainbyXm0,5430
|
|
309
309
|
pygpt_net/core/render/web/parser.py,sha256=pDFc9Tf8P-jvrDilXyT1fukcQHbixHRJ9Dn9hF10Gko,12892
|
|
310
310
|
pygpt_net/core/render/web/pid.py,sha256=pXBdPb8hw_aZS2Rtz3pLBpuybpXrzoqwYAFWBal9bLE,3685
|
|
311
311
|
pygpt_net/core/render/web/renderer.py,sha256=1Pt3Ivzs7oOuwy6pvmgu_pDQYbi9lnuhECj-eQhPcns,57287
|
|
312
312
|
pygpt_net/core/render/web/syntax_highlight.py,sha256=QSLGF5cJL_Xeqej7_TYwY_5C2w9enXV_cMEuaJ3C43U,2005
|
|
313
313
|
pygpt_net/core/settings/__init__.py,sha256=GQ6_gJ2jf_Chm7ZuZLvkcvEh_sfMDVMBieeoJi2iPI4,512
|
|
314
|
-
pygpt_net/core/settings/settings.py,sha256=
|
|
314
|
+
pygpt_net/core/settings/settings.py,sha256=Ix06y-gJ3q7NJDf55XAWBBYulBLpinBqzYqsytH_9mo,8686
|
|
315
315
|
pygpt_net/core/tabs/__init__.py,sha256=reDufOWWDQsZwfvtnXrFQROEdl9nqoKI7S3bFA3D9As,508
|
|
316
316
|
pygpt_net/core/tabs/tab.py,sha256=uYnIt7_5fyr6nMXQ84NcJF_V99qKTuzUP8_NHKR2OWk,4922
|
|
317
|
-
pygpt_net/core/tabs/tabs.py,sha256=
|
|
317
|
+
pygpt_net/core/tabs/tabs.py,sha256=qppWQsyBDZTpi-D6SbPZaFOuEKzjrGn_dPLfilGvKFE,30796
|
|
318
318
|
pygpt_net/core/text/__init__.py,sha256=6aEjrckL5kWVfyxpi5mVpSPB6XWV83e_30g_V5meL1M,19
|
|
319
319
|
pygpt_net/core/text/finder.py,sha256=NBzYUE_Av3oZH8RlCrSe6EeLcHpfz79WJV_vSK0P1jI,6656
|
|
320
320
|
pygpt_net/core/text/text.py,sha256=WyQdXx4TpBGgr3XU6AhPILvhaipB57S2XtIs8FYif84,3217
|
|
@@ -346,8 +346,8 @@ pygpt_net/css_rc.py,sha256=i13kX7irhbYCWZ5yJbcMmnkFp_UfS4PYnvRFSPF7XXo,11349
|
|
|
346
346
|
pygpt_net/data/audio/click_off.mp3,sha256=aNiRDP1pt-Jy7ija4YKCNFBwvGWbzU460F4pZWZDS90,65201
|
|
347
347
|
pygpt_net/data/audio/click_on.mp3,sha256=qfdsSnthAEHVXzeyN4LlC0OvXuyW8p7stb7VXtlvZ1k,65201
|
|
348
348
|
pygpt_net/data/audio/ok.mp3,sha256=LTiV32pEBkpUGBkKkcOdOFB7Eyt_QoP2Nv6c5AaXftk,32256
|
|
349
|
-
pygpt_net/data/config/config.json,sha256=
|
|
350
|
-
pygpt_net/data/config/models.json,sha256=
|
|
349
|
+
pygpt_net/data/config/config.json,sha256=PZ5pbWUg9TeBTdWtItndipLM6yzSCWQaiY8HB0Z_L-4,24922
|
|
350
|
+
pygpt_net/data/config/models.json,sha256=Vd3EhU5vEpo_jymIx5x_yHoPo7fcB8t5dyFcWit1smw,110162
|
|
351
351
|
pygpt_net/data/config/modes.json,sha256=M882iiqX_R2sNQl9cqZ3k-uneEvO9wpARtHRMLx_LHw,2265
|
|
352
352
|
pygpt_net/data/config/presets/agent_code_act.json,sha256=GYHqhxtKFLUCvRI3IJAJ7Qe1k8yD9wGGNwManldWzlI,754
|
|
353
353
|
pygpt_net/data/config/presets/agent_openai.json,sha256=bpDJgLRey_effQkzFRoOEGd4aHUrmzeODSDdNzrf62I,730
|
|
@@ -1606,14 +1606,14 @@ pygpt_net/data/js/katex/fonts/KaTeX_Typewriter-Regular.woff2,sha256=cdUX1ngneHz6
|
|
|
1606
1606
|
pygpt_net/data/js/katex/katex.min.css,sha256=lVaKnUaQNG4pI71WHffQZVALLQF4LMZEk4nOia8U9ow,23532
|
|
1607
1607
|
pygpt_net/data/js/katex/katex.min.js,sha256=KLASOtKS2x8pUxWVzCDmlWJ4jhuLb0vtrgakbD6gDDo,276757
|
|
1608
1608
|
pygpt_net/data/languages.csv,sha256=fvtER6vnTXFHQslCh-e0xCfZDQ-ijgW4GYpOJG4U7LY,8289
|
|
1609
|
-
pygpt_net/data/locale/locale.de.ini,sha256=
|
|
1610
|
-
pygpt_net/data/locale/locale.en.ini,sha256=
|
|
1611
|
-
pygpt_net/data/locale/locale.es.ini,sha256=
|
|
1612
|
-
pygpt_net/data/locale/locale.fr.ini,sha256=
|
|
1613
|
-
pygpt_net/data/locale/locale.it.ini,sha256
|
|
1614
|
-
pygpt_net/data/locale/locale.pl.ini,sha256=
|
|
1615
|
-
pygpt_net/data/locale/locale.uk.ini,sha256=
|
|
1616
|
-
pygpt_net/data/locale/locale.zh.ini,sha256=
|
|
1609
|
+
pygpt_net/data/locale/locale.de.ini,sha256=JLdfU03NpmBCVxdHT8zXGUl_fUe8_YIBK_JS7BBmAXY,100272
|
|
1610
|
+
pygpt_net/data/locale/locale.en.ini,sha256=tkyoORybvPm-A21OCSxMPRk7eEBrcC1ZoDxC6PeZ--k,90846
|
|
1611
|
+
pygpt_net/data/locale/locale.es.ini,sha256=qEGrmADj1Y2aTLFALouiEyfpaPiSGq8ZnhCAh7DZMcg,100844
|
|
1612
|
+
pygpt_net/data/locale/locale.fr.ini,sha256=XHG5_opqtzG8bkNAbgK3O6dDTiH8g24VArDDMMUEXsY,103589
|
|
1613
|
+
pygpt_net/data/locale/locale.it.ini,sha256=ieqZw7w6tc_TKWDBd_zvtZOZIeMck8Ps2exKqOyZU8c,98652
|
|
1614
|
+
pygpt_net/data/locale/locale.pl.ini,sha256=09qa3zCAnMIejV9EgRkJY3CaSqEskSsP4gaIXfUsM_w,98360
|
|
1615
|
+
pygpt_net/data/locale/locale.uk.ini,sha256=6k_2BhzdBvJo4KhXFjFOmFBKtL7j2tu4-MxVZ5GXric,137201
|
|
1616
|
+
pygpt_net/data/locale/locale.zh.ini,sha256=KWj1bWjolPFkBumvfkvCMxkZSFtcq1uvOQOMpuMLMqw,87818
|
|
1617
1617
|
pygpt_net/data/locale/plugin.agent.de.ini,sha256=BY28KpfFvgfVYJzcw2o5ScWnR4uuErIYGyc3NVHlmTw,1714
|
|
1618
1618
|
pygpt_net/data/locale/plugin.agent.en.ini,sha256=HwOWCI7e8uzlIgyRWRVyr1x6Xzs8Xjv5pfEc7jfLOo4,1728
|
|
1619
1619
|
pygpt_net/data/locale/plugin.agent.es.ini,sha256=bqaJQne8HPKFVtZ8Ukzo1TSqVW41yhYbGUqW3j2x1p8,1680
|
|
@@ -1951,7 +1951,7 @@ pygpt_net/plugin/telegram/plugin.py,sha256=1vjdbJYuZPx_iSvSqZwR0RqTbOVk6_L4gaD8k
|
|
|
1951
1951
|
pygpt_net/plugin/telegram/worker.py,sha256=pVUraWkqBaEEZPU9lOkNXzn8ARbxmN7_hSmj7eFmgNM,24484
|
|
1952
1952
|
pygpt_net/plugin/twitter/__init__.py,sha256=tvF6upS93L61NRbkQmscSJXM7ZzPlmVj16mVHUM-NHU,510
|
|
1953
1953
|
pygpt_net/plugin/twitter/config.py,sha256=MgJkk-OXTRXR1jEeDknlg5wa0k5cFnUd87MTMICbkFk,20792
|
|
1954
|
-
pygpt_net/plugin/twitter/plugin.py,sha256=
|
|
1954
|
+
pygpt_net/plugin/twitter/plugin.py,sha256=1TDSeCab-O51PDdUVtywS4X_bG-2PsUb1ysqyODB9pI,3520
|
|
1955
1955
|
pygpt_net/plugin/twitter/worker.py,sha256=1VKElMj6HylICK4pAU5ezZ04kIVp7i5WLxSnQs5Lenw,38645
|
|
1956
1956
|
pygpt_net/plugin/voice_control/__init__.py,sha256=qIXiIKpGz5-DvKXXKouwLowJkNqfdOgoJUKxweBhUMQ,510
|
|
1957
1957
|
pygpt_net/plugin/voice_control/config.py,sha256=iSjLR8bsYwMJJOEz3AShIQXqlCPNWNJ8-7nnRfrAOuE,1314
|
|
@@ -2211,24 +2211,24 @@ pygpt_net/tools/__init__.py,sha256=MdlCuI4chc1hFf402oIFfEebiksgtPT_95ddpYSYTVM,4
|
|
|
2211
2211
|
pygpt_net/tools/audio_transcriber/__init__.py,sha256=BQLr8Kg670xPAyv_qoRA_EjWq5WZclqoc4OpTk5V11k,508
|
|
2212
2212
|
pygpt_net/tools/audio_transcriber/tool.py,sha256=Qzyd3lnzSjm40LoF9Isz-Yvc-Ex3WmEUFi5H0mjcTfo,9836
|
|
2213
2213
|
pygpt_net/tools/audio_transcriber/ui/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
2214
|
-
pygpt_net/tools/audio_transcriber/ui/dialogs.py,sha256=
|
|
2214
|
+
pygpt_net/tools/audio_transcriber/ui/dialogs.py,sha256=R0ei3-YeoKCDayajTdLeyVapgP-3jYZlxur1bQThe4M,5217
|
|
2215
2215
|
pygpt_net/tools/base.py,sha256=KxTSYGIG8eQyL_loyAWP2loPJni0TOg_wwvlq5tLYrg,3833
|
|
2216
2216
|
pygpt_net/tools/code_interpreter/__init__.py,sha256=7FScUoJWFBsF6Rbmt14zb2YEERcywW_xAeX0GTAHhX4,508
|
|
2217
|
-
pygpt_net/tools/code_interpreter/body.py,sha256=
|
|
2218
|
-
pygpt_net/tools/code_interpreter/tool.py,sha256=
|
|
2217
|
+
pygpt_net/tools/code_interpreter/body.py,sha256=jDEHJuAI8U1RjV0Dhm5CcL4Y8b09UNDw8dVwmQ5kfHg,14010
|
|
2218
|
+
pygpt_net/tools/code_interpreter/tool.py,sha256=XH3_ZUWp1tp21rGlj6-ULI723DXfY1xs7dN9Ye03Pm8,24185
|
|
2219
2219
|
pygpt_net/tools/code_interpreter/ui/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
2220
2220
|
pygpt_net/tools/code_interpreter/ui/dialogs.py,sha256=iYCtmn_gPMKhvy8Ygga_oYPVg80zP3-10SZgv0O6xYQ,5429
|
|
2221
|
-
pygpt_net/tools/code_interpreter/ui/html.py,sha256=
|
|
2222
|
-
pygpt_net/tools/code_interpreter/ui/widgets.py,sha256=
|
|
2221
|
+
pygpt_net/tools/code_interpreter/ui/html.py,sha256=Ql0tXEIsjlfXbRznoRY8F_6XTK-RpkTLMfaAkIv_9rc,23551
|
|
2222
|
+
pygpt_net/tools/code_interpreter/ui/widgets.py,sha256=77bUzSme7fJIALivC0EXLWhZhx8BwiLkKywrUQ1J3LM,18117
|
|
2223
2223
|
pygpt_net/tools/html_canvas/__init__.py,sha256=7FScUoJWFBsF6Rbmt14zb2YEERcywW_xAeX0GTAHhX4,508
|
|
2224
2224
|
pygpt_net/tools/html_canvas/tool.py,sha256=F0rozMO1rva7ABr1hXhOBCW9XWq9hL8RjTWsI6cp-wc,9875
|
|
2225
2225
|
pygpt_net/tools/html_canvas/ui/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
2226
2226
|
pygpt_net/tools/html_canvas/ui/dialogs.py,sha256=zw4XusCoZ-52ks8ogcasEVAxDHQwSHh88FtW2rk4HP0,4825
|
|
2227
|
-
pygpt_net/tools/html_canvas/ui/widgets.py,sha256=
|
|
2227
|
+
pygpt_net/tools/html_canvas/ui/widgets.py,sha256=8SmIQ0M3XUy-4u-MIAqerBcMN5VAaq6QhU7RjewkYaQ,5168
|
|
2228
2228
|
pygpt_net/tools/image_viewer/__init__.py,sha256=BQLr8Kg670xPAyv_qoRA_EjWq5WZclqoc4OpTk5V11k,508
|
|
2229
2229
|
pygpt_net/tools/image_viewer/tool.py,sha256=8cIcEG9R0HGUXwikD8XOxQHqt0QZkgB4LzpiQ4GAWwU,9269
|
|
2230
2230
|
pygpt_net/tools/image_viewer/ui/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
2231
|
-
pygpt_net/tools/image_viewer/ui/dialogs.py,sha256=
|
|
2231
|
+
pygpt_net/tools/image_viewer/ui/dialogs.py,sha256=qBBoXUrqS8hU4ldiSDSBwnhUbup5K4uEKqfL5Jh6-Ms,5369
|
|
2232
2232
|
pygpt_net/tools/indexer/__init__.py,sha256=0rE5HM0os0k0_LpMdGt7sozEQfckN7qm_b3KEwMb1wc,508
|
|
2233
2233
|
pygpt_net/tools/indexer/tool.py,sha256=VZF1ZB7qbqnd_o5dv9AHmAD4CzsaesLrBEyryOakcGU,17277
|
|
2234
2234
|
pygpt_net/tools/indexer/ui/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -2237,26 +2237,26 @@ pygpt_net/tools/indexer/ui/ctx.py,sha256=HkJpBOL0MoY30dZXpsx6Em_hVo8TETxd5gyXxOt
|
|
|
2237
2237
|
pygpt_net/tools/indexer/ui/dialogs.py,sha256=u59bNO9lwBHSu3-jVK2RUPHYNRd99Wo3VgKcLm4cszA,7985
|
|
2238
2238
|
pygpt_net/tools/indexer/ui/files.py,sha256=Y9xV6DO3k5F1nGfO-IGHN3jY6QrihUyUgj53ino04aQ,4034
|
|
2239
2239
|
pygpt_net/tools/indexer/ui/web.py,sha256=dVCtcgPyv6-lEnyLKOAW5zw7IJeSNHwnNskVpMGa-go,8668
|
|
2240
|
-
pygpt_net/tools/indexer/ui/widgets.py,sha256=
|
|
2240
|
+
pygpt_net/tools/indexer/ui/widgets.py,sha256=bjcbecsw5zrSLFWAe6_kUBPYVBr3LpvHk-_4twqco9k,3537
|
|
2241
2241
|
pygpt_net/tools/media_player/__init__.py,sha256=BQLr8Kg670xPAyv_qoRA_EjWq5WZclqoc4OpTk5V11k,508
|
|
2242
|
-
pygpt_net/tools/media_player/tool.py,sha256=
|
|
2242
|
+
pygpt_net/tools/media_player/tool.py,sha256=LHo6VAxQ4DR33TddAX3i0ryCF1hEhrPM4UtAvui5_cc,6288
|
|
2243
2243
|
pygpt_net/tools/media_player/ui/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
2244
2244
|
pygpt_net/tools/media_player/ui/dialogs.py,sha256=T1Zu_Fpm_KeszS203BRXW2WJmDVN4tGc9wEVDhHOyzs,3590
|
|
2245
|
-
pygpt_net/tools/media_player/ui/widgets.py,sha256=
|
|
2245
|
+
pygpt_net/tools/media_player/ui/widgets.py,sha256=DFEUwrQpxc_cw2k9Tpj_kz0ESZgjhA6OiZJmo5T_iFc,17634
|
|
2246
2246
|
pygpt_net/tools/text_editor/__init__.py,sha256=BQLr8Kg670xPAyv_qoRA_EjWq5WZclqoc4OpTk5V11k,508
|
|
2247
2247
|
pygpt_net/tools/text_editor/tool.py,sha256=NXgKl9XkA6ecRSn3q154KLsu4FHCz4XL9YmjQ4N08hE,8452
|
|
2248
2248
|
pygpt_net/tools/text_editor/ui/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
2249
2249
|
pygpt_net/tools/text_editor/ui/dialogs.py,sha256=lOgogExJgnLzq0KdbcHli-HslEZ2uivCI1dFFzEpsRA,2906
|
|
2250
|
-
pygpt_net/tools/text_editor/ui/widgets.py,sha256=
|
|
2250
|
+
pygpt_net/tools/text_editor/ui/widgets.py,sha256=bvg3uJgWf5d3Vo_j5dMcoUchrvEA9e9uJK5aAy9-ZJc,2758
|
|
2251
2251
|
pygpt_net/tools/translator/__init__.py,sha256=R4-y_danRZamZRwXctX1b0tI9oz4qM_xcVthXNyYjcU,508
|
|
2252
2252
|
pygpt_net/tools/translator/tool.py,sha256=3QIv50Bc7TgrkVQ-7qcuxIERAJz5e4Vy22Uj8K79_a0,14527
|
|
2253
2253
|
pygpt_net/tools/translator/ui/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
2254
2254
|
pygpt_net/tools/translator/ui/dialogs.py,sha256=qC-dCNtOLbOe-h586iBmsBTlv4KlUoxCkPqYOq8336k,4137
|
|
2255
|
-
pygpt_net/tools/translator/ui/widgets.py,sha256=
|
|
2255
|
+
pygpt_net/tools/translator/ui/widgets.py,sha256=6gEVlMd96tHOwKKDV6eoMoItTOcr2Bd_ig5Y2KihZ5o,17735
|
|
2256
2256
|
pygpt_net/ui/__init__.py,sha256=OoyVKGWLxPSlwTnEJ-fpwe5EH1GLdRGbTaNHwDoJ7PI,9313
|
|
2257
2257
|
pygpt_net/ui/base/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
2258
2258
|
pygpt_net/ui/base/config_dialog.py,sha256=uDD7YOf1vyP8YKyakE8SY6X7i12RFvNDdqyrAoG_BWs,9071
|
|
2259
|
-
pygpt_net/ui/base/context_menu.py,sha256=
|
|
2259
|
+
pygpt_net/ui/base/context_menu.py,sha256=VAs_HUMoDkDZh0HAM7X8DZE7mwUZ4Q5aU_BMxPnXrvI,4396
|
|
2260
2260
|
pygpt_net/ui/base/flow_layout.py,sha256=t6TeNSdmScs0NQKlIdzbFmR6oLogekzJGKPOYJUvXls,2803
|
|
2261
2261
|
pygpt_net/ui/dialog/__init__.py,sha256=1SGZ5i2G1UnKQpyj_HYkN0t-HLepD6jU_ICw1waaxlk,488
|
|
2262
2262
|
pygpt_net/ui/dialog/about.py,sha256=6OCjEWJD10Fwz4ajx6qLh7D4oR0TsgDroczhneyGKEw,7072
|
|
@@ -2265,7 +2265,7 @@ pygpt_net/ui/dialog/assistant.py,sha256=WJJvv9vSTd8sJNiWW5sVQb5YqpIvWgQH1eMTHvHf
|
|
|
2265
2265
|
pygpt_net/ui/dialog/assistant_store.py,sha256=F1fE3L2AnWT0IwRKeE7Z4eSXOIQrUY0t5jQ5ZORSfB8,22825
|
|
2266
2266
|
pygpt_net/ui/dialog/changelog.py,sha256=2ioUGq2gC1ANN5M6SFsnfIGMVbUt90IQ9aw9n7GqtMQ,1765
|
|
2267
2267
|
pygpt_net/ui/dialog/create.py,sha256=YEsroy-uimsP29RPcewkOV5vytNEZoUFa21G3WreIHM,973
|
|
2268
|
-
pygpt_net/ui/dialog/db.py,sha256=
|
|
2268
|
+
pygpt_net/ui/dialog/db.py,sha256=N3Fn1ppeqrdLGGVgKbtLEUWfrY1IwvdtlVA5owMiNdU,18493
|
|
2269
2269
|
pygpt_net/ui/dialog/debug.py,sha256=RTDFJ8O0WKlwRNi5ffgStevS82EHSvVv6kMzE_6L3gY,1864
|
|
2270
2270
|
pygpt_net/ui/dialog/dictionary.py,sha256=QHq40ptEluFZFEy4xfDlzlHZCxK3qGLNYfWH7QcFYaE,5835
|
|
2271
2271
|
pygpt_net/ui/dialog/editor.py,sha256=3KfRv-Ni00yVwHWtPmNauRkgURAstkpjgpOJTy1CF5A,2926
|
|
@@ -2273,8 +2273,8 @@ pygpt_net/ui/dialog/find.py,sha256=8VAcSRFkCLu4Yum6LwHgHg_8Ogn_ytco0ShaJLIJDXk,9
|
|
|
2273
2273
|
pygpt_net/ui/dialog/image.py,sha256=qPLkc5NjJsrc6PpM4JBqKXaPQDCDCD0ALdk_Dp-pS-k,2538
|
|
2274
2274
|
pygpt_net/ui/dialog/license.py,sha256=15Qrk_vnybnI3CAtvOHYJy8cSAkIG7fPG-HYqmSdctQ,2272
|
|
2275
2275
|
pygpt_net/ui/dialog/logger.py,sha256=AGszZzKFL8gHtoVl96nxeRapebubEQrzB1fpG6QJRcc,2287
|
|
2276
|
-
pygpt_net/ui/dialog/models.py,sha256=
|
|
2277
|
-
pygpt_net/ui/dialog/models_importer.py,sha256=
|
|
2276
|
+
pygpt_net/ui/dialog/models.py,sha256=jd-0h9YwWsZZdwEnfXo_mRbjVWcPcZaPm-W4t-qM5pI,13764
|
|
2277
|
+
pygpt_net/ui/dialog/models_importer.py,sha256=14kxf7KkOdTP-tcgTN5OphNZajlivDPTDKBosebuyog,4505
|
|
2278
2278
|
pygpt_net/ui/dialog/plugins.py,sha256=--I4Jszj1fygXHHPgHqQuJdHEURFJwfz6De8YAICi-E,21191
|
|
2279
2279
|
pygpt_net/ui/dialog/preset.py,sha256=qSckSNtx57Ij4im1sj1XnAy7QhmmHSOQ1qtyLnfChjk,17864
|
|
2280
2280
|
pygpt_net/ui/dialog/preset_plugins.py,sha256=ynqc0aWjU7MTL4jxcVKaRH_tC9uzeWJCUzUjI74ADb0,3796
|
|
@@ -2286,76 +2286,76 @@ pygpt_net/ui/dialog/start.py,sha256=FPka-hcBepFtjEFKnkbUWH017xVZ7TBhNUA7wkY0E2M,
|
|
|
2286
2286
|
pygpt_net/ui/dialog/update.py,sha256=wJDe2D55XqlAd30vHLeWAuGmgaElwhTd82GIxzvqf4w,842
|
|
2287
2287
|
pygpt_net/ui/dialog/url.py,sha256=SziMn4Wzyld7Os6b4QdaYAxjwcIWfydmorhTSG7WeUo,949
|
|
2288
2288
|
pygpt_net/ui/dialog/workdir.py,sha256=byvyoe3FtQZzo73KTdezOEmufnym31x3CsfllybK1oA,4474
|
|
2289
|
-
pygpt_net/ui/dialogs.py,sha256=
|
|
2289
|
+
pygpt_net/ui/dialogs.py,sha256=649VWC3tiKZXTKmOlcNGC1rZuFgwy65gY6lRGh6BEMw,9482
|
|
2290
2290
|
pygpt_net/ui/layout/__init__.py,sha256=8HT4tQFqQogEEpGYTv2RplKBthlsFKcl5egnv4lzzEw,488
|
|
2291
2291
|
pygpt_net/ui/layout/chat/__init__.py,sha256=WgwrBeowDL94ACYqFkzXoOvqceHgsBNGod4exeaAuck,508
|
|
2292
|
-
pygpt_net/ui/layout/chat/attachments.py,sha256=
|
|
2293
|
-
pygpt_net/ui/layout/chat/attachments_ctx.py,sha256=
|
|
2294
|
-
pygpt_net/ui/layout/chat/attachments_uploaded.py,sha256=
|
|
2295
|
-
pygpt_net/ui/layout/chat/calendar.py,sha256=
|
|
2296
|
-
pygpt_net/ui/layout/chat/chat.py,sha256=
|
|
2292
|
+
pygpt_net/ui/layout/chat/attachments.py,sha256=yjW3RAQrp-h-0yWslKoaaI1q0dnkka82YBsWVyZXsUY,6501
|
|
2293
|
+
pygpt_net/ui/layout/chat/attachments_ctx.py,sha256=JOQldJFWPMIvV-QMkw9Zqb6N-1utwZDgeQSEsvQ9JTM,6809
|
|
2294
|
+
pygpt_net/ui/layout/chat/attachments_uploaded.py,sha256=MZA0aFOm9iKbYc6NrM7Ivg2i_AovAL2x8SM4IeyUtNI,5207
|
|
2295
|
+
pygpt_net/ui/layout/chat/calendar.py,sha256=hE9Gl0h5kPXe0OUkimRfys2aFti0Y4wzKxhh1gyGnjs,6578
|
|
2296
|
+
pygpt_net/ui/layout/chat/chat.py,sha256=qB4RwT9N0eCtrbyasgO0Cxvcm2nXACck6MflGAoQqK0,2221
|
|
2297
2297
|
pygpt_net/ui/layout/chat/explorer.py,sha256=Jg6aK5qTCTNgb4EXr-zeZXSexARQSzn4W8unqV1MGe8,1358
|
|
2298
|
-
pygpt_net/ui/layout/chat/input.py,sha256=
|
|
2298
|
+
pygpt_net/ui/layout/chat/input.py,sha256=UP5DPF9vIaKuIy-JpRfee0R4VHoQwjAR3f8Aqr4Dy2g,9810
|
|
2299
2299
|
pygpt_net/ui/layout/chat/markdown.py,sha256=hjYY8Da1z0IZZD086_csMcDY1wwagpuQTDZ-XfgeNgs,18656
|
|
2300
|
-
pygpt_net/ui/layout/chat/output.py,sha256=
|
|
2301
|
-
pygpt_net/ui/layout/chat/painter.py,sha256=
|
|
2300
|
+
pygpt_net/ui/layout/chat/output.py,sha256=b1qY1C2Fs_k3fOA47JnkHXfvRDdptHbEZpMF6aiwA8g,7280
|
|
2301
|
+
pygpt_net/ui/layout/chat/painter.py,sha256=fOoGvVHnKpkpilK-3ZgZh6kCh9uxINNtsCT8NUtOarQ,5761
|
|
2302
2302
|
pygpt_net/ui/layout/ctx/__init__.py,sha256=NJ9L0yJKIx1nKnk2sczp7ILWVbu2hfpvUz4E56EFuPI,509
|
|
2303
2303
|
pygpt_net/ui/layout/ctx/ctx.py,sha256=GDJyolAnFlAd49bbu9-LGsCxOUTAImSH5In4i8YHFOo,1653
|
|
2304
|
-
pygpt_net/ui/layout/ctx/ctx_list.py,sha256=
|
|
2304
|
+
pygpt_net/ui/layout/ctx/ctx_list.py,sha256=H1wFEDunO6Dyv6P8c7xAU_GkUPgEDnyO_ExFpYOiFpU,12064
|
|
2305
2305
|
pygpt_net/ui/layout/ctx/search_input.py,sha256=yM_X2sxeR09JRqmkd2R4z82GRo3I1k4rOb75PgIFydE,1441
|
|
2306
2306
|
pygpt_net/ui/layout/ctx/video.py,sha256=RzzyGObhlXamXIJHRqA9D2o6eVVulF4kNPVf3BkURGI,1068
|
|
2307
|
-
pygpt_net/ui/layout/status.py,sha256=
|
|
2307
|
+
pygpt_net/ui/layout/status.py,sha256=bhRCXP25ODBZHl-aXCZft68Y_6ccprDkrQjJVIG_ulM,2015
|
|
2308
2308
|
pygpt_net/ui/layout/toolbox/__init__.py,sha256=JiCbbll8f0RABCeBxgErw-tAXj0zeSLFGZVKv8853GE,511
|
|
2309
|
-
pygpt_net/ui/layout/toolbox/agent.py,sha256=
|
|
2310
|
-
pygpt_net/ui/layout/toolbox/agent_llama.py,sha256=
|
|
2311
|
-
pygpt_net/ui/layout/toolbox/assistants.py,sha256=
|
|
2312
|
-
pygpt_net/ui/layout/toolbox/computer_env.py,sha256=
|
|
2313
|
-
pygpt_net/ui/layout/toolbox/footer.py,sha256=
|
|
2314
|
-
pygpt_net/ui/layout/toolbox/image.py,sha256=
|
|
2315
|
-
pygpt_net/ui/layout/toolbox/indexes.py,sha256=
|
|
2316
|
-
pygpt_net/ui/layout/toolbox/mode.py,sha256=
|
|
2317
|
-
pygpt_net/ui/layout/toolbox/model.py,sha256=
|
|
2318
|
-
pygpt_net/ui/layout/toolbox/presets.py,sha256=
|
|
2319
|
-
pygpt_net/ui/layout/toolbox/prompt.py,sha256=
|
|
2320
|
-
pygpt_net/ui/layout/toolbox/toolbox.py,sha256=
|
|
2321
|
-
pygpt_net/ui/layout/toolbox/vision.py,sha256=
|
|
2322
|
-
pygpt_net/ui/main.py,sha256=
|
|
2309
|
+
pygpt_net/ui/layout/toolbox/agent.py,sha256=2aQb2DWrzn3GHULw77-u0284LZcMwrF--IE2TCJ0SgQ,2490
|
|
2310
|
+
pygpt_net/ui/layout/toolbox/agent_llama.py,sha256=YbLxT6EAqhxgYpmE4oY0ddLdmH-IqN2fYL-Z7_fdWjo,3220
|
|
2311
|
+
pygpt_net/ui/layout/toolbox/assistants.py,sha256=xcGlZNWOCrli0BPiVgRT7K63LcX-pMhZZN__XvAgzu0,4442
|
|
2312
|
+
pygpt_net/ui/layout/toolbox/computer_env.py,sha256=QP_Qv4X28ineVX4vFfykmV-RDjgJpQp_oBHne3R4zY4,2210
|
|
2313
|
+
pygpt_net/ui/layout/toolbox/footer.py,sha256=zK7127--ow19SYcKQGGhiEzT5FZBOKzFk-xyf7UVZM0,5649
|
|
2314
|
+
pygpt_net/ui/layout/toolbox/image.py,sha256=NXN6F7pR4Mw-Vx2oFadmy5gGVm7mGy0o2pdBHDMSLOE,2154
|
|
2315
|
+
pygpt_net/ui/layout/toolbox/indexes.py,sha256=o-f1jKhypjdQA-1NEDIxJwwMaFdIdjU48GFPcjHq0aY,6824
|
|
2316
|
+
pygpt_net/ui/layout/toolbox/mode.py,sha256=MfVunjZZ3Wi0o4sbWBqg74c2-W6BNDHr3ylZevLZb8c,2085
|
|
2317
|
+
pygpt_net/ui/layout/toolbox/model.py,sha256=OxcxSyFCQ3z6XAwj991X4KiSb78Upfn4v4m3991yvsw,1707
|
|
2318
|
+
pygpt_net/ui/layout/toolbox/presets.py,sha256=OSpVhZjmdI11ZH3YB3G1Vx9XFvQbJdTXu6l9-Ec9XzE,5779
|
|
2319
|
+
pygpt_net/ui/layout/toolbox/prompt.py,sha256=subUUZJgkCmvSRekZcgVYs6wzl-MYPBLXKTs0wcJFgw,2663
|
|
2320
|
+
pygpt_net/ui/layout/toolbox/toolbox.py,sha256=CvYn_rCJ3JgDfXqw5IqslMDtNxd8Hyd5lgbqGpSUbus,2988
|
|
2321
|
+
pygpt_net/ui/layout/toolbox/vision.py,sha256=E6-lLfU3vrWdlprayr6gxFs7F7AGkn4OIrFXrQ9p5XA,2035
|
|
2322
|
+
pygpt_net/ui/main.py,sha256=m7cn5K5hmkCYNS0KbTibaiklW--HiPy_tAdV0Hk0bj8,14151
|
|
2323
2323
|
pygpt_net/ui/menu/__init__.py,sha256=wAIKG9wLWfYv6tpXCTXptWb_XKoCc-4lYWLDvV1bVYk,508
|
|
2324
|
-
pygpt_net/ui/menu/about.py,sha256=
|
|
2325
|
-
pygpt_net/ui/menu/audio.py,sha256=
|
|
2326
|
-
pygpt_net/ui/menu/config.py,sha256=
|
|
2327
|
-
pygpt_net/ui/menu/debug.py,sha256=
|
|
2328
|
-
pygpt_net/ui/menu/file.py,sha256=
|
|
2324
|
+
pygpt_net/ui/menu/about.py,sha256=BtelbYhpXJGgsoEwsPuw61wVuGkzogpY3FVvWtd09HE,4619
|
|
2325
|
+
pygpt_net/ui/menu/audio.py,sha256=3vQhMq8vk_h7yb_Gk2dZMRviFR2PExgR_ynpgOkyl-g,4226
|
|
2326
|
+
pygpt_net/ui/menu/config.py,sha256=eMHXxvpjaqyLPVM1qNknzeGHYRMYvSJnwGhh8u7eeVM,6314
|
|
2327
|
+
pygpt_net/ui/menu/debug.py,sha256=cVnWIkO3kbRYmO0IbM6Y8zX_psMQCQOWaJIMlwvsb70,2875
|
|
2328
|
+
pygpt_net/ui/menu/file.py,sha256=_kSohrpiHgcV5W9fIrmyBFAtNBaD8KZCgQAplOH2C6s,2527
|
|
2329
2329
|
pygpt_net/ui/menu/lang.py,sha256=99dSS3mM4KIftgXgsgZoq2bJ_DnmgqA7z7cP49kICP4,897
|
|
2330
|
-
pygpt_net/ui/menu/menu.py,sha256=
|
|
2331
|
-
pygpt_net/ui/menu/plugins.py,sha256=
|
|
2332
|
-
pygpt_net/ui/menu/theme.py,sha256=
|
|
2333
|
-
pygpt_net/ui/menu/tools.py,sha256=
|
|
2334
|
-
pygpt_net/ui/menu/video.py,sha256=
|
|
2335
|
-
pygpt_net/ui/tray.py,sha256=
|
|
2330
|
+
pygpt_net/ui/menu/menu.py,sha256=lk-0r3_22-RSlJrWDFLmux0I9fHanMtSM70xTHYOhWM,1764
|
|
2331
|
+
pygpt_net/ui/menu/plugins.py,sha256=0QOHrT8jel0xDfuAoaDGIZcGpbT9rm8AN8vBXe1Oe6I,4058
|
|
2332
|
+
pygpt_net/ui/menu/theme.py,sha256=NPc-q9jwz_3FoJVL3DJBBwHhApUQglPxmUbuhewg43Y,2733
|
|
2333
|
+
pygpt_net/ui/menu/tools.py,sha256=m3dhuhElUSVqChsdBiONRrIsIDzy1bLGAwQ9K4LobLA,3706
|
|
2334
|
+
pygpt_net/ui/menu/video.py,sha256=p0IlOEiNmjImKp94NxTvsFNQkMc-g3bC-5qRaDPIuqQ,1561
|
|
2335
|
+
pygpt_net/ui/tray.py,sha256=_y2TEFbgEVyJyB-ptHYibM_IyoGpxU-EFKOJJWeyk5U,6527
|
|
2336
2336
|
pygpt_net/ui/widget/__init__.py,sha256=X9-pucLqQF9_ocDV-qNY6EQAJ_4dubGb-7TcWIzCXBo,488
|
|
2337
2337
|
pygpt_net/ui/widget/anims/loader.py,sha256=PzxHraeABUyMIZlg4Rk_tbJnUPmiwxlhdcHaCkURWWw,5989
|
|
2338
2338
|
pygpt_net/ui/widget/anims/toggles.py,sha256=9mX_yRwYJJxseb3cNIkWed_euv-iRNPzOBxiAz8wLjk,5935
|
|
2339
2339
|
pygpt_net/ui/widget/audio/__init__.py,sha256=8HT4tQFqQogEEpGYTv2RplKBthlsFKcl5egnv4lzzEw,488
|
|
2340
|
-
pygpt_net/ui/widget/audio/bar.py,sha256=
|
|
2340
|
+
pygpt_net/ui/widget/audio/bar.py,sha256=wp1lZmyA-6pCM7E4Fg8isqw8rk_h0qTPLzY-Qai1wUY,3171
|
|
2341
2341
|
pygpt_net/ui/widget/audio/input.py,sha256=t9VAhP15HkSOvNV2crI3Kg6AgrQDj-wSQiiYTMlvK60,1721
|
|
2342
|
-
pygpt_net/ui/widget/audio/input_button.py,sha256=
|
|
2342
|
+
pygpt_net/ui/widget/audio/input_button.py,sha256=QDfA8WBskY0pkN8EMXZ97017Sj11t4p9b_jCz4Q6aRY,4498
|
|
2343
2343
|
pygpt_net/ui/widget/audio/output.py,sha256=UxkiCnVT9DNFeByDGTFW_CK0LW8xSvhEK1zygtHvx4k,1586
|
|
2344
2344
|
pygpt_net/ui/widget/calendar/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
2345
|
-
pygpt_net/ui/widget/calendar/select.py,sha256=
|
|
2345
|
+
pygpt_net/ui/widget/calendar/select.py,sha256=iQgD7djD9ZTD8csje3DVZhQu0onIn5Ai5Nse08FcV7Q,10667
|
|
2346
2346
|
pygpt_net/ui/widget/dialog/__init__.py,sha256=8HT4tQFqQogEEpGYTv2RplKBthlsFKcl5egnv4lzzEw,488
|
|
2347
2347
|
pygpt_net/ui/widget/dialog/alert.py,sha256=6EYiiac1kuuWq3hcnm1DjVPRFdSYWaEe0gJ5LOsiEzg,1429
|
|
2348
2348
|
pygpt_net/ui/widget/dialog/applog.py,sha256=T9ZHk__9Bm0HGJLZtps4NecNbpapu7R9TIkzxOfTPCs,1502
|
|
2349
2349
|
pygpt_net/ui/widget/dialog/assistant_store.py,sha256=cCccypJvfpfeKRBRyt7jU6D-V9HN-J1bBkng-C2bN74,1712
|
|
2350
2350
|
pygpt_net/ui/widget/dialog/audio.py,sha256=CgKi1wGw9xVZsHua3HelrXdOgQ_G-CypR_JLznzh6rw,551
|
|
2351
|
-
pygpt_net/ui/widget/dialog/base.py,sha256=
|
|
2351
|
+
pygpt_net/ui/widget/dialog/base.py,sha256=S8G2wMSU1FzzRuvtFAAw05vhk1uwqBidcf-wtpWUrOk,3800
|
|
2352
2352
|
pygpt_net/ui/widget/dialog/confirm.py,sha256=DrfB_UFj2WxXv-syh3RU0dwm3Y2v5PSzC5I-A7LUI40,2550
|
|
2353
2353
|
pygpt_net/ui/widget/dialog/create.py,sha256=BaTn9SVL4QiGk6JCcsArVLQOOsmrdfkdExm_T5rHJe8,2191
|
|
2354
2354
|
pygpt_net/ui/widget/dialog/db.py,sha256=arTJ27_znjUXnu6EKji1NBjOgq6WUEAT4SnSjDahyV0,1585
|
|
2355
2355
|
pygpt_net/ui/widget/dialog/debug.py,sha256=8o1TNxRqrF9x5hy_ZtKM9Hn4EinCknkD0-WxFjTQHIM,1490
|
|
2356
2356
|
pygpt_net/ui/widget/dialog/editor.py,sha256=yRpFext0Q6BiBukavziRfNe_5BF48Ex9MAy453EAwNM,1859
|
|
2357
|
-
pygpt_net/ui/widget/dialog/editor_file.py,sha256=
|
|
2358
|
-
pygpt_net/ui/widget/dialog/find.py,sha256=
|
|
2357
|
+
pygpt_net/ui/widget/dialog/editor_file.py,sha256=8z95XUDuHkVhgPNA-UIcdopDUwITmHOUve9HFksvBxs,6148
|
|
2358
|
+
pygpt_net/ui/widget/dialog/find.py,sha256=RBR5RKc-YWePIsbkbHd1TJL-YAxjcdM8nE5qKu06ZDE,2860
|
|
2359
2359
|
pygpt_net/ui/widget/dialog/image.py,sha256=CZzMhYBmdmjWlym0UWyEdGMh8CuVWuFRntRsAf-MUwI,816
|
|
2360
2360
|
pygpt_net/ui/widget/dialog/info.py,sha256=FNaFrYYwI-9ielCDV-cf1TRwQZRHtHTE2j5g9k6LUGY,1568
|
|
2361
2361
|
pygpt_net/ui/widget/dialog/license.py,sha256=GGVdTrYHGcKhTBVFmo-0vCkj_WssS-364EhchgY5Ddk,1717
|
|
@@ -2363,7 +2363,7 @@ pygpt_net/ui/widget/dialog/logger.py,sha256=BCnvk9Rlzkco3KPjfl7tWJfI-IN3AXoWzbug
|
|
|
2363
2363
|
pygpt_net/ui/widget/dialog/model.py,sha256=wRrrgy8zqSBzZiA79_FHNnk2ECtVd-qE_lqlB_xfCCQ,1625
|
|
2364
2364
|
pygpt_net/ui/widget/dialog/model_importer.py,sha256=jv0HqCTZwfGk1-0eSB_hrQwGNT-k0WbNkDp-6ZVKp1k,1693
|
|
2365
2365
|
pygpt_net/ui/widget/dialog/preset_plugins.py,sha256=M7fgkSumGvUNxKGTY4KhvvT2nwFbB5thiPvkRJbpP0s,1694
|
|
2366
|
-
pygpt_net/ui/widget/dialog/profile.py,sha256=
|
|
2366
|
+
pygpt_net/ui/widget/dialog/profile.py,sha256=4itSvM9ejiCA_oEEb9cpiFpfu0ZyzRS-cyr1kZ2enRE,6238
|
|
2367
2367
|
pygpt_net/ui/widget/dialog/rename.py,sha256=HcImKH_gUHcyB1k5llwStmrlXvcSpxgR2V6IuEdMuCU,2191
|
|
2368
2368
|
pygpt_net/ui/widget/dialog/settings.py,sha256=fKzbme2tdxzTSiQMNnCEgyD3lwCzFjLi85ikWulisGw,1614
|
|
2369
2369
|
pygpt_net/ui/widget/dialog/settings_plugin.py,sha256=Kf1ZK_RY9CAnfeuzPoQ4wgsFb2yQl7X-VKzsYETA55o,1696
|
|
@@ -2372,80 +2372,80 @@ pygpt_net/ui/widget/dialog/update.py,sha256=YGUouxuEqvO8rkjI52F7wG4R8OgqcpJKB1FV
|
|
|
2372
2372
|
pygpt_net/ui/widget/dialog/url.py,sha256=7I17Pp9P2c3G1pODEY5dum_AF0nFnu2BMfbWTgEES-M,8765
|
|
2373
2373
|
pygpt_net/ui/widget/dialog/workdir.py,sha256=D-C3YIt-wCoI-Eh7z--Z4R6P1UvtpkxeiaVcI-ycFck,1523
|
|
2374
2374
|
pygpt_net/ui/widget/draw/__init__.py,sha256=oSYKtNEGNL0vDjn3wCgdnBAbxUqNGIEIf-75I2DIn7Q,488
|
|
2375
|
-
pygpt_net/ui/widget/draw/painter.py,sha256=
|
|
2375
|
+
pygpt_net/ui/widget/draw/painter.py,sha256=iebz0L7U8eMMzw8FNtFaYe-2mXil8BkXcGRFmW7MCuw,10871
|
|
2376
2376
|
pygpt_net/ui/widget/element/__init__.py,sha256=8HT4tQFqQogEEpGYTv2RplKBthlsFKcl5egnv4lzzEw,488
|
|
2377
|
-
pygpt_net/ui/widget/element/button.py,sha256=
|
|
2378
|
-
pygpt_net/ui/widget/element/checkbox.py,sha256=
|
|
2379
|
-
pygpt_net/ui/widget/element/group.py,sha256=
|
|
2380
|
-
pygpt_net/ui/widget/element/labels.py,sha256=
|
|
2377
|
+
pygpt_net/ui/widget/element/button.py,sha256=rhy8_RVHRV8xl0pegul31z9fNBjjIAi5Nd0hHGF6cF8,4393
|
|
2378
|
+
pygpt_net/ui/widget/element/checkbox.py,sha256=qyX6T31c3a8Wb8B4JZwhuejD9SUAFSesdIjZdj4tv8I,2948
|
|
2379
|
+
pygpt_net/ui/widget/element/group.py,sha256=9wedtjRTls4FdyHSwUblzdtPOaQ0-8djnjTN9CZI1KI,3702
|
|
2380
|
+
pygpt_net/ui/widget/element/labels.py,sha256=dPdp-1rW6OL_LIp-SZydtOyz-V6rj4GdZC_CEFGdtFU,5977
|
|
2381
2381
|
pygpt_net/ui/widget/filesystem/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
2382
|
-
pygpt_net/ui/widget/filesystem/explorer.py,sha256=
|
|
2382
|
+
pygpt_net/ui/widget/filesystem/explorer.py,sha256=YTQSv-ZyicJlVAKkVGkunCrKC27r2Ljnaat7FzYEJ5A,23732
|
|
2383
2383
|
pygpt_net/ui/widget/image/__init__.py,sha256=X9-pucLqQF9_ocDV-qNY6EQAJ_4dubGb-7TcWIzCXBo,488
|
|
2384
|
-
pygpt_net/ui/widget/image/display.py,sha256=
|
|
2384
|
+
pygpt_net/ui/widget/image/display.py,sha256=73lBXCdmdAxjCCD2XV3HBdvYU6PgL_PpybweONMOSik,3771
|
|
2385
2385
|
pygpt_net/ui/widget/lists/__init__.py,sha256=8HT4tQFqQogEEpGYTv2RplKBthlsFKcl5egnv4lzzEw,488
|
|
2386
|
-
pygpt_net/ui/widget/lists/assistant.py,sha256=
|
|
2386
|
+
pygpt_net/ui/widget/lists/assistant.py,sha256=496IcQQ9Vk1_UMyeVyGV-X6yEcK_8u6zoI6nHGZTxlU,4687
|
|
2387
2387
|
pygpt_net/ui/widget/lists/assistant_store.py,sha256=WupZMOI4-x-r21JCg8rdR45NMyAxI_yQxFXkvGhC7GM,3715
|
|
2388
|
-
pygpt_net/ui/widget/lists/attachment.py,sha256=
|
|
2389
|
-
pygpt_net/ui/widget/lists/attachment_ctx.py,sha256=
|
|
2388
|
+
pygpt_net/ui/widget/lists/attachment.py,sha256=QHoOQLg86RWEyGpjvRg7hnQEMTTnJiJyIkv20G5GiWo,8678
|
|
2389
|
+
pygpt_net/ui/widget/lists/attachment_ctx.py,sha256=emcm2BMrKL4RlzmzKR1-_QJ0fxbFXsflWo_sFJvylzM,5474
|
|
2390
2390
|
pygpt_net/ui/widget/lists/base.py,sha256=hGoDSLpPVyGn5rdTzn3ixEigM67NLoO7Kc27Un6HNgM,3536
|
|
2391
2391
|
pygpt_net/ui/widget/lists/base_combo.py,sha256=-ZXvof8eJfSoB0_ONVxVuCJP8acss-f066XreG_GfnY,4132
|
|
2392
2392
|
pygpt_net/ui/widget/lists/base_list_combo.py,sha256=DTm5qiT08pfHu8DKH_gA6aodDY3XELtKfDudJTOL3RU,5721
|
|
2393
|
-
pygpt_net/ui/widget/lists/context.py,sha256=
|
|
2393
|
+
pygpt_net/ui/widget/lists/context.py,sha256=vxlAg3tUcfV4ESdHH3H_j9O4HzOga9ZNsFHbVVKREZ0,19063
|
|
2394
2394
|
pygpt_net/ui/widget/lists/db.py,sha256=f0EIzTSzjblJtCuGoWBq6PerFt8yqFZrP2hkIoHuzbI,5861
|
|
2395
2395
|
pygpt_net/ui/widget/lists/debug.py,sha256=bjzshfRXFwFQ4neCY8pFMHPm9b57i5x-pHdk-sY--VI,3658
|
|
2396
2396
|
pygpt_net/ui/widget/lists/experts.py,sha256=c6o0TIQ6YkIAMHoHHYBA-474z9tyPPw7YUn4R-oaXio,5957
|
|
2397
|
-
pygpt_net/ui/widget/lists/index.py,sha256=
|
|
2397
|
+
pygpt_net/ui/widget/lists/index.py,sha256=YWleXUceyvTIqQL3O48qXqBazINAdaB0_oBmRWFzTuE,4792
|
|
2398
2398
|
pygpt_net/ui/widget/lists/index_combo.py,sha256=tW62i2khDJZ_mserp1W-5n5EPPnyv3fI3ICUusbRnko,4628
|
|
2399
2399
|
pygpt_net/ui/widget/lists/llama_mode_combo.py,sha256=U18Rt6OxKRQkyPmI1ve2urak0dHeuu_2-70bLJVfKA8,1229
|
|
2400
2400
|
pygpt_net/ui/widget/lists/mode.py,sha256=4gPSjQEo9RnLgfJpUeRUcHhJzPrrtbi3o0444kQASO4,969
|
|
2401
2401
|
pygpt_net/ui/widget/lists/mode_combo.py,sha256=LC6zlSv2_nTIT5dk-Jf0LgVTRKbxGqhHFFWUG3mYwhg,1104
|
|
2402
|
-
pygpt_net/ui/widget/lists/model.py,sha256=
|
|
2402
|
+
pygpt_net/ui/widget/lists/model.py,sha256=09osE_7G8iiFj1MfT0VnfxohQ0520--bvJkvvvgl_u0,1886
|
|
2403
2403
|
pygpt_net/ui/widget/lists/model_combo.py,sha256=hGOH4K0qel2w7j8HCr7kBARyvQKjkG4O7QbCvREibQ8,1108
|
|
2404
|
-
pygpt_net/ui/widget/lists/model_editor.py,sha256=
|
|
2405
|
-
pygpt_net/ui/widget/lists/model_importer.py,sha256=
|
|
2404
|
+
pygpt_net/ui/widget/lists/model_editor.py,sha256=GEQ4OKVwdyP5-coXk3hnZ8ZIciMP9vFFPjYDJcFLRtA,1894
|
|
2405
|
+
pygpt_net/ui/widget/lists/model_importer.py,sha256=PSYAWX00MKObBFzqG4zivxaw8j0ZB47XaLaLiVyRxNQ,6668
|
|
2406
2406
|
pygpt_net/ui/widget/lists/plugin.py,sha256=nvcVTRPebqFhuRQl44lszctj4YhYqff3W4PQdL4jjgU,1028
|
|
2407
|
-
pygpt_net/ui/widget/lists/preset.py,sha256=
|
|
2408
|
-
pygpt_net/ui/widget/lists/preset_plugins.py,sha256=
|
|
2409
|
-
pygpt_net/ui/widget/lists/profile.py,sha256=
|
|
2407
|
+
pygpt_net/ui/widget/lists/preset.py,sha256=UEdN83B7pdT2Nx7nKG8JAWpSLzhqZS24J9hRpbkhVSA,7658
|
|
2408
|
+
pygpt_net/ui/widget/lists/preset_plugins.py,sha256=3ONjBKPv2buTdgtO6BLSaW-z-Cui4wOBU8GDzH9giCA,3873
|
|
2409
|
+
pygpt_net/ui/widget/lists/profile.py,sha256=d8VE9i35MVjZkNFJ-VuHJZeTiMwnF64pYP8-A7zCmv8,4406
|
|
2410
2410
|
pygpt_net/ui/widget/lists/settings.py,sha256=ZMOPvpu_h3NMQ2WTb5SfoAmSmBTW_lbtm7M-oAp1zA8,1052
|
|
2411
|
-
pygpt_net/ui/widget/lists/uploaded.py,sha256=
|
|
2411
|
+
pygpt_net/ui/widget/lists/uploaded.py,sha256=yVIqySvkcXKZICIB3SwKx1Q-oTEupjLOzhopj9-O5h0,4356
|
|
2412
2412
|
pygpt_net/ui/widget/option/__init__.py,sha256=8HT4tQFqQogEEpGYTv2RplKBthlsFKcl5egnv4lzzEw,488
|
|
2413
|
-
pygpt_net/ui/widget/option/checkbox.py,sha256=
|
|
2414
|
-
pygpt_net/ui/widget/option/checkbox_list.py,sha256=
|
|
2415
|
-
pygpt_net/ui/widget/option/cmd.py,sha256=
|
|
2413
|
+
pygpt_net/ui/widget/option/checkbox.py,sha256=duzgGPOVbHFnWILVEu5gDUa6sHeDOvQaaj9IsY-HbU8,3954
|
|
2414
|
+
pygpt_net/ui/widget/option/checkbox_list.py,sha256=j3lks2qPaZZdfZEV9EbN5kH8gEquVZFUDF_rq7uxjn0,5770
|
|
2415
|
+
pygpt_net/ui/widget/option/cmd.py,sha256=Ii_i9hR4oRmG4-TPZ-FHuTv3I1vL96YLcDP2QSKmAbI,5800
|
|
2416
2416
|
pygpt_net/ui/widget/option/combo.py,sha256=g1UAi8Y5-eF-Pi1xA0xoEDfEIfXjI-RRj9VP-FFqyFA,4891
|
|
2417
|
-
pygpt_net/ui/widget/option/dictionary.py,sha256=
|
|
2418
|
-
pygpt_net/ui/widget/option/input.py,sha256=
|
|
2417
|
+
pygpt_net/ui/widget/option/dictionary.py,sha256=67F-BGOMuH-MCEvdvE-cVqkyE8xR8euHH5zSkhRqUco,13517
|
|
2418
|
+
pygpt_net/ui/widget/option/input.py,sha256=xeTbKOO6JFRb1seZCJQTtvehW1uSJx-l8mYMf-HqA4E,9574
|
|
2419
2419
|
pygpt_net/ui/widget/option/prompt.py,sha256=SgRd0acp13_c19tWjYYChcGgAwik9tsZKKsX1Ciqgp4,2818
|
|
2420
2420
|
pygpt_net/ui/widget/option/slider.py,sha256=nEGocCAHZ-HuyE0D0QZxs30QiUXs8B2EQRQXSsGIGIE,3569
|
|
2421
2421
|
pygpt_net/ui/widget/option/textarea.py,sha256=-ymu6_xLMjJ1gATzkYwOoArAD01g83r9gHlUXFHK9Uc,2929
|
|
2422
2422
|
pygpt_net/ui/widget/option/toggle.py,sha256=ainYgH-1UKeHf_BP0yZ48luD0k4zAvZ5jMLdr_lZDIU,2166
|
|
2423
2423
|
pygpt_net/ui/widget/option/toggle_label.py,sha256=JZwI_mpqLX6Ml9ovijXMWBHTT0t_nf3aYTqRqTYFtpY,2271
|
|
2424
|
-
pygpt_net/ui/widget/tabs/Input.py,sha256=
|
|
2424
|
+
pygpt_net/ui/widget/tabs/Input.py,sha256=ELHpaWjhHJdKRhtTjDIByaMF_BqaHCyKwEWDofm0Gls,1875
|
|
2425
2425
|
pygpt_net/ui/widget/tabs/__init__.py,sha256=8HT4tQFqQogEEpGYTv2RplKBthlsFKcl5egnv4lzzEw,488
|
|
2426
|
-
pygpt_net/ui/widget/tabs/body.py,sha256=
|
|
2427
|
-
pygpt_net/ui/widget/tabs/layout.py,sha256=
|
|
2428
|
-
pygpt_net/ui/widget/tabs/output.py,sha256=
|
|
2426
|
+
pygpt_net/ui/widget/tabs/body.py,sha256=lSb0DxsjymBa0bzGpiAIRSn9DfFlqtmdRglBuRZlwFA,3219
|
|
2427
|
+
pygpt_net/ui/widget/tabs/layout.py,sha256=drBdMLFZFAb6IIiLAwecnhZU4BDqT8YCprdA7YMDDJs,6532
|
|
2428
|
+
pygpt_net/ui/widget/tabs/output.py,sha256=Cfnr7sJcFetT4obwytcJEXENQe8931r0_ZRKRV4nrzA,13104
|
|
2429
2429
|
pygpt_net/ui/widget/textarea/__init__.py,sha256=8HT4tQFqQogEEpGYTv2RplKBthlsFKcl5egnv4lzzEw,488
|
|
2430
|
-
pygpt_net/ui/widget/textarea/calendar_note.py,sha256=
|
|
2430
|
+
pygpt_net/ui/widget/textarea/calendar_note.py,sha256=4LsPZ2ZHHZAsgjvgn6iZLKupKFq9fLGDu1PFEQVkaGw,5896
|
|
2431
2431
|
pygpt_net/ui/widget/textarea/console.py,sha256=nCV92S5JR4DiRWH6akWhygxg9kaLLxnCPoqXV0ZRK74,1333
|
|
2432
2432
|
pygpt_net/ui/widget/textarea/create.py,sha256=f4SrAW-2hjkKYIPrwVliSYH-LkgsQP8G13Jkq8EKhuI,1358
|
|
2433
|
-
pygpt_net/ui/widget/textarea/editor.py,sha256=
|
|
2434
|
-
pygpt_net/ui/widget/textarea/find.py,sha256=
|
|
2435
|
-
pygpt_net/ui/widget/textarea/html.py,sha256=
|
|
2436
|
-
pygpt_net/ui/widget/textarea/input.py,sha256=
|
|
2433
|
+
pygpt_net/ui/widget/textarea/editor.py,sha256=qCMFJk8T7f4u3TFYKi02r2kOFSzzwrasWm_zSMsisPE,5153
|
|
2434
|
+
pygpt_net/ui/widget/textarea/find.py,sha256=fQu6t-_LTZGFRNCkezywtMVsL-DocIkGBR_HbRFq61g,1534
|
|
2435
|
+
pygpt_net/ui/widget/textarea/html.py,sha256=4DOnUYtHBhN-6X5w13GK-ceAAvTPd8M4mH_N-c3L_h0,12344
|
|
2436
|
+
pygpt_net/ui/widget/textarea/input.py,sha256=VW5NEQeSTKfcsLzzUX2jMvEbAQm6Fq04hSl6uh3jv2Y,6608
|
|
2437
2437
|
pygpt_net/ui/widget/textarea/name.py,sha256=vcyAY_pJWJoS_IJqdJjhIeDSniTL9rfpt8aaobWNFVY,1132
|
|
2438
|
-
pygpt_net/ui/widget/textarea/notepad.py,sha256=
|
|
2439
|
-
pygpt_net/ui/widget/textarea/output.py,sha256=
|
|
2438
|
+
pygpt_net/ui/widget/textarea/notepad.py,sha256=Yl2fvJyRzADxvZe0B44QG8E15LdZtPjwGcdM2iIcgu4,9858
|
|
2439
|
+
pygpt_net/ui/widget/textarea/output.py,sha256=krWta3GHwdlPOqcxLln150bo7iUOtbFL_yJzMucGOFU,6246
|
|
2440
2440
|
pygpt_net/ui/widget/textarea/rename.py,sha256=NwuGRIeWMo7WfsMguAFpTqdOz1eTiXbxrDXGsbWF_TY,1358
|
|
2441
|
-
pygpt_net/ui/widget/textarea/search_input.py,sha256=
|
|
2441
|
+
pygpt_net/ui/widget/textarea/search_input.py,sha256=aoOlunBwxn-z3gIMNKfnghHX00sC36wQHl87dRlDJlM,5227
|
|
2442
2442
|
pygpt_net/ui/widget/textarea/url.py,sha256=xbNQxoM5fYI1ZWbvybQkPmNPrIq3yhtNPBOSOWftZCg,1337
|
|
2443
|
-
pygpt_net/ui/widget/textarea/web.py,sha256=
|
|
2443
|
+
pygpt_net/ui/widget/textarea/web.py,sha256=cqs5i67bD19_BNgcYL7NXlwYBei4UYSL_IYPZkzi6l8,19788
|
|
2444
2444
|
pygpt_net/ui/widget/vision/__init__.py,sha256=8HT4tQFqQogEEpGYTv2RplKBthlsFKcl5egnv4lzzEw,488
|
|
2445
|
-
pygpt_net/ui/widget/vision/camera.py,sha256=
|
|
2445
|
+
pygpt_net/ui/widget/vision/camera.py,sha256=v1qEncaZr5pXocO5Cpk_lsgfCMvfFigdJmzsYfzvCl0,1877
|
|
2446
2446
|
pygpt_net/utils.py,sha256=GBAXOpp_Wjfu7Al7TnTV62-R-JPMiP9GuPXLJ0HmeJU,8906
|
|
2447
|
-
pygpt_net-2.6.
|
|
2448
|
-
pygpt_net-2.6.
|
|
2449
|
-
pygpt_net-2.6.
|
|
2450
|
-
pygpt_net-2.6.
|
|
2451
|
-
pygpt_net-2.6.
|
|
2447
|
+
pygpt_net-2.6.22.dist-info/LICENSE,sha256=rbPqNB_xxANH8hKayJyIcTwD4bj4Y2G-Mcm85r1OImM,1126
|
|
2448
|
+
pygpt_net-2.6.22.dist-info/METADATA,sha256=PWEsu15LMs7PYaVQJt29IKqOc3755uS4a0xZJ8mwd1s,156456
|
|
2449
|
+
pygpt_net-2.6.22.dist-info/WHEEL,sha256=b4K_helf-jlQoXBBETfwnf4B04YC67LOev0jo4fX5m8,88
|
|
2450
|
+
pygpt_net-2.6.22.dist-info/entry_points.txt,sha256=qvpII6UHIt8XfokmQWnCYQrTgty8FeJ9hJvOuUFCN-8,43
|
|
2451
|
+
pygpt_net-2.6.22.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|