pygpt-net 2.6.9__py3-none-any.whl → 2.6.10__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 +8 -0
- pygpt_net/__init__.py +1 -1
- pygpt_net/controller/ctx/common.py +9 -3
- pygpt_net/controller/ctx/ctx.py +19 -17
- pygpt_net/core/agents/runner.py +19 -0
- pygpt_net/core/agents/tools.py +93 -52
- pygpt_net/data/config/config.json +3 -2
- pygpt_net/data/config/models.json +2 -2
- pygpt_net/data/config/settings.json +14 -0
- pygpt_net/data/locale/locale.de.ini +2 -0
- pygpt_net/data/locale/locale.en.ini +2 -0
- pygpt_net/data/locale/locale.es.ini +2 -0
- pygpt_net/data/locale/locale.fr.ini +2 -0
- pygpt_net/data/locale/locale.it.ini +2 -0
- pygpt_net/data/locale/locale.pl.ini +3 -1
- pygpt_net/data/locale/locale.uk.ini +2 -0
- pygpt_net/data/locale/locale.zh.ini +2 -0
- pygpt_net/plugin/google/config.py +306 -1
- pygpt_net/plugin/google/plugin.py +22 -0
- pygpt_net/plugin/google/worker.py +579 -3
- pygpt_net/provider/core/config/patch.py +11 -0
- pygpt_net/ui/main.py +1 -1
- pygpt_net/ui/widget/lists/context.py +10 -1
- {pygpt_net-2.6.9.dist-info → pygpt_net-2.6.10.dist-info}/METADATA +78 -29
- {pygpt_net-2.6.9.dist-info → pygpt_net-2.6.10.dist-info}/RECORD +28 -28
- {pygpt_net-2.6.9.dist-info → pygpt_net-2.6.10.dist-info}/LICENSE +0 -0
- {pygpt_net-2.6.9.dist-info → pygpt_net-2.6.10.dist-info}/WHEEL +0 -0
- {pygpt_net-2.6.9.dist-info → pygpt_net-2.6.10.dist-info}/entry_points.txt +0 -0
|
@@ -197,7 +197,7 @@ class ContextList(BaseList):
|
|
|
197
197
|
icon = self._color_icon(status_info['color'])
|
|
198
198
|
status_action = set_label_menu.addAction(icon, name)
|
|
199
199
|
status_action.triggered.connect(
|
|
200
|
-
functools.partial(self.
|
|
200
|
+
functools.partial(self.action_set_label, ctx_id, status_id)
|
|
201
201
|
)
|
|
202
202
|
|
|
203
203
|
idx_menu = QMenu(trans('action.idx'), self)
|
|
@@ -387,6 +387,15 @@ class ContextList(BaseList):
|
|
|
387
387
|
self.restore_after_ctx_menu = False
|
|
388
388
|
self.window.controller.ctx.common.reset(id)
|
|
389
389
|
|
|
390
|
+
def action_set_label(self, id: int, label: int):
|
|
391
|
+
"""
|
|
392
|
+
Set label action handler
|
|
393
|
+
|
|
394
|
+
:param id: context id
|
|
395
|
+
:param label: label id
|
|
396
|
+
"""
|
|
397
|
+
self.window.controller.ctx.set_label(id, label)
|
|
398
|
+
|
|
390
399
|
def selectionCommand(self, index, event=None):
|
|
391
400
|
"""
|
|
392
401
|
Selection command
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.3
|
|
2
2
|
Name: pygpt-net
|
|
3
|
-
Version: 2.6.
|
|
3
|
+
Version: 2.6.10
|
|
4
4
|
Summary: Desktop AI Assistant powered by: OpenAI GPT-5, o1, o3, GPT-4, Gemini, Claude, Grok, DeepSeek, and other models supported by Llama Index, and Ollama. Chatbot, agents, completion, image generation, vision analysis, speech-to-text, plugins, internet access, file handling, command execution and more.
|
|
5
5
|
License: MIT
|
|
6
6
|
Keywords: py_gpt,py-gpt,pygpt,desktop,app,o1,o3,gpt-5,gpt,gpt4,gpt-4o,gpt-4v,gpt3.5,gpt-4,gpt-4-vision,gpt-3.5,llama3,mistral,gemini,grok,deepseek,bielik,claude,tts,whisper,vision,chatgpt,dall-e,chat,chatbot,assistant,text completion,image generation,ai,api,openai,api key,langchain,llama-index,ollama,presets,ui,qt,pyside
|
|
@@ -108,7 +108,7 @@ Description-Content-Type: text/markdown
|
|
|
108
108
|
|
|
109
109
|
[](https://snapcraft.io/pygpt)
|
|
110
110
|
|
|
111
|
-
Release: **2.6.
|
|
111
|
+
Release: **2.6.10** | build: **2025-08-17** | Python: **>=3.10, <3.14**
|
|
112
112
|
|
|
113
113
|
> Official website: https://pygpt.net | Documentation: https://pygpt.readthedocs.io
|
|
114
114
|
>
|
|
@@ -1461,7 +1461,7 @@ as well as list and create directories.
|
|
|
1461
1461
|
|
|
1462
1462
|
- `Mailer` - Provides the ability to send, receive and read emails.
|
|
1463
1463
|
|
|
1464
|
-
- `Google` - Access Gmail, Drive, Calendar, Contacts, YouTube, Keep for managing emails, files, events, notes, video info, and contacts.
|
|
1464
|
+
- `Google` - Access Gmail, Drive, Docs, Maps, Calendar, Contacts, Colab, YouTube, Keep - for managing emails, files, events, notes, video info, and contacts.
|
|
1465
1465
|
|
|
1466
1466
|
- `Facebook` - Manage user info, pages, posts, and photos on Facebook pages.
|
|
1467
1467
|
|
|
@@ -2772,30 +2772,69 @@ The plugin provides voice control command execution within a conversation.
|
|
|
2772
2772
|
|
|
2773
2773
|
See the ``Accessibility`` section for more details.
|
|
2774
2774
|
|
|
2775
|
-
## Google (Gmail, Drive, Calendar, Contacts, YT, Keep)
|
|
2776
|
-
|
|
2777
|
-
-
|
|
2778
|
-
- Listing
|
|
2779
|
-
-
|
|
2780
|
-
-
|
|
2781
|
-
-
|
|
2782
|
-
-
|
|
2783
|
-
|
|
2784
|
-
-
|
|
2785
|
-
- Listing
|
|
2786
|
-
-
|
|
2787
|
-
-
|
|
2788
|
-
-
|
|
2789
|
-
-
|
|
2790
|
-
- Adding a new
|
|
2791
|
-
-
|
|
2792
|
-
|
|
2793
|
-
-
|
|
2794
|
-
-
|
|
2795
|
-
-
|
|
2796
|
-
|
|
2797
|
-
-
|
|
2798
|
-
-
|
|
2775
|
+
## Google (Gmail, Drive, Calendar, Contacts, YT, Keep, Docs, Maps, Colab)
|
|
2776
|
+
|
|
2777
|
+
- **Gmail**
|
|
2778
|
+
- Listing recent emails from Gmail.
|
|
2779
|
+
- Listing all emails from Gmail.
|
|
2780
|
+
- Searching emails in Gmail.
|
|
2781
|
+
- Retrieving email details by ID in Gmail.
|
|
2782
|
+
- Sending an email via Gmail.
|
|
2783
|
+
|
|
2784
|
+
- **Google Calendar**
|
|
2785
|
+
- Listing recent calendar events.
|
|
2786
|
+
- Listing today's calendar events.
|
|
2787
|
+
- Listing tomorrow's calendar events.
|
|
2788
|
+
- Listing all calendar events.
|
|
2789
|
+
- Retrieving calendar events by a specific date.
|
|
2790
|
+
- Adding a new event to the calendar.
|
|
2791
|
+
- Deleting an event from the calendar.
|
|
2792
|
+
|
|
2793
|
+
- **Google Keep**
|
|
2794
|
+
- Listing notes from Google Keep.
|
|
2795
|
+
- Adding a new note to Google Keep.
|
|
2796
|
+
|
|
2797
|
+
- **Google Drive**
|
|
2798
|
+
- Listing files from Google Drive.
|
|
2799
|
+
- Finding a file in Google Drive by its path.
|
|
2800
|
+
- Downloading a file from Google Drive.
|
|
2801
|
+
- Uploading a file to Google Drive.
|
|
2802
|
+
|
|
2803
|
+
- **YouTube**
|
|
2804
|
+
- Retrieving information about a YouTube video.
|
|
2805
|
+
- Retrieving the transcript of a YouTube video.
|
|
2806
|
+
|
|
2807
|
+
- **Google Contacts**
|
|
2808
|
+
- Listing contacts from Google Contacts.
|
|
2809
|
+
- Adding a new contact to Google Contacts.
|
|
2810
|
+
|
|
2811
|
+
- **Google Docs**
|
|
2812
|
+
- Creating a new document.
|
|
2813
|
+
- Retrieving a document.
|
|
2814
|
+
- Listing documents.
|
|
2815
|
+
- Appending text to a document.
|
|
2816
|
+
- Replacing text in a document.
|
|
2817
|
+
- Inserting a heading in a document.
|
|
2818
|
+
- Exporting a document.
|
|
2819
|
+
- Copying from a template.
|
|
2820
|
+
|
|
2821
|
+
- **Google Maps**
|
|
2822
|
+
- Geocoding an address.
|
|
2823
|
+
- Reverse geocoding coordinates.
|
|
2824
|
+
- Getting directions between locations.
|
|
2825
|
+
- Using the distance matrix.
|
|
2826
|
+
- Text search for places.
|
|
2827
|
+
- Finding nearby places.
|
|
2828
|
+
- Generating static map images.
|
|
2829
|
+
|
|
2830
|
+
- **Google Colab**
|
|
2831
|
+
- Listing notebooks.
|
|
2832
|
+
- Creating a new notebook.
|
|
2833
|
+
- Adding a code cell.
|
|
2834
|
+
- Adding a markdown cell.
|
|
2835
|
+
- Getting a link to a notebook.
|
|
2836
|
+
- Renaming a notebook.
|
|
2837
|
+
- Duplicating a notebook.
|
|
2799
2838
|
|
|
2800
2839
|
## Facebook
|
|
2801
2840
|
|
|
@@ -3528,6 +3567,10 @@ Enable/disable remote tools, like Web Search or Image generation to use in OpenA
|
|
|
3528
3567
|
|
|
3529
3568
|
**General**
|
|
3530
3569
|
|
|
3570
|
+
- `Verbose` - enables verbose mode.
|
|
3571
|
+
|
|
3572
|
+
- `Auto retrieve additional context from RAG`: Auto retrieve additional context from RAG at the beginning if the index is provided.
|
|
3573
|
+
|
|
3531
3574
|
- `Display a tray notification when the goal is achieved.`: If enabled, a notification will be displayed after goal achieved / finished run.
|
|
3532
3575
|
|
|
3533
3576
|
**Agents (LlamaIndex / OpenAI)**
|
|
@@ -3538,8 +3581,6 @@ Enable/disable remote tools, like Web Search or Image generation to use in OpenA
|
|
|
3538
3581
|
|
|
3539
3582
|
- `Append and compare previous evaluation prompt in next evaluation` - If enabled, previous improvement prompt will be checked in next eval in loop, default: False
|
|
3540
3583
|
|
|
3541
|
-
- `Verbose` - enables verbose mode.
|
|
3542
|
-
|
|
3543
3584
|
- `Split response messages` - Split response messages to separated context items in OpenAI Agents mode.
|
|
3544
3585
|
|
|
3545
3586
|
**Autonomous (Legacy agents)**
|
|
@@ -4525,6 +4566,14 @@ may consume additional tokens that are not displayed in the main window.
|
|
|
4525
4566
|
|
|
4526
4567
|
## Recent changes:
|
|
4527
4568
|
|
|
4569
|
+
**2.6.10 (2025-08-17)**
|
|
4570
|
+
|
|
4571
|
+
- Enhanced the handling of the context list.
|
|
4572
|
+
- Integrated RAG into OpenAI Agents.
|
|
4573
|
+
- Enhanced RAG management in Agents.
|
|
4574
|
+
- Added an option: Config -> Agents -> General -> Auto-retrieve additional context from RAG.
|
|
4575
|
+
- Included Google Docs, Maps, and Colab in the Google plugin.
|
|
4576
|
+
|
|
4528
4577
|
**2.6.9 (2025-08-17)**
|
|
4529
4578
|
|
|
4530
4579
|
- Added two new agents for LlamaIndex and OpenAI: Supervisor and Worker (beta).
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
pygpt_net/CHANGELOG.txt,sha256=
|
|
1
|
+
pygpt_net/CHANGELOG.txt,sha256=lJGog05Wz3Joh6VbTokUreDQJIqN1mfb8cffZrJWXtQ,99390
|
|
2
2
|
pygpt_net/LICENSE,sha256=dz9sfFgYahvu2NZbx4C1xCsVn9GVer2wXcMkFRBvqzY,1146
|
|
3
|
-
pygpt_net/__init__.py,sha256=
|
|
3
|
+
pygpt_net/__init__.py,sha256=1wXnR9HIgRTskb48CRgTwFm_UCpLCiPQanvhg9B6dFk,1373
|
|
4
4
|
pygpt_net/app.py,sha256=i5Rnw_-dvuSVPJf1oX4rA1raCCaMK6RKRHGzX2MGf70,20827
|
|
5
5
|
pygpt_net/config.py,sha256=P-D-vRWwq77moEMveMNyUImH8hG3PXpxqBsWyriEGzs,16731
|
|
6
6
|
pygpt_net/container.py,sha256=NsMSHURaEC_eW8vrCNdztwqkxB7jui3yVlzUOMYvCHg,4124
|
|
@@ -61,8 +61,8 @@ pygpt_net/controller/config/field/slider.py,sha256=dYbICd3ID-aLlc2a-bvFgWS4jceVz
|
|
|
61
61
|
pygpt_net/controller/config/field/textarea.py,sha256=Ln545IHzXBeFIjnfMIpmlUr-V3wNYjw4qGiz4NYRw34,2796
|
|
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
|
-
pygpt_net/controller/ctx/common.py,sha256=
|
|
65
|
-
pygpt_net/controller/ctx/ctx.py,sha256=
|
|
64
|
+
pygpt_net/controller/ctx/common.py,sha256=_ygKbwotFfbG12vm247WFXPgDH5TnjZuv_0jUCgEShs,6591
|
|
65
|
+
pygpt_net/controller/ctx/ctx.py,sha256=NlIm6ri3B4vPa_cfYGfCHgb0NtdssrBhRarmzEGVnQs,35922
|
|
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
|
|
@@ -148,7 +148,7 @@ pygpt_net/core/agents/memory.py,sha256=9Jz9kT-xT8QPpGeXEpWopJUGBLLHu6Ys_-fRrg6BW
|
|
|
148
148
|
pygpt_net/core/agents/observer/__init__.py,sha256=qVIBJKpGbc0k7PTESAwAR7SbN-pbkBMJUTzeliCAaJU,651
|
|
149
149
|
pygpt_net/core/agents/observer/evaluation.py,sha256=VngvBMXzgJaAvWV10oo1HDJ_Nzce55A59DsDGDKLlVo,7633
|
|
150
150
|
pygpt_net/core/agents/provider.py,sha256=rjxnuqzRxv2Z1d9i_wKpREwJBTeTgtyBDYtyHuwcSPA,2440
|
|
151
|
-
pygpt_net/core/agents/runner.py,sha256=
|
|
151
|
+
pygpt_net/core/agents/runner.py,sha256=haHO3HXEpRVSB3b__vHaiaUUNaMDwoXJAFNy9SqivAc,12069
|
|
152
152
|
pygpt_net/core/agents/runners/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
153
153
|
pygpt_net/core/agents/runners/base.py,sha256=XjheBYhBZan51r3vkUh5uf00sYiRj8btZUeUP1jpqlA,5687
|
|
154
154
|
pygpt_net/core/agents/runners/helpers.py,sha256=0iQQlSg_pJfxY_gQEWImnyAVkTUQYYSW67Z9DS7oUYw,8305
|
|
@@ -158,7 +158,7 @@ pygpt_net/core/agents/runners/llama_steps.py,sha256=1SBLp5t4TUsxpYIUtSSnBy5Sd2Ax
|
|
|
158
158
|
pygpt_net/core/agents/runners/llama_workflow.py,sha256=YkhEcV_dI6uzJBVtgBRYmRW_gLt2Uz4IK6l028VmbPk,11685
|
|
159
159
|
pygpt_net/core/agents/runners/loop.py,sha256=opcVGx8WFjJesLlmMzoCBgP06Ajh6j_Taat4zCTumHg,6022
|
|
160
160
|
pygpt_net/core/agents/runners/openai_workflow.py,sha256=J47INptxu8Uc40UfAWNRRiHRYL6ZM6lPojoqeHsC-mc,7989
|
|
161
|
-
pygpt_net/core/agents/tools.py,sha256=
|
|
161
|
+
pygpt_net/core/agents/tools.py,sha256=6V2IjSF0m8cNY0HI7vW9bTLjKzR1KtcP0XTcHBvrPjU,21727
|
|
162
162
|
pygpt_net/core/assistants/__init__.py,sha256=FujLn0ia5S3-7nX-Td_0S5Zqiw6Yublh58c4Di7rRgY,514
|
|
163
163
|
pygpt_net/core/assistants/assistants.py,sha256=JVseBSjDJh9vJYjxoZVwU93EFTBJk_rUtRh_Ml550H0,4391
|
|
164
164
|
pygpt_net/core/assistants/files.py,sha256=rmIVxDNfLrpA95Ghs_mc5s8Yn4xiC7POynpZMzaBcd0,10150
|
|
@@ -343,8 +343,8 @@ pygpt_net/css_rc.py,sha256=i13kX7irhbYCWZ5yJbcMmnkFp_UfS4PYnvRFSPF7XXo,11349
|
|
|
343
343
|
pygpt_net/data/audio/click_off.mp3,sha256=aNiRDP1pt-Jy7ija4YKCNFBwvGWbzU460F4pZWZDS90,65201
|
|
344
344
|
pygpt_net/data/audio/click_on.mp3,sha256=qfdsSnthAEHVXzeyN4LlC0OvXuyW8p7stb7VXtlvZ1k,65201
|
|
345
345
|
pygpt_net/data/audio/ok.mp3,sha256=LTiV32pEBkpUGBkKkcOdOFB7Eyt_QoP2Nv6c5AaXftk,32256
|
|
346
|
-
pygpt_net/data/config/config.json,sha256=
|
|
347
|
-
pygpt_net/data/config/models.json,sha256=
|
|
346
|
+
pygpt_net/data/config/config.json,sha256=4Qu_vizd30-4RYjykaY4hNmSCJCFptzAUipKn7v9nZs,24924
|
|
347
|
+
pygpt_net/data/config/models.json,sha256=haCwJGa0waGtBvScZRoBq3k7-B1H3gnNLG84zfDmWXM,109650
|
|
348
348
|
pygpt_net/data/config/modes.json,sha256=M882iiqX_R2sNQl9cqZ3k-uneEvO9wpARtHRMLx_LHw,2265
|
|
349
349
|
pygpt_net/data/config/presets/agent_code_act.json,sha256=GYHqhxtKFLUCvRI3IJAJ7Qe1k8yD9wGGNwManldWzlI,754
|
|
350
350
|
pygpt_net/data/config/presets/agent_openai.json,sha256=vMTR-soRBiEZrpJJHuFLWyx8a3Ez_BqtqjyXgxCAM_Q,733
|
|
@@ -379,7 +379,7 @@ pygpt_net/data/config/presets/current.vision.json,sha256=x1ll5B3ROSKYQA6l27PRGXU
|
|
|
379
379
|
pygpt_net/data/config/presets/dalle_white_cat.json,sha256=esqUb43cqY8dAo7B5u99tRC0MBV5lmlrVLnJhTSkL8w,552
|
|
380
380
|
pygpt_net/data/config/presets/joke_agent.json,sha256=R6n9P7KRb0s-vZWZE7kHdlOfXAx1yYrPmUw8uLyw8OE,474
|
|
381
381
|
pygpt_net/data/config/presets/joke_expert.json,sha256=jjcoIYEOaEp8kLoIbecxQROiq4J3Zess5w8_HmngPOY,671
|
|
382
|
-
pygpt_net/data/config/settings.json,sha256=
|
|
382
|
+
pygpt_net/data/config/settings.json,sha256=QM5OULR9q3rGXPT25UNFJJdUM6dh8ugxwoZvgh8FYsk,66565
|
|
383
383
|
pygpt_net/data/config/settings_section.json,sha256=OLWgjs3hHFzk50iwzVyUpcFW7dfochOnbZS0vDoMlDU,1158
|
|
384
384
|
pygpt_net/data/css/fix_windows.css,sha256=Mks14Vg25ncbMqZJfAMStrhvZmgHF6kU75ohTWRZeI8,664
|
|
385
385
|
pygpt_net/data/css/fix_windows.dark.css,sha256=7hGbT_qI5tphYC_WlFpJRDAcmjBb0AQ2Yc-y-_Zzf2M,161
|
|
@@ -1603,14 +1603,14 @@ pygpt_net/data/js/katex/fonts/KaTeX_Typewriter-Regular.woff2,sha256=cdUX1ngneHz6
|
|
|
1603
1603
|
pygpt_net/data/js/katex/katex.min.css,sha256=lVaKnUaQNG4pI71WHffQZVALLQF4LMZEk4nOia8U9ow,23532
|
|
1604
1604
|
pygpt_net/data/js/katex/katex.min.js,sha256=KLASOtKS2x8pUxWVzCDmlWJ4jhuLb0vtrgakbD6gDDo,276757
|
|
1605
1605
|
pygpt_net/data/languages.csv,sha256=fvtER6vnTXFHQslCh-e0xCfZDQ-ijgW4GYpOJG4U7LY,8289
|
|
1606
|
-
pygpt_net/data/locale/locale.de.ini,sha256=
|
|
1607
|
-
pygpt_net/data/locale/locale.en.ini,sha256=
|
|
1608
|
-
pygpt_net/data/locale/locale.es.ini,sha256=
|
|
1609
|
-
pygpt_net/data/locale/locale.fr.ini,sha256=
|
|
1610
|
-
pygpt_net/data/locale/locale.it.ini,sha256=
|
|
1611
|
-
pygpt_net/data/locale/locale.pl.ini,sha256=
|
|
1612
|
-
pygpt_net/data/locale/locale.uk.ini,sha256=
|
|
1613
|
-
pygpt_net/data/locale/locale.zh.ini,sha256=
|
|
1606
|
+
pygpt_net/data/locale/locale.de.ini,sha256=OAIMkRf3jn3dL0nmgAGy-_x396cEo2Pq1ueA8rHKOBg,100053
|
|
1607
|
+
pygpt_net/data/locale/locale.en.ini,sha256=WZbA60fvPYfkFslcUc_MpXxQdgOS76c39nVzQpQpq10,90669
|
|
1608
|
+
pygpt_net/data/locale/locale.es.ini,sha256=dxTi0doVys5nc50_hiPM1nq5qT_PEdCQ-I5mz_jzErA,100611
|
|
1609
|
+
pygpt_net/data/locale/locale.fr.ini,sha256=9jhKAt89WgH_jabmWe56_22SIprAqtygcJQD1Xn6x14,103350
|
|
1610
|
+
pygpt_net/data/locale/locale.it.ini,sha256=GDgWt7Hr66LSeGJOwtXBqEe8RMXQzunN7mrRSw9X3GA,98423
|
|
1611
|
+
pygpt_net/data/locale/locale.pl.ini,sha256=L8woS3AAtQY60QK3XTXE0yB0cfPtJHgYLxuhvVd-zm8,98104
|
|
1612
|
+
pygpt_net/data/locale/locale.uk.ini,sha256=b2ozaT6zFkt3I-E_bsOXQqzmQ_S-Y7hvquTYi_apIVw,136863
|
|
1613
|
+
pygpt_net/data/locale/locale.zh.ini,sha256=_MsyjgcUBrAzxaQbbbuY_lLdDetjFGhnZUrfMSX0zcY,87622
|
|
1614
1614
|
pygpt_net/data/locale/plugin.agent.de.ini,sha256=BY28KpfFvgfVYJzcw2o5ScWnR4uuErIYGyc3NVHlmTw,1714
|
|
1615
1615
|
pygpt_net/data/locale/plugin.agent.en.ini,sha256=HwOWCI7e8uzlIgyRWRVyr1x6Xzs8Xjv5pfEc7jfLOo4,1728
|
|
1616
1616
|
pygpt_net/data/locale/plugin.agent.es.ini,sha256=bqaJQne8HPKFVtZ8Ukzo1TSqVW41yhYbGUqW3j2x1p8,1680
|
|
@@ -1912,9 +1912,9 @@ pygpt_net/plugin/github/config.py,sha256=x8jD04kYe4wVq8Df13Zse7fUdLHzdHZDGp5kjfp
|
|
|
1912
1912
|
pygpt_net/plugin/github/plugin.py,sha256=NlL7-ITPlNUW5Wft4uAuYV0Acy3rfk2SjbeJQH0Em7k,3495
|
|
1913
1913
|
pygpt_net/plugin/github/worker.py,sha256=RBiofytfLmSEhkxag6iHo1ctnprv_qcgoCypttDWMnI,29402
|
|
1914
1914
|
pygpt_net/plugin/google/__init__.py,sha256=tvF6upS93L61NRbkQmscSJXM7ZzPlmVj16mVHUM-NHU,510
|
|
1915
|
-
pygpt_net/plugin/google/config.py,sha256=
|
|
1916
|
-
pygpt_net/plugin/google/plugin.py,sha256=
|
|
1917
|
-
pygpt_net/plugin/google/worker.py,sha256=
|
|
1915
|
+
pygpt_net/plugin/google/config.py,sha256=4Qi91esXslsPHpJhsSI783qq0Teb55QRZ8sgR40js0E,29997
|
|
1916
|
+
pygpt_net/plugin/google/plugin.py,sha256=HcsBWXIdLdBbYr165x_GTaOD-BwI3jHTf7YryV9lTnE,4347
|
|
1917
|
+
pygpt_net/plugin/google/worker.py,sha256=woxatLXJMuB--I_Gz_uZml2BQ8TTcvMLqx-Lq4hPxVc,62684
|
|
1918
1918
|
pygpt_net/plugin/idx_llama_index/__init__.py,sha256=tvF6upS93L61NRbkQmscSJXM7ZzPlmVj16mVHUM-NHU,510
|
|
1919
1919
|
pygpt_net/plugin/idx_llama_index/config.py,sha256=znp2ZADvwCUcwvLM_Szi8nxEDvl-Sg4M6Y_tXih8HdM,5794
|
|
1920
1920
|
pygpt_net/plugin/idx_llama_index/plugin.py,sha256=hNCb9t3-9B6M2noJR1zXJR_e5SnVcqsda38fD7BTq7s,10997
|
|
@@ -2030,7 +2030,7 @@ pygpt_net/provider/core/calendar/db_sqlite/storage.py,sha256=QDclQCQdr4QyRIqjgGX
|
|
|
2030
2030
|
pygpt_net/provider/core/config/__init__.py,sha256=jQQgG9u_ZLsZWXustoc1uvC-abUvj4RBKPAM30-f2Kc,488
|
|
2031
2031
|
pygpt_net/provider/core/config/base.py,sha256=cbvzbMNqL2XgC-36gGubnU37t94AX7LEw0lecb2Nm80,1365
|
|
2032
2032
|
pygpt_net/provider/core/config/json_file.py,sha256=GCcpCRQnBiSLWwlGbG9T3ZgiHkTfp5Jsg2KYkZcakBw,6789
|
|
2033
|
-
pygpt_net/provider/core/config/patch.py,sha256=
|
|
2033
|
+
pygpt_net/provider/core/config/patch.py,sha256=jwtMtx__2-snO2pK6CjIRhDFEXSi4il5-fB6E074VPE,120317
|
|
2034
2034
|
pygpt_net/provider/core/ctx/__init__.py,sha256=jQQgG9u_ZLsZWXustoc1uvC-abUvj4RBKPAM30-f2Kc,488
|
|
2035
2035
|
pygpt_net/provider/core/ctx/base.py,sha256=Tfb4MDNe9BXXPU3lbzpdYwJF9S1oa2-mzgu5XT4It9g,3003
|
|
2036
2036
|
pygpt_net/provider/core/ctx/db_sqlite/__init__.py,sha256=0dP8VhI4bnFsQQKxAkaleKFlyaMycDD_cnE7gBCa57Y,512
|
|
@@ -2312,7 +2312,7 @@ pygpt_net/ui/layout/toolbox/presets.py,sha256=uEmMy3gudpjKFQbDVNShjK1iBw-bl-1IXS
|
|
|
2312
2312
|
pygpt_net/ui/layout/toolbox/prompt.py,sha256=jebF-q1S1Et6ISa9vI0_nM4sb7liDesAXJHtZ5Ll7ZI,4006
|
|
2313
2313
|
pygpt_net/ui/layout/toolbox/toolbox.py,sha256=zEZr_XDz9QbPKL0u0KMSt1b8yOG-ao1gmZPvWWVpuVs,3392
|
|
2314
2314
|
pygpt_net/ui/layout/toolbox/vision.py,sha256=GZY-N2z8re1LN1ntsy-3Ius8OY4DujmJpyJ1qP2ZRxs,2447
|
|
2315
|
-
pygpt_net/ui/main.py,sha256=
|
|
2315
|
+
pygpt_net/ui/main.py,sha256=Soxj9heYSXaJ9p20WA_hpwPLh22wGpX7c8JvgZ4c99k,13789
|
|
2316
2316
|
pygpt_net/ui/menu/__init__.py,sha256=wAIKG9wLWfYv6tpXCTXptWb_XKoCc-4lYWLDvV1bVYk,508
|
|
2317
2317
|
pygpt_net/ui/menu/about.py,sha256=Y5Ok96MVsFPekvL4dPYK01QPGUUbZvfAsZztcxQhXh8,7232
|
|
2318
2318
|
pygpt_net/ui/menu/audio.py,sha256=Sb8NTAyMnPj4johTvBKwocHzq67XypIdw7K7hjf2760,3494
|
|
@@ -2383,7 +2383,7 @@ pygpt_net/ui/widget/lists/attachment_ctx.py,sha256=A4S7ULUZ1KMilgeomHKcN4f_vOr2q
|
|
|
2383
2383
|
pygpt_net/ui/widget/lists/base.py,sha256=hGoDSLpPVyGn5rdTzn3ixEigM67NLoO7Kc27Un6HNgM,3536
|
|
2384
2384
|
pygpt_net/ui/widget/lists/base_combo.py,sha256=-ZXvof8eJfSoB0_ONVxVuCJP8acss-f066XreG_GfnY,4132
|
|
2385
2385
|
pygpt_net/ui/widget/lists/base_list_combo.py,sha256=DTm5qiT08pfHu8DKH_gA6aodDY3XELtKfDudJTOL3RU,5721
|
|
2386
|
-
pygpt_net/ui/widget/lists/context.py,sha256=
|
|
2386
|
+
pygpt_net/ui/widget/lists/context.py,sha256=04oZTJ4nPnBIrxWsnacU1MY6niMhwvIGgl4MSxNpT3U,19130
|
|
2387
2387
|
pygpt_net/ui/widget/lists/db.py,sha256=f0EIzTSzjblJtCuGoWBq6PerFt8yqFZrP2hkIoHuzbI,5861
|
|
2388
2388
|
pygpt_net/ui/widget/lists/debug.py,sha256=bjzshfRXFwFQ4neCY8pFMHPm9b57i5x-pHdk-sY--VI,3658
|
|
2389
2389
|
pygpt_net/ui/widget/lists/experts.py,sha256=c6o0TIQ6YkIAMHoHHYBA-474z9tyPPw7YUn4R-oaXio,5957
|
|
@@ -2437,8 +2437,8 @@ pygpt_net/ui/widget/textarea/web.py,sha256=c1P4c8ivQLE0_rso6GUc-uSyvjYTIOiP9HOqU
|
|
|
2437
2437
|
pygpt_net/ui/widget/vision/__init__.py,sha256=8HT4tQFqQogEEpGYTv2RplKBthlsFKcl5egnv4lzzEw,488
|
|
2438
2438
|
pygpt_net/ui/widget/vision/camera.py,sha256=T8b5cmK6uhf_WSSxzPt_Qod8JgMnst6q8sQqRvgQiSA,2584
|
|
2439
2439
|
pygpt_net/utils.py,sha256=YL0czRa1v6ilKNszAI9NyaE9Lgz6HiUGpNFAYQ9Wj8s,8835
|
|
2440
|
-
pygpt_net-2.6.
|
|
2441
|
-
pygpt_net-2.6.
|
|
2442
|
-
pygpt_net-2.6.
|
|
2443
|
-
pygpt_net-2.6.
|
|
2444
|
-
pygpt_net-2.6.
|
|
2440
|
+
pygpt_net-2.6.10.dist-info/LICENSE,sha256=rbPqNB_xxANH8hKayJyIcTwD4bj4Y2G-Mcm85r1OImM,1126
|
|
2441
|
+
pygpt_net-2.6.10.dist-info/METADATA,sha256=V_YR6vl3zP5g1JZyUWclXqmuO-7m_3i9CVj3D1lexvg,189089
|
|
2442
|
+
pygpt_net-2.6.10.dist-info/WHEEL,sha256=b4K_helf-jlQoXBBETfwnf4B04YC67LOev0jo4fX5m8,88
|
|
2443
|
+
pygpt_net-2.6.10.dist-info/entry_points.txt,sha256=qvpII6UHIt8XfokmQWnCYQrTgty8FeJ9hJvOuUFCN-8,43
|
|
2444
|
+
pygpt_net-2.6.10.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|