pygpt-net 2.4.42__py3-none-any.whl → 2.4.44__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- CHANGELOG.md +11 -0
- README.md +17 -2
- pygpt_net/CHANGELOG.txt +11 -0
- pygpt_net/__init__.py +3 -3
- pygpt_net/controller/attachment.py +31 -3
- pygpt_net/controller/chat/attachment.py +37 -36
- pygpt_net/controller/config/placeholder.py +6 -4
- pygpt_net/controller/idx/common.py +7 -3
- pygpt_net/core/attachments/__init__.py +7 -2
- pygpt_net/core/attachments/context.py +52 -34
- pygpt_net/core/db/__init__.py +2 -1
- pygpt_net/core/debug/attachments.py +1 -0
- pygpt_net/core/idx/__init__.py +8 -3
- pygpt_net/core/idx/indexing.py +24 -7
- pygpt_net/core/idx/ui/__init__.py +22 -0
- pygpt_net/core/idx/ui/loaders.py +217 -0
- pygpt_net/data/config/config.json +4 -4
- pygpt_net/data/config/models.json +3 -3
- pygpt_net/data/config/modes.json +3 -3
- pygpt_net/data/config/settings.json +5 -5
- pygpt_net/data/locale/locale.de.ini +3 -3
- pygpt_net/data/locale/locale.en.ini +11 -9
- pygpt_net/data/locale/locale.es.ini +3 -3
- pygpt_net/data/locale/locale.fr.ini +3 -3
- pygpt_net/data/locale/locale.it.ini +3 -3
- pygpt_net/data/locale/locale.pl.ini +3 -3
- pygpt_net/data/locale/locale.uk.ini +3 -3
- pygpt_net/data/locale/locale.zh.ini +3 -3
- pygpt_net/data/locale/plugin.mailer.en.ini +5 -5
- pygpt_net/item/attachment.py +5 -1
- pygpt_net/item/ctx.py +99 -2
- pygpt_net/migrations/Version20241215110000.py +25 -0
- pygpt_net/migrations/__init__.py +3 -1
- pygpt_net/plugin/cmd_files/__init__.py +3 -2
- pygpt_net/provider/core/attachment/json_file.py +4 -1
- pygpt_net/provider/core/config/patch.py +6 -0
- pygpt_net/provider/core/ctx/db_sqlite/storage.py +50 -7
- pygpt_net/provider/core/ctx/db_sqlite/utils.py +29 -5
- pygpt_net/provider/loaders/base.py +14 -0
- pygpt_net/provider/loaders/hub/yt/base.py +5 -0
- pygpt_net/provider/loaders/web_database.py +13 -5
- pygpt_net/provider/loaders/web_github_issues.py +5 -1
- pygpt_net/provider/loaders/web_google_calendar.py +9 -1
- pygpt_net/provider/loaders/web_google_docs.py +6 -1
- pygpt_net/provider/loaders/web_google_drive.py +10 -1
- pygpt_net/provider/loaders/web_google_gmail.py +2 -1
- pygpt_net/provider/loaders/web_google_keep.py +5 -1
- pygpt_net/provider/loaders/web_google_sheets.py +5 -1
- pygpt_net/provider/loaders/web_microsoft_onedrive.py +15 -1
- pygpt_net/provider/loaders/web_page.py +4 -2
- pygpt_net/provider/loaders/web_rss.py +2 -1
- pygpt_net/provider/loaders/web_sitemap.py +2 -1
- pygpt_net/provider/loaders/web_twitter.py +4 -2
- pygpt_net/provider/loaders/web_yt.py +17 -2
- pygpt_net/provider/vector_stores/ctx_attachment.py +1 -1
- pygpt_net/tools/indexer/__init__.py +8 -40
- pygpt_net/tools/indexer/ui/web.py +20 -78
- pygpt_net/ui/layout/ctx/ctx_list.py +86 -18
- pygpt_net/ui/widget/dialog/url.py +151 -14
- pygpt_net/ui/widget/element/group.py +15 -2
- pygpt_net/ui/widget/lists/context.py +23 -9
- pygpt_net/utils.py +1 -1
- {pygpt_net-2.4.42.dist-info → pygpt_net-2.4.44.dist-info}/METADATA +18 -3
- {pygpt_net-2.4.42.dist-info → pygpt_net-2.4.44.dist-info}/RECORD +67 -64
- {pygpt_net-2.4.42.dist-info → pygpt_net-2.4.44.dist-info}/LICENSE +0 -0
- {pygpt_net-2.4.42.dist-info → pygpt_net-2.4.44.dist-info}/WHEEL +0 -0
- {pygpt_net-2.4.42.dist-info → pygpt_net-2.4.44.dist-info}/entry_points.txt +0 -0
@@ -6,7 +6,7 @@
|
|
6
6
|
# GitHub: https://github.com/szczyglis-dev/py-gpt #
|
7
7
|
# MIT License #
|
8
8
|
# Created By : Marcin Szczygliński #
|
9
|
-
# Updated Date: 2024.12.
|
9
|
+
# Updated Date: 2024.12.16 01:00:00 #
|
10
10
|
# ================================================== #
|
11
11
|
|
12
12
|
import datetime
|
@@ -14,6 +14,7 @@ import datetime
|
|
14
14
|
from PySide6 import QtWidgets, QtCore, QtGui
|
15
15
|
from PySide6.QtGui import QAction, QIcon, QColor, QPixmap, QStandardItem
|
16
16
|
from PySide6.QtWidgets import QMenu
|
17
|
+
from overrides import overrides
|
17
18
|
|
18
19
|
from pygpt_net.ui.widget.lists.base import BaseList
|
19
20
|
from pygpt_net.utils import trans
|
@@ -31,13 +32,13 @@ class ContextList(BaseList):
|
|
31
32
|
super(ContextList, self).__init__(window)
|
32
33
|
self.window = window
|
33
34
|
self.id = id
|
34
|
-
self.clicked.connect(self.click)
|
35
35
|
self.expanded_items = set()
|
36
36
|
self.setItemDelegate(ImportantItemDelegate())
|
37
37
|
|
38
|
+
|
38
39
|
def click(self, index):
|
39
40
|
"""
|
40
|
-
Click event
|
41
|
+
Click event (override, connected in BaseList class)
|
41
42
|
|
42
43
|
:param index: index
|
43
44
|
"""
|
@@ -49,8 +50,10 @@ class ContextList(BaseList):
|
|
49
50
|
self.window.controller.ctx.set_group(item.id)
|
50
51
|
if self.window.ui.nodes['ctx.list'].isExpanded(index):
|
51
52
|
self.expanded_items.discard(item.id)
|
53
|
+
self.window.ui.nodes['ctx.list'].collapse(index)
|
52
54
|
else:
|
53
55
|
self.expanded_items.add(item.id)
|
56
|
+
self.window.ui.nodes['ctx.list'].expand(index)
|
54
57
|
else:
|
55
58
|
self.window.controller.ctx.select_by_id(item.id)
|
56
59
|
else:
|
@@ -76,7 +79,7 @@ class ContextList(BaseList):
|
|
76
79
|
|
77
80
|
:param index: index
|
78
81
|
"""
|
79
|
-
|
82
|
+
print("dblclick")
|
80
83
|
|
81
84
|
def mousePressEvent(self, event):
|
82
85
|
"""
|
@@ -407,20 +410,28 @@ class ImportantItemDelegate(QtWidgets.QStyledItemDelegate):
|
|
407
410
|
label = 0
|
408
411
|
is_important = False
|
409
412
|
is_attachment = False
|
413
|
+
is_group = False
|
414
|
+
in_group = False
|
415
|
+
|
410
416
|
if "label" in data:
|
411
417
|
label = data["label"]
|
412
418
|
if "is_important" in data and data["is_important"]:
|
413
419
|
is_important = True
|
414
420
|
if "is_attachment" in data and data["is_attachment"]:
|
415
421
|
is_attachment = True
|
422
|
+
if "is_group" in data and data["is_group"]:
|
423
|
+
is_group = True
|
424
|
+
if "in_group" in data and data["in_group"]:
|
425
|
+
in_group = True
|
416
426
|
|
417
427
|
painter.save()
|
418
428
|
|
419
429
|
if is_attachment:
|
420
430
|
icon = QtGui.QIcon(":/icons/attachment.svg")
|
421
431
|
icon_size = option.decorationSize or QtCore.QSize(16, 16)
|
432
|
+
icon_pos = option.rect.right() - icon_size.width()
|
422
433
|
icon_rect = QtCore.QRect(
|
423
|
-
|
434
|
+
icon_pos,
|
424
435
|
option.rect.top() + (option.rect.height() - icon_size.height()) / 2,
|
425
436
|
icon_size.width(),
|
426
437
|
icon_size.height()
|
@@ -447,8 +458,6 @@ class ImportantItemDelegate(QtWidgets.QStyledItemDelegate):
|
|
447
458
|
)
|
448
459
|
painter.drawRect(square_rect)
|
449
460
|
|
450
|
-
#label = label - 10 # remove pin status
|
451
|
-
|
452
461
|
# label (0-9)
|
453
462
|
if label > 0:
|
454
463
|
color = self.get_color_for_status(label)
|
@@ -495,6 +504,7 @@ class GroupItem(QStandardItem):
|
|
495
504
|
self.name = name
|
496
505
|
self.isFolder = True
|
497
506
|
self.isPinned = False
|
507
|
+
self.hasAttachments = False
|
498
508
|
self.dt = None
|
499
509
|
|
500
510
|
class Item(QStandardItem):
|
@@ -507,12 +517,16 @@ class Item(QStandardItem):
|
|
507
517
|
self.dt = None
|
508
518
|
|
509
519
|
class SectionItem(QStandardItem):
|
510
|
-
def __init__(self, title):
|
520
|
+
def __init__(self, title, group: bool = False):
|
511
521
|
super().__init__(title)
|
512
522
|
self.title = title
|
523
|
+
self.group = group
|
513
524
|
self.setSelectable(False)
|
514
525
|
self.setEnabled(False)
|
515
|
-
self.
|
526
|
+
if self.group:
|
527
|
+
self.setTextAlignment(QtCore.Qt.AlignLeft)
|
528
|
+
else:
|
529
|
+
self.setTextAlignment(QtCore.Qt.AlignRight)
|
516
530
|
font = self.font()
|
517
531
|
font.setBold(True)
|
518
532
|
self.setFont(font)
|
pygpt_net/utils.py
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: pygpt-net
|
3
|
-
Version: 2.4.
|
3
|
+
Version: 2.4.44
|
4
4
|
Summary: Desktop AI Assistant powered by models: OpenAI o1, GPT-4o, GPT-4, GPT-4 Vision, GPT-3.5, DALL-E 3, Llama 3, Mistral, Gemini, Claude, Bielik, and other models supported by Langchain, Llama Index, and Ollama. Features include chatbot, text completion, image generation, vision analysis, speech-to-text, internet access, file handling, command execution and more.
|
5
5
|
Home-page: https://pygpt.net
|
6
6
|
License: MIT
|
@@ -92,7 +92,7 @@ Description-Content-Type: text/markdown
|
|
92
92
|
|
93
93
|
[](https://snapcraft.io/pygpt)
|
94
94
|
|
95
|
-
Release: **2.4.
|
95
|
+
Release: **2.4.44** | build: **2024.12.16** | Python: **>=3.10, <3.12**
|
96
96
|
|
97
97
|
> Official website: https://pygpt.net | Documentation: https://pygpt.readthedocs.io
|
98
98
|
>
|
@@ -875,6 +875,8 @@ You can use your own files (for example, to analyze them) during any conversatio
|
|
875
875
|
|
876
876
|
**PyGPT** makes it simple for users to upload files and send them to the model for tasks like analysis, similar to attaching files in `ChatGPT`. There's a separate `Attachments` tab next to the text input area specifically for managing file uploads.
|
877
877
|
|
878
|
+
**Tip: Attachments uploaded in group are available in all contexts in group**.
|
879
|
+
|
878
880
|

|
879
881
|
|
880
882
|
You can use attachments to provide additional context to the conversation. Uploaded files will be converted into text using loaders from LlamaIndex, and then embedded into the vector store. You can upload any file format supported by the application through LlamaIndex. Supported formats include:
|
@@ -3350,8 +3352,10 @@ Allowed additional keyword arguments for built-in data loaders (Web and external
|
|
3350
3352
|
|
3351
3353
|
**SQL Database** (web_database)
|
3352
3354
|
|
3353
|
-
- `engine` - str, default: `None`
|
3354
3355
|
- `uri` - str, default: `None`
|
3356
|
+
|
3357
|
+
You can provide a single URI in the form of: `{scheme}://{user}:{password}@{host}:{port}/{dbname}`, or you can provide each field manually:
|
3358
|
+
|
3355
3359
|
- `scheme` - str, default: `None`
|
3356
3360
|
- `host` - str, default: `None`
|
3357
3361
|
- `port` - str, default: `None`
|
@@ -4024,6 +4028,17 @@ may consume additional tokens that are not displayed in the main window.
|
|
4024
4028
|
|
4025
4029
|
## Recent changes:
|
4026
4030
|
|
4031
|
+
**2.4.44 (2024-12-16)**
|
4032
|
+
|
4033
|
+
- Enhanced web data loaders.
|
4034
|
+
- Web loaders have been added to attachments, allowing external web content to be attached to context via the "+Web" button in the Attachments tab.
|
4035
|
+
- Improved handling of attachments in groups and added an attachment icon when a group contains attachments.
|
4036
|
+
|
4037
|
+
**2.4.43 (2024-12-15)**
|
4038
|
+
|
4039
|
+
- Fix: Bug on attachment upload.
|
4040
|
+
- Added: Attachments uploaded in groups are now available for all contexts in the group (beta).
|
4041
|
+
|
4027
4042
|
**2.4.42 (2024-12-15)**
|
4028
4043
|
|
4029
4044
|
- Added Mailer plugin, which allows sending and retrieving emails from the server, and reading them. It currently supports only SMTP.
|
@@ -1,9 +1,9 @@
|
|
1
|
-
CHANGELOG.md,sha256=
|
2
|
-
README.md,sha256=
|
1
|
+
CHANGELOG.md,sha256=m4N1EEll7KAfycdMcf5Tg3nVcpU9xg4F_WmWOHF47HM,80034
|
2
|
+
README.md,sha256=xakQJN7Wm7rPQTM5EI8z9PHEyclUqW8ZmFWLHqZYj_4,163298
|
3
3
|
icon.png,sha256=CzcINJaU23a9hNjsDlDNbyuiEvKZ4Wg6DQVYF6SpuRg,13970
|
4
|
-
pygpt_net/CHANGELOG.txt,sha256=
|
4
|
+
pygpt_net/CHANGELOG.txt,sha256=GN7mILQmcF8BykzMYvTQSrlZmsR8OMoNkXO19CurY4c,78566
|
5
5
|
pygpt_net/LICENSE,sha256=6Ku72-zJ8wO5VIR87UoJ5P_coCVjPghaFL9ZF2jLp7E,1146
|
6
|
-
pygpt_net/__init__.py,sha256=
|
6
|
+
pygpt_net/__init__.py,sha256=2eak42Z_YBkDVO_vdiUlpjRLVho0lc3-SeqWrGcV7BQ,1067
|
7
7
|
pygpt_net/app.py,sha256=i02M96uLngAs_XZCS1Mi84vb3Okx8ZZewbTdhCqFolM,16029
|
8
8
|
pygpt_net/config.py,sha256=Qc1FOBtTf3O6A6-6KoqUGtoJ0u8hXQeowvCVbZFwtik,16405
|
9
9
|
pygpt_net/container.py,sha256=BemiVZPpPNIzfB-ZvnZeeBPFu-AcX2c30OqYFylEjJc,4023
|
@@ -22,13 +22,13 @@ pygpt_net/controller/assistant/editor.py,sha256=yzGPzatwUBsEew3H75rNJWL0AdJRmiaF
|
|
22
22
|
pygpt_net/controller/assistant/files.py,sha256=0TmDcDyXpmDc7BsCFZaF6Oj-H4Yr4CxOgkusbBjtC5k,14777
|
23
23
|
pygpt_net/controller/assistant/store.py,sha256=t0h5EeJ9d-Cc_KzV6gQ3kZneoIeECp4iVHxvpJhjP-Q,15771
|
24
24
|
pygpt_net/controller/assistant/threads.py,sha256=wo1m5G2vWF5e3hU6380CHSdSlsCQRXs7hbsCEeL0fNk,20907
|
25
|
-
pygpt_net/controller/attachment.py,sha256=
|
25
|
+
pygpt_net/controller/attachment.py,sha256=to7QK1PwvvkW6gBUxXFIm0R_wh9HrgW8raZf9dJgVmo,20397
|
26
26
|
pygpt_net/controller/audio/__init__.py,sha256=ubQL5uBucuXCEqf2wKHI9uelB-wvrD5kK8cK2wvlLik,10382
|
27
27
|
pygpt_net/controller/calendar/__init__.py,sha256=s55RkCFQPFzdDoQ2zp3kohlNdpiWxdSxQtsaROeiigw,4424
|
28
28
|
pygpt_net/controller/calendar/note.py,sha256=y8Gkg35-aM1MfQ9P2NsRnmfSJw4Ps__9g6I1RhonR6s,11428
|
29
29
|
pygpt_net/controller/camera.py,sha256=chf19kngEXzMJt54Gnj1bJGHVsYaCX0QimJnJa9uigE,16207
|
30
30
|
pygpt_net/controller/chat/__init__.py,sha256=JUDt_DqxgpBROpr6k2jFQ03EIqXwmrAkwkkN0hN6jFU,3086
|
31
|
-
pygpt_net/controller/chat/attachment.py,sha256=
|
31
|
+
pygpt_net/controller/chat/attachment.py,sha256=6BzM8cKeazp12Ej6_3IH3I6NEMR5WON7N4PMY-i0h30,20974
|
32
32
|
pygpt_net/controller/chat/audio.py,sha256=QsU36McxqlRoP6B-NSeck968g1M8JhlLkLwGLunbapw,3210
|
33
33
|
pygpt_net/controller/chat/command.py,sha256=sop5xP9Sm0sLx7iTdBmCifGnF_nQw2cIb_pT6-0_ETg,2857
|
34
34
|
pygpt_net/controller/chat/common.py,sha256=-BJa2wHRHLDY-BHgp36GFhSr0yGNclkJGMiJQDktHaA,13958
|
@@ -51,7 +51,7 @@ pygpt_net/controller/config/field/dictionary.py,sha256=E8b3Quid_kdQQ54fuZJ4GdcPo
|
|
51
51
|
pygpt_net/controller/config/field/input.py,sha256=081bzm0-MSN6UYIsyDS4gAEhgojWswCNjGqTyyg4Ric,3663
|
52
52
|
pygpt_net/controller/config/field/slider.py,sha256=2XToxPkIvfRPcANa-um6HDQ8rLqpDGynDN05ocKdE1w,4692
|
53
53
|
pygpt_net/controller/config/field/textarea.py,sha256=CySGd21ljR3v3DX9V2WwSvmKVEihD547rnHiRngWuuc,2398
|
54
|
-
pygpt_net/controller/config/placeholder.py,sha256=
|
54
|
+
pygpt_net/controller/config/placeholder.py,sha256=hhqTEo-W0fgjNhf9tg0YgTpGJ_EV8agbwWAGMkwkt4w,12319
|
55
55
|
pygpt_net/controller/ctx/__init__.py,sha256=K1LslZqoIPtTphLDcrTxiqqJ6Fx1EZkJkbPEUCRws9Y,33913
|
56
56
|
pygpt_net/controller/ctx/common.py,sha256=yz1s4kVfxlRpd0XW_sygbmer66LqLxQA1e6O8Pz7FL4,6380
|
57
57
|
pygpt_net/controller/ctx/extra.py,sha256=eDl0_iu80pRtyMX5ub52mjvOo_xo-vb1kZmTt0Idyoo,8219
|
@@ -64,7 +64,7 @@ pygpt_net/controller/dialogs/info.py,sha256=7J3LwDX13BEXds5jVy5FQZAZgKIOGkqoOz8-
|
|
64
64
|
pygpt_net/controller/files.py,sha256=1Zm9L8-rhLG-GjRQDaOCkAFocAAobTQj-D3ILxLUGn4,16135
|
65
65
|
pygpt_net/controller/finder.py,sha256=4jl8EzTVR1Wc0dJkVwacAdvBiuF1CyOSKB4Qewju0Jw,4955
|
66
66
|
pygpt_net/controller/idx/__init__.py,sha256=kTpUrAiv6oU6DZmpHJ2uvAv28RylX3j8ZnRblD53iFc,10089
|
67
|
-
pygpt_net/controller/idx/common.py,sha256=
|
67
|
+
pygpt_net/controller/idx/common.py,sha256=QOjDy2XMUONeeaXl6ULJGO8ropzd5fphf3DidJgFkp0,2097
|
68
68
|
pygpt_net/controller/idx/indexer.py,sha256=5odavgOrqsTD_JZn6fyK0_fKH1BYWYJJAPhec3uxyM0,22303
|
69
69
|
pygpt_net/controller/idx/settings.py,sha256=orWd8ARxIBBs3MWJLjEKcqmrXLi6DvsLitsPvPd2fXU,7916
|
70
70
|
pygpt_net/controller/kernel/__init__.py,sha256=5Ks4FDuwxy76BxVF-QOcenCCpCX4byzYbHpuI7o3vr0,11231
|
@@ -121,8 +121,8 @@ pygpt_net/core/agents/tools.py,sha256=Fq9PtkFWWebT3-Sd9P8UsoqmdNFuJJNC4vgLNLYknF
|
|
121
121
|
pygpt_net/core/assistants/__init__.py,sha256=JVseBSjDJh9vJYjxoZVwU93EFTBJk_rUtRh_Ml550H0,4391
|
122
122
|
pygpt_net/core/assistants/files.py,sha256=rmIVxDNfLrpA95Ghs_mc5s8Yn4xiC7POynpZMzaBcd0,10150
|
123
123
|
pygpt_net/core/assistants/store.py,sha256=4zz8_10_f6o8gdRekEPo5Ox0tLwuZO8tKyVsz-AhYfs,8211
|
124
|
-
pygpt_net/core/attachments/__init__.py,sha256=
|
125
|
-
pygpt_net/core/attachments/context.py,sha256=
|
124
|
+
pygpt_net/core/attachments/__init__.py,sha256=bUqvfPqlpdXiGf3GvS1kTE45A0Q1Eo3kpUKypnRwDpk,12919
|
125
|
+
pygpt_net/core/attachments/context.py,sha256=tQM3z_gLI99Ox47XZtVcUnOdfaPYKQwXhm1EJaNikvE,25057
|
126
126
|
pygpt_net/core/attachments/worker.py,sha256=_aUCyi5-Mbz0IGfgY6QKBZ6MFz8aKRDfKasbBVXg7kU,1341
|
127
127
|
pygpt_net/core/audio/__init__.py,sha256=78xr4fNQbj-0eWGwq3XuSdbIi7iLYn414C5cn_TWp18,4766
|
128
128
|
pygpt_net/core/audio/context.py,sha256=2XpXWhDC09iUvc0FRMq9BF2_rnQ60ZG4Js6LbO5MohY,1115
|
@@ -142,12 +142,12 @@ pygpt_net/core/ctx/container.py,sha256=tdPHPRfTi8yGY1MZGgFtYtx2lvc5K9OTqhjde16wi
|
|
142
142
|
pygpt_net/core/ctx/idx.py,sha256=3Zi-48OWlU80si-Z7mVjnsc7TYATXK9g1dM0M5sXsV4,8167
|
143
143
|
pygpt_net/core/ctx/output.py,sha256=_F3RHOXIzApB3Gw9tFkfW9OC4Vb91CTOgrrN_yXziTY,7276
|
144
144
|
pygpt_net/core/ctx/reply.py,sha256=sgXe0YlkHbaITVhGU3NyMCa9Ph8EWFQjuA_BybohZQ4,1834
|
145
|
-
pygpt_net/core/db/__init__.py,sha256=
|
145
|
+
pygpt_net/core/db/__init__.py,sha256=GJBz5Y8fbnpcBm9sFvo1c-5DzuEkg9YOwW1hOQPwCgg,16372
|
146
146
|
pygpt_net/core/db/viewer.py,sha256=mXn94mwP5A-GOrVwY6gtEVBfvg7Fq5F79rK-Ap1hkwE,9131
|
147
147
|
pygpt_net/core/debug/__init__.py,sha256=yK1g62SRqatrnod8HCUGSuqa-rdNg9utGUX49FAF018,9559
|
148
148
|
pygpt_net/core/debug/agent.py,sha256=BylgNCl8n8aV2GCK5cQZVwobm1kjH_ETtgEiObilvgQ,1922
|
149
149
|
pygpt_net/core/debug/assistants.py,sha256=fUYVdMsdtfWd3njirvw2lvBv7CgPHdz_9ZSDVr2VsEo,2672
|
150
|
-
pygpt_net/core/debug/attachments.py,sha256=
|
150
|
+
pygpt_net/core/debug/attachments.py,sha256=K-iVhHUrLDxi89Hchf7lQEst21SOOd8SK8xfuCJ7kTU,1685
|
151
151
|
pygpt_net/core/debug/config.py,sha256=MSxRLVIWZ0VHrB4p66fyM-nfQLMi2D6enDzJLDQEb40,2305
|
152
152
|
pygpt_net/core/debug/context.py,sha256=ePQ1UedYr3K9UIESqXOE2PHkSZ2NCB52aB7xgmzfGCY,5750
|
153
153
|
pygpt_net/core/debug/db.py,sha256=TQtNpCjrcFw943nae3OIyq0af_okjr-aTfFKS_QhQQk,776
|
@@ -177,16 +177,18 @@ pygpt_net/core/filesystem/packer.py,sha256=9CmQgq-lja2QGtc0JFqh197mLLViJ7TDPc8fV
|
|
177
177
|
pygpt_net/core/filesystem/types.py,sha256=1HFubxAHYup_SLQ7SlR5EvZb3KgVyd8K8vBRUkTcqaA,3458
|
178
178
|
pygpt_net/core/filesystem/url.py,sha256=cXctpPHBY1-fwn7vFqfZi3CeP73n2nFXF-ZnePiRk7U,3236
|
179
179
|
pygpt_net/core/history.py,sha256=93kjlEfVowxR8A_yoPqDINfYHsKlQnh9ii2klsWmUyE,3125
|
180
|
-
pygpt_net/core/idx/__init__.py,sha256=
|
180
|
+
pygpt_net/core/idx/__init__.py,sha256=I5IPrC7ZzEvYVe4mLlGbyTvV_d-V49LOtVd2edRVCsM,17965
|
181
181
|
pygpt_net/core/idx/chat.py,sha256=VN5rflGILPX8rNxwbllFOWBIB_NBFEco1qGtxMjr8PQ,21398
|
182
182
|
pygpt_net/core/idx/context.py,sha256=uISNiKprcA_Qv9t0PbMj1vDWCm1eccYbk5iGS-QcfG0,3143
|
183
|
-
pygpt_net/core/idx/indexing.py,sha256=
|
183
|
+
pygpt_net/core/idx/indexing.py,sha256=IoQQYdF0J75lH02Nj3LpWpEqhkXexAhvLwW4o1GX7Fs,43048
|
184
184
|
pygpt_net/core/idx/llm.py,sha256=oTyU1t-xEtadRl8Vkzpp_IWN4bXTtbLQsnhiA_9myMQ,5159
|
185
185
|
pygpt_net/core/idx/metadata.py,sha256=69jrZ54S2wYZ3HzVooozADkbjgK2Rg4MuXTgfd6rcsI,5445
|
186
186
|
pygpt_net/core/idx/types/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
187
187
|
pygpt_net/core/idx/types/ctx.py,sha256=IsmwGHAPuvb39E_7TfYr66ljv6v1svNKVDw5jQH2FGk,3409
|
188
188
|
pygpt_net/core/idx/types/external.py,sha256=Pu3hoXrmomGLCL6kVLNPtlrVlO2jEOl7TM8YV0dh9yA,5130
|
189
189
|
pygpt_net/core/idx/types/files.py,sha256=FzomPoQncYx3WtWNbHTjSNuTOP8x_z7f3ypybdabf1c,4039
|
190
|
+
pygpt_net/core/idx/ui/__init__.py,sha256=nfCat59itYOlE7hgn-Y5iemtkgU2NWSnKZK_ffZhoa8,719
|
191
|
+
pygpt_net/core/idx/ui/loaders.py,sha256=15-5Q5C9jGcLZkNkcqZDfAsQqwzLCZOFzHXCTGiYN6k,8732
|
190
192
|
pygpt_net/core/idx/worker.py,sha256=20rIDSHWSB0yDixAWuDRWAXZMN_-BD1z6YGW4_JE9XE,3803
|
191
193
|
pygpt_net/core/image.py,sha256=rQrDze74AsggafIOTf2RfJFnCh-1ZVIFS1zHkNzjgsU,3497
|
192
194
|
pygpt_net/core/info.py,sha256=YJEDJnGVMmMp0sQ0tEDyri6Kr94CopcZF6L97w9dXDg,829
|
@@ -244,9 +246,9 @@ pygpt_net/css_rc.py,sha256=i13kX7irhbYCWZ5yJbcMmnkFp_UfS4PYnvRFSPF7XXo,11349
|
|
244
246
|
pygpt_net/data/audio/click_off.mp3,sha256=aNiRDP1pt-Jy7ija4YKCNFBwvGWbzU460F4pZWZDS90,65201
|
245
247
|
pygpt_net/data/audio/click_on.mp3,sha256=qfdsSnthAEHVXzeyN4LlC0OvXuyW8p7stb7VXtlvZ1k,65201
|
246
248
|
pygpt_net/data/audio/ok.mp3,sha256=LTiV32pEBkpUGBkKkcOdOFB7Eyt_QoP2Nv6c5AaXftk,32256
|
247
|
-
pygpt_net/data/config/config.json,sha256=
|
248
|
-
pygpt_net/data/config/models.json,sha256=
|
249
|
-
pygpt_net/data/config/modes.json,sha256=
|
249
|
+
pygpt_net/data/config/config.json,sha256=nyfGaUrFyYTGnjMUxCfsyecCEFLz-10GhXlFcHN7TO0,19535
|
250
|
+
pygpt_net/data/config/models.json,sha256=1mq-iJ-9wtYiY8iEfg08sK85ZiZkQPvF-9YH8_nLo1k,48872
|
251
|
+
pygpt_net/data/config/modes.json,sha256=78G810ct4mkFv3c-vDlehDYAAADwjYESdE0_Xb8M7t4,1923
|
250
252
|
pygpt_net/data/config/presets/agent_openai.json,sha256=vMTR-soRBiEZrpJJHuFLWyx8a3Ez_BqtqjyXgxCAM_Q,733
|
251
253
|
pygpt_net/data/config/presets/agent_openai_assistant.json,sha256=awJw9lNTGpKML6SJUShVn7lv8AXh0oic7wBeyoN7AYs,798
|
252
254
|
pygpt_net/data/config/presets/agent_planner.json,sha256=a6Rv58Bnm2STNWB0Rw_dGhnsz6Lb3J8_GwsUVZaTIXc,742
|
@@ -266,7 +268,7 @@ pygpt_net/data/config/presets/current.vision.json,sha256=x1ll5B3ROSKYQA6l27PRGXU
|
|
266
268
|
pygpt_net/data/config/presets/dalle_white_cat.json,sha256=esqUb43cqY8dAo7B5u99tRC0MBV5lmlrVLnJhTSkL8w,552
|
267
269
|
pygpt_net/data/config/presets/joke_agent.json,sha256=R6n9P7KRb0s-vZWZE7kHdlOfXAx1yYrPmUw8uLyw8OE,474
|
268
270
|
pygpt_net/data/config/presets/joke_expert.json,sha256=aFBFCY97Uba71rRq0MSeakXaOj8yuaUqekQ842YHv64,683
|
269
|
-
pygpt_net/data/config/settings.json,sha256=
|
271
|
+
pygpt_net/data/config/settings.json,sha256=Jgv9eyd8RwTsJyYTIVp0hy0nKedm-NanKdlkH36g7hw,46352
|
270
272
|
pygpt_net/data/config/settings_section.json,sha256=ZNXZRobAL9-Cbe7chIJZXVkUFbUvqKDxE34g3ZLS0t4,934
|
271
273
|
pygpt_net/data/css/fix_windows.css,sha256=Mks14Vg25ncbMqZJfAMStrhvZmgHF6kU75ohTWRZeI8,664
|
272
274
|
pygpt_net/data/css/markdown.css,sha256=yaoJPogZZ_ghbqP8vTXTycwVyD61Ik5_033NpzuUzC0,1122
|
@@ -1482,14 +1484,14 @@ pygpt_net/data/js/katex/fonts/KaTeX_Typewriter-Regular.woff,sha256=4U_tArGrp86fW
|
|
1482
1484
|
pygpt_net/data/js/katex/fonts/KaTeX_Typewriter-Regular.woff2,sha256=cdUX1ngneHz6vfGGkUzDNY7aU543kxlB8rL9SiH2jAs,13568
|
1483
1485
|
pygpt_net/data/js/katex/katex.min.css,sha256=lVaKnUaQNG4pI71WHffQZVALLQF4LMZEk4nOia8U9ow,23532
|
1484
1486
|
pygpt_net/data/js/katex/katex.min.js,sha256=KLASOtKS2x8pUxWVzCDmlWJ4jhuLb0vtrgakbD6gDDo,276757
|
1485
|
-
pygpt_net/data/locale/locale.de.ini,sha256=
|
1486
|
-
pygpt_net/data/locale/locale.en.ini,sha256=
|
1487
|
-
pygpt_net/data/locale/locale.es.ini,sha256=
|
1488
|
-
pygpt_net/data/locale/locale.fr.ini,sha256=
|
1489
|
-
pygpt_net/data/locale/locale.it.ini,sha256=
|
1490
|
-
pygpt_net/data/locale/locale.pl.ini,sha256=
|
1491
|
-
pygpt_net/data/locale/locale.uk.ini,sha256=
|
1492
|
-
pygpt_net/data/locale/locale.zh.ini,sha256=
|
1487
|
+
pygpt_net/data/locale/locale.de.ini,sha256=ykqUVe293YgrRk77J_S56y2fw4-6dlztNlc49QMLl_A,62524
|
1488
|
+
pygpt_net/data/locale/locale.en.ini,sha256=xFzTrYqSRK2Fu37Y1gioekVmEj1FdFRQMycuXH6Zs1s,75107
|
1489
|
+
pygpt_net/data/locale/locale.es.ini,sha256=o9XR8oUw6QhLZIf0nRFGwIRXZG_yYAQEI6didNBnnHM,62756
|
1490
|
+
pygpt_net/data/locale/locale.fr.ini,sha256=pFw45FEE7nPYfinQLdqsnz0VmNhUxIGzewPkvEEGsW0,64792
|
1491
|
+
pygpt_net/data/locale/locale.it.ini,sha256=JLBmTEpka0Xs5P-GBmCVQW6GBbvV6rAaW7zO0HAI_Rc,61616
|
1492
|
+
pygpt_net/data/locale/locale.pl.ini,sha256=yKoi9aJtsByvKCWmu9NVuUhMvearGisqk46q0vzdxxw,61683
|
1493
|
+
pygpt_net/data/locale/locale.uk.ini,sha256=eEQJDwMaK5KV7a3JpgIGnPkzVdPajCc-QnPI7pSILQ0,86080
|
1494
|
+
pygpt_net/data/locale/locale.zh.ini,sha256=XqqWOSG5H7WRtpAHYRQm35R3mrUr9b1t2BdWK0qUxFc,63426
|
1493
1495
|
pygpt_net/data/locale/plugin.agent.de.ini,sha256=BY28KpfFvgfVYJzcw2o5ScWnR4uuErIYGyc3NVHlmTw,1714
|
1494
1496
|
pygpt_net/data/locale/plugin.agent.en.ini,sha256=88LkZUpilbV9l4QDbMyIdq_K9sbWt-CQPpavEttPjJU,1489
|
1495
1497
|
pygpt_net/data/locale/plugin.agent.es.ini,sha256=bqaJQne8HPKFVtZ8Ukzo1TSqVW41yhYbGUqW3j2x1p8,1680
|
@@ -1618,7 +1620,7 @@ pygpt_net/data/locale/plugin.idx_llama_index.it.ini,sha256=IL-BuLg3lIPq8IEvcyX7L
|
|
1618
1620
|
pygpt_net/data/locale/plugin.idx_llama_index.pl.ini,sha256=KnvWfadmqGMDKLggI7L89x-W-wszk6ZF01pOVAsTb-Y,2162
|
1619
1621
|
pygpt_net/data/locale/plugin.idx_llama_index.uk.ini,sha256=MUI_6djlLhOMqunPDtpgDnXrhkSU_NPKfMAHBN2ASQU,3288
|
1620
1622
|
pygpt_net/data/locale/plugin.idx_llama_index.zh.ini,sha256=_nGvNr24Krdh69nOz1XkZEbIVAInjli8qBVZXASqaTQ,1854
|
1621
|
-
pygpt_net/data/locale/plugin.mailer.en.ini,sha256=
|
1623
|
+
pygpt_net/data/locale/plugin.mailer.en.ini,sha256=wlthaFlYukCdo-TnXaPF79uIfmg2ySkRi-O1gfWT7wc,962
|
1622
1624
|
pygpt_net/data/locale/plugin.openai_dalle.de.ini,sha256=ooTDwaBiadq4-simQJND-B_AuB7xna-tzGUIMaOWGB8,452
|
1623
1625
|
pygpt_net/data/locale/plugin.openai_dalle.en.ini,sha256=i7LIyd_AZmDf430CxRtuhbj3JTP20naDP1mc2CXzu5M,397
|
1624
1626
|
pygpt_net/data/locale/plugin.openai_dalle.es.ini,sha256=U_pd3VK_-7VjNYwcdzHpY8I_ycOxoeOx5HHgabypOk0,459
|
@@ -1665,9 +1667,9 @@ pygpt_net/icons.qrc,sha256=7etxjwGtJm61IfTFIloyO7yonX06Jc1ZoSniGUFTho4,14981
|
|
1665
1667
|
pygpt_net/icons_rc.py,sha256=FWRllE_kudX-jI4lOto-Pvf5NDCFDrpAxuQgXgldg6k,92180
|
1666
1668
|
pygpt_net/item/__init__.py,sha256=jQQgG9u_ZLsZWXustoc1uvC-abUvj4RBKPAM30-f2Kc,488
|
1667
1669
|
pygpt_net/item/assistant.py,sha256=1X34PaUgr993MfVVtBY6rGMNTSdSv6oKKPRqHBQkHuk,9587
|
1668
|
-
pygpt_net/item/attachment.py,sha256=
|
1670
|
+
pygpt_net/item/attachment.py,sha256=N6BNDxqtQQ3LZt4hn3aZX-MurCDPQ3hJup2ZquU5LXY,2813
|
1669
1671
|
pygpt_net/item/calendar_note.py,sha256=ZXTIChVaH_E7ju_CJ2LI77C4ikvd2G-c3tRo7UG9uwc,2108
|
1670
|
-
pygpt_net/item/ctx.py,sha256=
|
1672
|
+
pygpt_net/item/ctx.py,sha256=kfY_t8-SCKjeSm39xtG2C1sbCBxmXWc0yNr0yf85gtA,18904
|
1671
1673
|
pygpt_net/item/index.py,sha256=gDQYPlhwHF0QVGwX4TFGxHyO7pt5tqHcuyc3DPgPCA0,1681
|
1672
1674
|
pygpt_net/item/mode.py,sha256=bhX6ZOvTKsiLI6-N-7cuJ_9izlAqq6bsXF1FjufJvfw,600
|
1673
1675
|
pygpt_net/item/model.py,sha256=_VxfztYd0HBnsBsymGLGqemM2zwPjWKlEEWxy3a1cjw,7482
|
@@ -1690,7 +1692,8 @@ pygpt_net/migrations/Version20240426050000.py,sha256=AK8BMUyUNd1_FJstFOSyZBCdbhP
|
|
1690
1692
|
pygpt_net/migrations/Version20240501030000.py,sha256=Vt0ullWeCLToNKpyJB7h5ccMRGv6N258HTweegKY4r4,1052
|
1691
1693
|
pygpt_net/migrations/Version20241122130000.py,sha256=tbpeW-6dySV4hq8_8RB-_mLsJlWzLFbLlWJ4c-MzBRQ,1174
|
1692
1694
|
pygpt_net/migrations/Version20241126170000.py,sha256=XRjS3W5H0D99l_4CM_YGLInsL0VVkDlIJYE1lNONalk,956
|
1693
|
-
pygpt_net/migrations/
|
1695
|
+
pygpt_net/migrations/Version20241215110000.py,sha256=ATf9IoiY62Mi77zSz5z_Pu0DTn1pTAIVFMEq-LtshIY,858
|
1696
|
+
pygpt_net/migrations/__init__.py,sha256=tZXoFSMVQqmbG3Se3ZpuYAmA51p772HhoSoCXbXblJE,2316
|
1694
1697
|
pygpt_net/migrations/base.py,sha256=TXkG1Fe2kn-cMCSYZ2e-IzuGqpkuvTej0bbOOj2ZJNU,614
|
1695
1698
|
pygpt_net/plugin/__init__.py,sha256=1SGZ5i2G1UnKQpyj_HYkN0t-HLepD6jU_ICw1waaxlk,488
|
1696
1699
|
pygpt_net/plugin/agent/__init__.py,sha256=GPbnpS9djcfzuPRxM2mu0hpUPRa51KtUR27Al6zqv3g,6188
|
@@ -1723,7 +1726,7 @@ pygpt_net/plugin/cmd_code_interpreter/worker.py,sha256=U5ahn_LV7xGm_S05AfQlLM_de
|
|
1723
1726
|
pygpt_net/plugin/cmd_custom/__init__.py,sha256=L8hD1WkbRBdNsbR4iHbgSXHWszF6DxNRbgEIEi2Q_og,3911
|
1724
1727
|
pygpt_net/plugin/cmd_custom/config.py,sha256=PuD18kxtfBr2iag4WYnpqmO29ZMThktVT859KRmBnNA,2026
|
1725
1728
|
pygpt_net/plugin/cmd_custom/worker.py,sha256=iXMZK24rNYupvOQt-wB70gJsLUvi7Zpo7TgPWBvwe4s,4091
|
1726
|
-
pygpt_net/plugin/cmd_files/__init__.py,sha256=
|
1729
|
+
pygpt_net/plugin/cmd_files/__init__.py,sha256=r8dWyiWBKkchSKRvaKtg_-qv0bxC4olyfS-vV-em8QE,4215
|
1727
1730
|
pygpt_net/plugin/cmd_files/config.py,sha256=q3W8Ur6prnzRMg8hg1bbdwhUrfPiUKA3E-9hDw547cI,13293
|
1728
1731
|
pygpt_net/plugin/cmd_files/output.py,sha256=PiSslXXc7TeTzeuXh_MBEh3I4PuIDStr_1i2ARuPXFM,1987
|
1729
1732
|
pygpt_net/plugin/cmd_files/worker.py,sha256=kcbt6EaBHDpcnGdbMQQkmySw9DQKnob3KI0aeVopL2c,31728
|
@@ -1807,7 +1810,7 @@ pygpt_net/provider/core/assistant_store/db_sqlite/utils.py,sha256=O_4sbgxfk1S6eM
|
|
1807
1810
|
pygpt_net/provider/core/assistant_store/json_file.py,sha256=mi5LgclT597jfE7nDcc62TpIwDge3zV1r6igJ_tJqi8,4377
|
1808
1811
|
pygpt_net/provider/core/attachment/__init__.py,sha256=jQQgG9u_ZLsZWXustoc1uvC-abUvj4RBKPAM30-f2Kc,488
|
1809
1812
|
pygpt_net/provider/core/attachment/base.py,sha256=ARG3WPyrBTOQ3pPt4OIwuCA6hqFZiRknrRh98AHOwlw,1293
|
1810
|
-
pygpt_net/provider/core/attachment/json_file.py,sha256=
|
1813
|
+
pygpt_net/provider/core/attachment/json_file.py,sha256=GD1GIF4TQJRuPo3BiGJ2OxUvDjOTygolda8P3iCRUec,5711
|
1811
1814
|
pygpt_net/provider/core/calendar/__init__.py,sha256=jQQgG9u_ZLsZWXustoc1uvC-abUvj4RBKPAM30-f2Kc,488
|
1812
1815
|
pygpt_net/provider/core/calendar/base.py,sha256=COQNCPVZmwVNihxTaxeEc6zaXEQ6WYsIiz3-L9NhbMQ,1393
|
1813
1816
|
pygpt_net/provider/core/calendar/db_sqlite/__init__.py,sha256=Q78xHqxIhnjukQmLISQInzN0lPPdFxiDUrs-RBUDF8E,4067
|
@@ -1816,13 +1819,13 @@ pygpt_net/provider/core/calendar/db_sqlite/storage.py,sha256=QDclQCQdr4QyRIqjgGX
|
|
1816
1819
|
pygpt_net/provider/core/config/__init__.py,sha256=jQQgG9u_ZLsZWXustoc1uvC-abUvj4RBKPAM30-f2Kc,488
|
1817
1820
|
pygpt_net/provider/core/config/base.py,sha256=cbvzbMNqL2XgC-36gGubnU37t94AX7LEw0lecb2Nm80,1365
|
1818
1821
|
pygpt_net/provider/core/config/json_file.py,sha256=P78SRQpNr_nF7TYftYLnHl_DVo7GLPNs4_lvw97sqq8,5122
|
1819
|
-
pygpt_net/provider/core/config/patch.py,sha256=
|
1822
|
+
pygpt_net/provider/core/config/patch.py,sha256=mutVLJ_SYNrUIXwzYSY9YrHhPfpcY-cDyUofKXawbVY,93971
|
1820
1823
|
pygpt_net/provider/core/ctx/__init__.py,sha256=jQQgG9u_ZLsZWXustoc1uvC-abUvj4RBKPAM30-f2Kc,488
|
1821
1824
|
pygpt_net/provider/core/ctx/base.py,sha256=Tfb4MDNe9BXXPU3lbzpdYwJF9S1oa2-mzgu5XT4It9g,3003
|
1822
1825
|
pygpt_net/provider/core/ctx/db_sqlite/__init__.py,sha256=G2pB7kZfREJRLJZmfv3DKTslXC-K7EhNN2sn56q6BFA,11753
|
1823
1826
|
pygpt_net/provider/core/ctx/db_sqlite/patch.py,sha256=rQO893JsyYxXdL2sFSPvcsF1KgXv13VonpY-tU284go,3101
|
1824
|
-
pygpt_net/provider/core/ctx/db_sqlite/storage.py,sha256=
|
1825
|
-
pygpt_net/provider/core/ctx/db_sqlite/utils.py,sha256=
|
1827
|
+
pygpt_net/provider/core/ctx/db_sqlite/storage.py,sha256=YkyS29h3vroGyiAdHdW5A3T5zF3KbQXpG3pd6hsQRJk,43714
|
1828
|
+
pygpt_net/provider/core/ctx/db_sqlite/utils.py,sha256=XuZYx-z9FEmt_TG5yFZ-5Zf6PgbSkG7Svx5oLEHXigY,8953
|
1826
1829
|
pygpt_net/provider/core/ctx/json_file.py,sha256=g1U4vOxfyA2jydwYvPQ9HpUIQihyBK2K4K6SQ75jEEs,11665
|
1827
1830
|
pygpt_net/provider/core/history/__init__.py,sha256=jQQgG9u_ZLsZWXustoc1uvC-abUvj4RBKPAM30-f2Kc,488
|
1828
1831
|
pygpt_net/provider/core/history/base.py,sha256=Y724aEXVA5uPAhXAdWGm9_4BmGR3n4uRrf3aQenru0U,863
|
@@ -1885,7 +1888,7 @@ pygpt_net/provider/llms/local.py,sha256=s6Myi1dZ2fTCCno6UHT-gbffe0g5b_sYxnvMj5P8
|
|
1885
1888
|
pygpt_net/provider/llms/ollama.py,sha256=ZxCKKSrL-YVIY1erBpKz8eUoOeChAFs83zSZ-hLHQro,3699
|
1886
1889
|
pygpt_net/provider/llms/openai.py,sha256=l2ENhiTBsTrh2vY_KB-EcyhqqQuQkuiRqgIxnK1z8gc,3730
|
1887
1890
|
pygpt_net/provider/loaders/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
1888
|
-
pygpt_net/provider/loaders/base.py,sha256=
|
1891
|
+
pygpt_net/provider/loaders/base.py,sha256=3-qzzGAF2jxhriNHjE3Y2GtDXxs1_2_BIloaVJS4qzQ,3101
|
1889
1892
|
pygpt_net/provider/loaders/file_csv.py,sha256=sV2JrQ4EqdWc2-8dMjjBvT8x56ux07eB5jyO61EX3pQ,1258
|
1890
1893
|
pygpt_net/provider/loaders/file_docx.py,sha256=jWdF54bCWjOQgxezLtE2o25LNPIv9OgcnqcLoJDT4RA,1032
|
1891
1894
|
pygpt_net/provider/loaders/file_epub.py,sha256=sIB3ORYNdyFUrQrbiSLKuQ9OE2yuAP0628chvdfK8oA,1022
|
@@ -1927,29 +1930,29 @@ pygpt_net/provider/loaders/hub/video_audio/base.py,sha256=A-NDZ6IKUgn8F5WN7bWaPY
|
|
1927
1930
|
pygpt_net/provider/loaders/hub/web_page/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
1928
1931
|
pygpt_net/provider/loaders/hub/web_page/base.py,sha256=jYiPKC-wVZRE5ygVcetMsJnlPNxlHWbz9fvUpCJOkG8,556
|
1929
1932
|
pygpt_net/provider/loaders/hub/yt/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
1930
|
-
pygpt_net/provider/loaders/hub/yt/base.py,sha256=
|
1933
|
+
pygpt_net/provider/loaders/hub/yt/base.py,sha256=HiX-eDdeL8FJnLKj8rulAtiCEAWzJ5y3WzfBusK55tI,2554
|
1931
1934
|
pygpt_net/provider/loaders/hub/yt/utils.py,sha256=uDEaDQJGrcyMBeNeazJmXVVDIJOyPwR7msz3CoBTM7s,545
|
1932
1935
|
pygpt_net/provider/loaders/web_bitbucket.py,sha256=FwzBTfP0pJQD8pn0FurpOOwqMS-d-mEUQKt2gxC6pWc,3626
|
1933
1936
|
pygpt_net/provider/loaders/web_chatgpt_retrieval.py,sha256=Lh0cWcbx5XFMiLHIpB1qrKvnzYIWSaR59w0_m-2ZpYQ,2580
|
1934
|
-
pygpt_net/provider/loaders/web_database.py,sha256=
|
1935
|
-
pygpt_net/provider/loaders/web_github_issues.py,sha256=
|
1937
|
+
pygpt_net/provider/loaders/web_database.py,sha256=zuQLI__a5CO7f-5fwSWZ1ca7bTZWd6D1AyMhG7aOg2A,3293
|
1938
|
+
pygpt_net/provider/loaders/web_github_issues.py,sha256=EByqcD7yY-owRRuTW0sN81iX43wpiClWi4I-byVUVrc,4170
|
1936
1939
|
pygpt_net/provider/loaders/web_github_repo.py,sha256=1w2vNHwa8ecIbAq9Lp8KygDvOkUQCX8hl_Vohwf3Pv8,4377
|
1937
|
-
pygpt_net/provider/loaders/web_google_calendar.py,sha256=
|
1938
|
-
pygpt_net/provider/loaders/web_google_docs.py,sha256=
|
1939
|
-
pygpt_net/provider/loaders/web_google_drive.py,sha256=
|
1940
|
-
pygpt_net/provider/loaders/web_google_gmail.py,sha256=
|
1941
|
-
pygpt_net/provider/loaders/web_google_keep.py,sha256=
|
1942
|
-
pygpt_net/provider/loaders/web_google_sheets.py,sha256=
|
1943
|
-
pygpt_net/provider/loaders/web_microsoft_onedrive.py,sha256=
|
1944
|
-
pygpt_net/provider/loaders/web_page.py,sha256=
|
1945
|
-
pygpt_net/provider/loaders/web_rss.py,sha256=
|
1946
|
-
pygpt_net/provider/loaders/web_sitemap.py,sha256=
|
1947
|
-
pygpt_net/provider/loaders/web_twitter.py,sha256=
|
1948
|
-
pygpt_net/provider/loaders/web_yt.py,sha256=
|
1940
|
+
pygpt_net/provider/loaders/web_google_calendar.py,sha256=mHVQ3F9VC2y8brjyh_BLk9_7Mth3RVy2iYWeFzwm0JE,3366
|
1941
|
+
pygpt_net/provider/loaders/web_google_docs.py,sha256=HS0g2ibhY-6jWldh7hxl7ymxYCfsE4uY_KLN3sAJyiM,2821
|
1942
|
+
pygpt_net/provider/loaders/web_google_drive.py,sha256=UPM2jG2Cp6K9oj2J7df-1CEsbRxfqx1yTT63DjDqtN4,4244
|
1943
|
+
pygpt_net/provider/loaders/web_google_gmail.py,sha256=3CCoYOQXU04rAJGhLYl7hpXtOPp1dB40TqGMPFJF1ME,2756
|
1944
|
+
pygpt_net/provider/loaders/web_google_keep.py,sha256=kcD5tQa66lCxOoYRR0mwPqhCwBMZ3JtEgKV8l1mCwUQ,2698
|
1945
|
+
pygpt_net/provider/loaders/web_google_sheets.py,sha256=iZcVFi6xlmJ8axj-FKUYQu5voS9PyB8x3jyh6h-hgL8,2891
|
1946
|
+
pygpt_net/provider/loaders/web_microsoft_onedrive.py,sha256=HGD2jRMPlqcC-cGJil3kgPE_Ivz3MJFgvuX7yHKhIXE,4924
|
1947
|
+
pygpt_net/provider/loaders/web_page.py,sha256=PfUF6WaOZO-YhHSCW0wtc96hNyIkq81Ma8JQUEqxqxA,1719
|
1948
|
+
pygpt_net/provider/loaders/web_rss.py,sha256=Q7V8AniH7z93kXKNrg1pBy8OuvyWidZgScI6O3kgR40,1628
|
1949
|
+
pygpt_net/provider/loaders/web_sitemap.py,sha256=V9XiQMHpjWPWieANhrpqmRVO9AMJ7j1U__0CsCWS0Y0,1897
|
1950
|
+
pygpt_net/provider/loaders/web_twitter.py,sha256=geW_fHMfl-Uh9TmoE3NAk8Ifk0h1VBxMreP7EgKbxhA,2954
|
1951
|
+
pygpt_net/provider/loaders/web_yt.py,sha256=1j68SbIS6h7Da3pcSPvDnBw5K_jjX3huT39WLQSmArY,2739
|
1949
1952
|
pygpt_net/provider/vector_stores/__init__.py,sha256=ep6B8xlMHcvQTq48Z_4Tr2csO4xEJ4Lqr0Pu--_eTHk,8338
|
1950
1953
|
pygpt_net/provider/vector_stores/base.py,sha256=5beaRqewHzJonWzSAc0M3FWt-RNd90HT_emazkVUEeA,4318
|
1951
1954
|
pygpt_net/provider/vector_stores/chroma.py,sha256=fjSLEqiLcaM7Xnqlo8ARuBjI8tgBoiohXEjnNdfc1Zo,3186
|
1952
|
-
pygpt_net/provider/vector_stores/ctx_attachment.py,sha256=
|
1955
|
+
pygpt_net/provider/vector_stores/ctx_attachment.py,sha256=wRU2rtsTl2p3KR6uSOliGXLHRweTJ3aM1TrpQyKUvGc,3324
|
1953
1956
|
pygpt_net/provider/vector_stores/elasticsearch.py,sha256=iuSo7s4B1XgOzIV5GZR_l0QXKwW25LN72jsaZ04tQJk,3165
|
1954
1957
|
pygpt_net/provider/vector_stores/pinecode.py,sha256=pKnn7JEYVPnt1yE2sWSg60iS1mHLaCGUhytihsU9ydA,5190
|
1955
1958
|
pygpt_net/provider/vector_stores/redis.py,sha256=qfYS7MZq3hrU4QP3a--7itQYBZheqUuxAyUYzedpu2Q,3196
|
@@ -1975,13 +1978,13 @@ pygpt_net/tools/html_canvas/ui/widgets.py,sha256=dDytkAZBP4sdmP6sLrPvxkK_MQqYZEj
|
|
1975
1978
|
pygpt_net/tools/image_viewer/__init__.py,sha256=8cIcEG9R0HGUXwikD8XOxQHqt0QZkgB4LzpiQ4GAWwU,9269
|
1976
1979
|
pygpt_net/tools/image_viewer/ui/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
1977
1980
|
pygpt_net/tools/image_viewer/ui/dialogs.py,sha256=WrSYyIRTuaLuFPCsA8iom_9Fn8nVY8eb4-YSa9mG0EA,4989
|
1978
|
-
pygpt_net/tools/indexer/__init__.py,sha256=
|
1981
|
+
pygpt_net/tools/indexer/__init__.py,sha256=W0t5AkHf0WfAUWm0XP1lmvj-_5nc3L5if0cLQrrtJ5I,17272
|
1979
1982
|
pygpt_net/tools/indexer/ui/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
1980
1983
|
pygpt_net/tools/indexer/ui/browse.py,sha256=N27NI28VejG52UfZr0FJi0lsjYkmRh9-JpOoJ2EVTtI,1438
|
1981
1984
|
pygpt_net/tools/indexer/ui/ctx.py,sha256=HkJpBOL0MoY30dZXpsx6Em_hVo8TETxd5gyXxOtbL7U,4355
|
1982
1985
|
pygpt_net/tools/indexer/ui/dialogs.py,sha256=u59bNO9lwBHSu3-jVK2RUPHYNRd99Wo3VgKcLm4cszA,7985
|
1983
1986
|
pygpt_net/tools/indexer/ui/files.py,sha256=Y9xV6DO3k5F1nGfO-IGHN3jY6QrihUyUgj53ino04aQ,4034
|
1984
|
-
pygpt_net/tools/indexer/ui/web.py,sha256=
|
1987
|
+
pygpt_net/tools/indexer/ui/web.py,sha256=_u1xTYYc9MXNdXJcU0PlfEOGCNAJ1f5NSHVZdSzADqQ,8308
|
1985
1988
|
pygpt_net/tools/indexer/ui/widgets.py,sha256=wEFh9UyzFvsmYeJZtz6yDMk27THeDCT9Fq9DajFpnm4,3562
|
1986
1989
|
pygpt_net/tools/media_player/__init__.py,sha256=S84y_Yig4Rgn-xZzgWqZ61MRfsdefDgzqwrxfLfRS9w,6104
|
1987
1990
|
pygpt_net/tools/media_player/ui/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
@@ -2035,7 +2038,7 @@ pygpt_net/ui/layout/chat/markdown.py,sha256=hjYY8Da1z0IZZD086_csMcDY1wwagpuQTDZ-
|
|
2035
2038
|
pygpt_net/ui/layout/chat/output.py,sha256=pS6s2tn1yZU1kukR1s6G3B_FFw6CRiTQtodvu9_9QeM,9978
|
2036
2039
|
pygpt_net/ui/layout/chat/painter.py,sha256=2yGU9GET5PpcGteGyWcHTtodKqAL7rxrqxhQ10vhodM,5471
|
2037
2040
|
pygpt_net/ui/layout/ctx/__init__.py,sha256=txpvk6XMqZjBckstlWhn4laQnHBVpcD_7kshER_ymf4,1850
|
2038
|
-
pygpt_net/ui/layout/ctx/ctx_list.py,sha256=
|
2041
|
+
pygpt_net/ui/layout/ctx/ctx_list.py,sha256=gPvcqyWXmxv3t-PeHCythg61Sc-hmQFtxg1LMcF4DYU,11958
|
2039
2042
|
pygpt_net/ui/layout/ctx/search_input.py,sha256=yM_X2sxeR09JRqmkd2R4z82GRo3I1k4rOb75PgIFydE,1441
|
2040
2043
|
pygpt_net/ui/layout/ctx/video.py,sha256=RzzyGObhlXamXIJHRqA9D2o6eVVulF4kNPVf3BkURGI,1068
|
2041
2044
|
pygpt_net/ui/layout/status.py,sha256=_XqhRz0yrCWNjes-2XCAo55wPZst-F8gm6TtyBHpaSA,1954
|
@@ -2098,14 +2101,14 @@ pygpt_net/ui/widget/dialog/settings.py,sha256=fKzbme2tdxzTSiQMNnCEgyD3lwCzFjLi85
|
|
2098
2101
|
pygpt_net/ui/widget/dialog/settings_plugin.py,sha256=Kf1ZK_RY9CAnfeuzPoQ4wgsFb2yQl7X-VKzsYETA55o,1696
|
2099
2102
|
pygpt_net/ui/widget/dialog/snap.py,sha256=ESGmSSpExvf6WJ_EwiHJ9QK-t0NccfWeym5SSJNfi8I,2724
|
2100
2103
|
pygpt_net/ui/widget/dialog/update.py,sha256=0z4motDKCchD8whFHGZJui9omM_dmpviqi3g5yjy6p0,6789
|
2101
|
-
pygpt_net/ui/widget/dialog/url.py,sha256=
|
2104
|
+
pygpt_net/ui/widget/dialog/url.py,sha256=AiBSvlC1cLeekApesLXW-ilCJzXpo0EHQNXS440e-jQ,8405
|
2102
2105
|
pygpt_net/ui/widget/dialog/workdir.py,sha256=D-C3YIt-wCoI-Eh7z--Z4R6P1UvtpkxeiaVcI-ycFck,1523
|
2103
2106
|
pygpt_net/ui/widget/draw/__init__.py,sha256=oSYKtNEGNL0vDjn3wCgdnBAbxUqNGIEIf-75I2DIn7Q,488
|
2104
2107
|
pygpt_net/ui/widget/draw/painter.py,sha256=gxtnW--roiXYwcERVromle2zfdtf0vHdBWS5zZVuWhY,10903
|
2105
2108
|
pygpt_net/ui/widget/element/__init__.py,sha256=8HT4tQFqQogEEpGYTv2RplKBthlsFKcl5egnv4lzzEw,488
|
2106
2109
|
pygpt_net/ui/widget/element/button.py,sha256=l_yz620U5NZTRTlltUOBzyDARGQQAX7fJrfIS1XC9DM,4173
|
2107
2110
|
pygpt_net/ui/widget/element/checkbox.py,sha256=i7774WlRHEg8Js7XdpdMF5LGW1DrBXU4Makub_j2LtM,2532
|
2108
|
-
pygpt_net/ui/widget/element/group.py,sha256=
|
2111
|
+
pygpt_net/ui/widget/element/group.py,sha256=a76-dsfLnI7EBIMu7Q-So1lsYw8870M-GhzfRwLLf-8,3632
|
2109
2112
|
pygpt_net/ui/widget/element/labels.py,sha256=qndt5qmIekCng2pPGfUiKnjRU75FLnU6kC2WUjBBexA,3789
|
2110
2113
|
pygpt_net/ui/widget/filesystem/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
2111
2114
|
pygpt_net/ui/widget/filesystem/explorer.py,sha256=TpWMQt3-9k4PKn07cgb0WD-8ti5HnV8NkBlkr2OKqkA,23313
|
@@ -2119,7 +2122,7 @@ pygpt_net/ui/widget/lists/attachment_ctx.py,sha256=yFqzJj8D6vdNLW8v-8yX5-08kYpAu
|
|
2119
2122
|
pygpt_net/ui/widget/lists/base.py,sha256=TRMhAHI14K3zTI-5JVROzO03QeVqLuFLmILLCOm7mUs,2435
|
2120
2123
|
pygpt_net/ui/widget/lists/base_combo.py,sha256=MP_CaMh3BrB0WOjE1k4axinzVP5YjU5OrZX2lkUIEu8,3871
|
2121
2124
|
pygpt_net/ui/widget/lists/base_list_combo.py,sha256=eCfAE8kYDjX2OtxhAuFpWVe7A0lcb0FGmd_T9Bi3Qzw,3411
|
2122
|
-
pygpt_net/ui/widget/lists/context.py,sha256=
|
2125
|
+
pygpt_net/ui/widget/lists/context.py,sha256=wd2m7c1E58Fzm93ewT2hqAYL2BApqXY-DTIEnX_MCeQ,19958
|
2123
2126
|
pygpt_net/ui/widget/lists/db.py,sha256=f0EIzTSzjblJtCuGoWBq6PerFt8yqFZrP2hkIoHuzbI,5861
|
2124
2127
|
pygpt_net/ui/widget/lists/debug.py,sha256=bjzshfRXFwFQ4neCY8pFMHPm9b57i5x-pHdk-sY--VI,3658
|
2125
2128
|
pygpt_net/ui/widget/lists/experts.py,sha256=4ztuhpMjU36XWYYjm67wo-zSDfvViSJk2Z48lXdJT2s,5911
|
@@ -2169,9 +2172,9 @@ pygpt_net/ui/widget/textarea/url.py,sha256=xbNQxoM5fYI1ZWbvybQkPmNPrIq3yhtNPBOSO
|
|
2169
2172
|
pygpt_net/ui/widget/textarea/web.py,sha256=9FoL02QY6mOxtc4t4fe8X7fVDIdPn9Sb_fwsv-OQDBA,11601
|
2170
2173
|
pygpt_net/ui/widget/vision/__init__.py,sha256=8HT4tQFqQogEEpGYTv2RplKBthlsFKcl5egnv4lzzEw,488
|
2171
2174
|
pygpt_net/ui/widget/vision/camera.py,sha256=T8b5cmK6uhf_WSSxzPt_Qod8JgMnst6q8sQqRvgQiSA,2584
|
2172
|
-
pygpt_net/utils.py,sha256=
|
2173
|
-
pygpt_net-2.4.
|
2174
|
-
pygpt_net-2.4.
|
2175
|
-
pygpt_net-2.4.
|
2176
|
-
pygpt_net-2.4.
|
2177
|
-
pygpt_net-2.4.
|
2175
|
+
pygpt_net/utils.py,sha256=ES35jv1OV2etVIQcArpI-FSdfH2SMI86Gdu-V-MDbRQ,6132
|
2176
|
+
pygpt_net-2.4.44.dist-info/LICENSE,sha256=GLKQTnJOPK4dDIWfkAIM4GwOxKJXi5zcMGt7FjLR1xk,1126
|
2177
|
+
pygpt_net-2.4.44.dist-info/METADATA,sha256=3Juz-7SnnMR-u1S9l6GrkLDAxGYNLfxNMph0uyng5C8,168100
|
2178
|
+
pygpt_net-2.4.44.dist-info/WHEEL,sha256=FMvqSimYX_P7y0a7UY-_Mc83r5zkBZsCYPm7Lr0Bsq4,88
|
2179
|
+
pygpt_net-2.4.44.dist-info/entry_points.txt,sha256=qvpII6UHIt8XfokmQWnCYQrTgty8FeJ9hJvOuUFCN-8,43
|
2180
|
+
pygpt_net-2.4.44.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|