pygpt-net 2.6.8__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.
Files changed (39) hide show
  1. pygpt_net/CHANGELOG.txt +12 -0
  2. pygpt_net/__init__.py +3 -3
  3. pygpt_net/app.py +4 -0
  4. pygpt_net/controller/ctx/common.py +9 -3
  5. pygpt_net/controller/ctx/ctx.py +19 -17
  6. pygpt_net/controller/kernel/kernel.py +1 -2
  7. pygpt_net/core/agents/runner.py +19 -0
  8. pygpt_net/core/agents/tools.py +93 -52
  9. pygpt_net/core/render/web/body.py +11 -33
  10. pygpt_net/core/render/web/renderer.py +52 -79
  11. pygpt_net/data/config/config.json +4 -3
  12. pygpt_net/data/config/models.json +3 -3
  13. pygpt_net/data/config/presets/agent_openai_supervisor.json +54 -0
  14. pygpt_net/data/config/presets/agent_supervisor.json +52 -0
  15. pygpt_net/data/config/settings.json +14 -0
  16. pygpt_net/data/locale/locale.de.ini +2 -0
  17. pygpt_net/data/locale/locale.en.ini +2 -0
  18. pygpt_net/data/locale/locale.es.ini +2 -0
  19. pygpt_net/data/locale/locale.fr.ini +2 -0
  20. pygpt_net/data/locale/locale.it.ini +2 -0
  21. pygpt_net/data/locale/locale.pl.ini +3 -1
  22. pygpt_net/data/locale/locale.uk.ini +2 -0
  23. pygpt_net/data/locale/locale.zh.ini +2 -0
  24. pygpt_net/plugin/google/config.py +306 -1
  25. pygpt_net/plugin/google/plugin.py +22 -0
  26. pygpt_net/plugin/google/worker.py +579 -3
  27. pygpt_net/provider/agents/llama_index/supervisor_workflow.py +116 -0
  28. pygpt_net/provider/agents/llama_index/workflow/supervisor.py +303 -0
  29. pygpt_net/provider/agents/openai/supervisor.py +361 -0
  30. pygpt_net/provider/core/config/patch.py +11 -0
  31. pygpt_net/provider/core/preset/patch.py +18 -0
  32. pygpt_net/ui/main.py +1 -1
  33. pygpt_net/ui/widget/lists/context.py +10 -1
  34. pygpt_net/ui/widget/textarea/web.py +47 -4
  35. {pygpt_net-2.6.8.dist-info → pygpt_net-2.6.10.dist-info}/METADATA +93 -29
  36. {pygpt_net-2.6.8.dist-info → pygpt_net-2.6.10.dist-info}/RECORD +39 -34
  37. {pygpt_net-2.6.8.dist-info → pygpt_net-2.6.10.dist-info}/LICENSE +0 -0
  38. {pygpt_net-2.6.8.dist-info → pygpt_net-2.6.10.dist-info}/WHEEL +0 -0
  39. {pygpt_net-2.6.8.dist-info → pygpt_net-2.6.10.dist-info}/entry_points.txt +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: pygpt-net
3
- Version: 2.6.8
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
  [![pygpt](https://snapcraft.io/pygpt/badge.svg)](https://snapcraft.io/pygpt)
110
110
 
111
- Release: **2.6.8** | build: **2025-08-16** | Python: **>=3.10, <3.14**
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
  >
@@ -789,6 +789,7 @@ Includes built-in agents (Workflow):
789
789
  - ReAct
790
790
  - Structured Planner (sub-tasks)
791
791
  - CodeAct (connected to Code Interpreter plugin)
792
+ - Supervisor + worker
792
793
 
793
794
  Includes built-in agents (Legacy):
794
795
 
@@ -845,6 +846,7 @@ In this mode, you can use pre-configured Experts in Expert mode presets - they w
845
846
  - `Simple agent` - a single agent.
846
847
  - `Evolve` - in each generation (cycle), the best response from a given parent agent is selected; in the next generation, the cycle repeats.
847
848
  - `B2B` - bot-to-bot communication, involving two bots interacting with each other while keeping a human in the loop.
849
+ - `Supervisor + Worker` - one agent (supervisor) acts as a bridge between the user and the second agent (worker). The user provides a query to the supervisor, who then sends instructions to the worker until the task is completed by the worker.
848
850
 
849
851
  More types will be available in the future.
850
852
 
@@ -857,6 +859,7 @@ There are also predefined presets added as examples:
857
859
  - `Simple agent`
858
860
  - `Writer with Feedback`
859
861
  - `2 bots`
862
+ - `Supervisor + worker`
860
863
 
861
864
  In the Agents (OpenAI) mode, all remote tools are available for the base agent according to the configuration in the Config -> Settings -> Remote tools menu.
862
865
 
@@ -910,6 +913,14 @@ Below is a pattern for how different types of agents work. You can use these pat
910
913
  - Bot 2 receives the response from Bot 1 as input, provides an answer, and sends the response back to Bot 1 as its input. This cycle repeats.
911
914
  - The human can interrupt the loop at any time and update the entire discussion.
912
915
 
916
+ **Supervisor + Worker**
917
+
918
+ - A human provides a query to the Supervisor.
919
+ - The Supervisor prepares instructions for the Worker and sends them to the Worker.
920
+ - The Worker completes the task and returns the result to the Supervisor.
921
+ - If the task is completed, the Supervisor returns the result to the user. If not, the Supervisor sends another instruction to the Worker to complete the task or asks the user if there are any questions.
922
+ - The cycle repeats until the task is completed.
923
+
913
924
  **Tip**: Starting from version `2.5.97`, you can assign and use Experts in all of the agent types.
914
925
 
915
926
  **Limitations:**
@@ -1450,7 +1461,7 @@ as well as list and create directories.
1450
1461
 
1451
1462
  - `Mailer` - Provides the ability to send, receive and read emails.
1452
1463
 
1453
- - `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.
1454
1465
 
1455
1466
  - `Facebook` - Manage user info, pages, posts, and photos on Facebook pages.
1456
1467
 
@@ -2761,30 +2772,69 @@ The plugin provides voice control command execution within a conversation.
2761
2772
 
2762
2773
  See the ``Accessibility`` section for more details.
2763
2774
 
2764
- ## Google (Gmail, Drive, Calendar, Contacts, YT, Keep)
2765
-
2766
- - Listing recent emails from Gmail.
2767
- - Listing all emails from Gmail.
2768
- - Searching emails in Gmail.
2769
- - Retrieving email details by ID in Gmail.
2770
- - Sending an email via Gmail.
2771
- - Listing recent calendar events.
2772
- - Listing today's calendar events.
2773
- - Listing tomorrow's calendar events.
2774
- - Listing all calendar events.
2775
- - Retrieving calendar events by a specific date.
2776
- - Adding a new event to the calendar.
2777
- - Deleting an event from the calendar.
2778
- - Listing notes from Google Keep.
2779
- - Adding a new note to Google Keep.
2780
- - Listing files from Google Drive.
2781
- - Finding a file in Google Drive by its path.
2782
- - Downloading a file from Google Drive.
2783
- - Uploading a file to Google Drive.
2784
- - Retrieving information about a YouTube video.
2785
- - Retrieving the transcript of a YouTube video.
2786
- - Listing contacts from Google Contacts.
2787
- - Adding a new contact to Google Contacts.
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.
2788
2838
 
2789
2839
  ## Facebook
2790
2840
 
@@ -3517,6 +3567,10 @@ Enable/disable remote tools, like Web Search or Image generation to use in OpenA
3517
3567
 
3518
3568
  **General**
3519
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
+
3520
3574
  - `Display a tray notification when the goal is achieved.`: If enabled, a notification will be displayed after goal achieved / finished run.
3521
3575
 
3522
3576
  **Agents (LlamaIndex / OpenAI)**
@@ -3527,8 +3581,6 @@ Enable/disable remote tools, like Web Search or Image generation to use in OpenA
3527
3581
 
3528
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
3529
3583
 
3530
- - `Verbose` - enables verbose mode.
3531
-
3532
3584
  - `Split response messages` - Split response messages to separated context items in OpenAI Agents mode.
3533
3585
 
3534
3586
  **Autonomous (Legacy agents)**
@@ -4514,6 +4566,18 @@ may consume additional tokens that are not displayed in the main window.
4514
4566
 
4515
4567
  ## Recent changes:
4516
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
+
4577
+ **2.6.9 (2025-08-17)**
4578
+
4579
+ - Added two new agents for LlamaIndex and OpenAI: Supervisor and Worker (beta).
4580
+
4517
4581
  **2.6.8 (2025-08-16)**
4518
4582
 
4519
4583
  - Fixed: updated paragraph color on theme switch.
@@ -1,7 +1,7 @@
1
- pygpt_net/CHANGELOG.txt,sha256=b2F1vAbO75sqXz72pIk5Aq7EtFcNuZWNMny-Ds5VUfw,98993
1
+ pygpt_net/CHANGELOG.txt,sha256=lJGog05Wz3Joh6VbTokUreDQJIqN1mfb8cffZrJWXtQ,99390
2
2
  pygpt_net/LICENSE,sha256=dz9sfFgYahvu2NZbx4C1xCsVn9GVer2wXcMkFRBvqzY,1146
3
- pygpt_net/__init__.py,sha256=50wp_dosrptf_Pbg1lYb0EcWQMSm0d2oNFjS-hW4RW8,1372
4
- pygpt_net/app.py,sha256=W1zjJBIEfzrrp5L5Dxk5Z5n2U0zJjjKcevxAuU_ETAs,20503
3
+ pygpt_net/__init__.py,sha256=1wXnR9HIgRTskb48CRgTwFm_UCpLCiPQanvhg9B6dFk,1373
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
7
7
  pygpt_net/controller/__init__.py,sha256=FiAP-Md0a57HSH1sSFflB4aq6Jho9M1lejk9VJxM8is,5969
@@ -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=7F6xuCr-LIs909oTVYd9z_iZnsC69i7KFKbDMurg1oI,6491
65
- pygpt_net/controller/ctx/ctx.py,sha256=HvIN6Y7HJqK8O-yed2o_zZBL-ULSDu0aQUuREL9L48k,35674
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
@@ -82,7 +82,7 @@ pygpt_net/controller/idx/idx.py,sha256=h8k8vGaPEl2ikA0vMrOT7RGY3XrhEpNjeHHxEUBLq
82
82
  pygpt_net/controller/idx/indexer.py,sha256=xW4ruWNpoGnyfFMTU2wOfuk63RRWBFgZGKIqiDlQoA8,22347
83
83
  pygpt_net/controller/idx/settings.py,sha256=orWd8ARxIBBs3MWJLjEKcqmrXLi6DvsLitsPvPd2fXU,7916
84
84
  pygpt_net/controller/kernel/__init__.py,sha256=XVS7uaC0VZZkpjqkbs6pqSwXdAZWLnR3dVNCHmF7XH4,510
85
- pygpt_net/controller/kernel/kernel.py,sha256=q5AMvBs1e4BdaG-n_xQdS1v6e5_3DuxRkrL8OCFKGcs,13583
85
+ pygpt_net/controller/kernel/kernel.py,sha256=6_1uliyKxeH-pLmbDqZgksbB_IJkMYLUH_8RhfPLNVg,13529
86
86
  pygpt_net/controller/kernel/reply.py,sha256=eGt5bM7tUFXsXKm0XxNaGzUx145G9Ew_6B88W_SX_C8,6287
87
87
  pygpt_net/controller/kernel/stack.py,sha256=HJh7jkLEYQxUHJigbjD7sJh3FvvqUTCevqGf3doc29I,4046
88
88
  pygpt_net/controller/lang/__init__.py,sha256=Bpr9Ygoi_vd_CnfbQiZzYAeg9KV0vqNIuMl8EWmHKaM,508
@@ -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=k1sjIV_fm9ds-Oxigfhl7mmNrElebvr1UJH1347hRFU,11136
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=cYNtYLKHS_NO6fSCGZuZ5W6bVn9-kBtFgRjvDRLge2Q,20539
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
@@ -303,11 +303,11 @@ pygpt_net/core/render/plain/helpers.py,sha256=CMF84kSeuQnkgZVHmN_9YWaL5BC958tDE9
303
303
  pygpt_net/core/render/plain/pid.py,sha256=Pz3v1tnLj-XI_9vcaVkCf9SZ2EgVs4LYV4qzelBMoOg,1119
304
304
  pygpt_net/core/render/plain/renderer.py,sha256=Cm-HXHd5Mc6LAiDW5qNXOyZoLKlUo16I_cU-B2cGnYM,15595
305
305
  pygpt_net/core/render/web/__init__.py,sha256=istp5dsn6EkLEP7lOBeDb8RjodUcWZqjcEvTroaTT-w,489
306
- pygpt_net/core/render/web/body.py,sha256=81A6hRtnq5gl4PJBeBxEKbeCSyuSrHUZy-y1WivodqY,55979
306
+ pygpt_net/core/render/web/body.py,sha256=JH-CeiYD6h6YAv3ybzx3ZLV5sEaCuMdPRVg8WLWz3FY,55636
307
307
  pygpt_net/core/render/web/helpers.py,sha256=ivrXrCqRIUWHDmu3INu-i6XUlB2W9IOO8iYyqpbnSRU,5438
308
308
  pygpt_net/core/render/web/parser.py,sha256=2ATdydXNDIgf4Jq44m1kvd7Vr4mW_FopovrYbwfv7rc,12740
309
309
  pygpt_net/core/render/web/pid.py,sha256=EOp8hUJMFXNgZs8Kl5Qt8fz3Rslj6meK8Yn9aDmUrdM,3092
310
- pygpt_net/core/render/web/renderer.py,sha256=SCeUFC6GxAAvmxg07N1EM6FALaBwEGtLLMd05i3T2P8,47301
310
+ pygpt_net/core/render/web/renderer.py,sha256=iBOb2guv5EQxuP9QSmVT2Tjy_F_mi5htKTjAht3qcyI,46842
311
311
  pygpt_net/core/render/web/syntax_highlight.py,sha256=QSLGF5cJL_Xeqej7_TYwY_5C2w9enXV_cMEuaJ3C43U,2005
312
312
  pygpt_net/core/settings/__init__.py,sha256=GQ6_gJ2jf_Chm7ZuZLvkcvEh_sfMDVMBieeoJi2iPI4,512
313
313
  pygpt_net/core/settings/settings.py,sha256=onqwNiICm2VhHfmXLvp1MiEJ14m2jzeeI2pjUiaUwtY,7787
@@ -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=9kUaXJQnXcU41gF1vqHOQfqCqu_FFEtkfF6yOhVgn4Y,24887
347
- pygpt_net/data/config/models.json,sha256=iH5RC1yK0JOrm6P_m8bAwfKQQP-w4QMhNoi9Gky8pJM,109648
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
@@ -356,9 +356,11 @@ pygpt_net/data/config/presets/agent_openai_expert.json,sha256=UgGlHWzQTKUxAgYeLJ
356
356
  pygpt_net/data/config/presets/agent_openai_planner.json,sha256=_WC-eudsWPThflyZXU4y6aXSAPImfpD6WZmvMpll800,2664
357
357
  pygpt_net/data/config/presets/agent_openai_researcher.json,sha256=zPFzCgxZ798HggLztyJmJLi090bkVx2H04Af_oGZPgA,2677
358
358
  pygpt_net/data/config/presets/agent_openai_simple.json,sha256=CRA5QerHanPFO8HWo-xWyiMhv-RpK7I0JhYKTaD97dU,925
359
+ pygpt_net/data/config/presets/agent_openai_supervisor.json,sha256=7PBO7tqbZ7CaYU9vIiKwlQZoihtQwiDQEuqu4FtS-NU,2624
359
360
  pygpt_net/data/config/presets/agent_openai_writer.json,sha256=KcRYj4lhQKQS1Lqx8TYXlu_Vfw1oWJCZpUWrbiztuZc,1748
360
361
  pygpt_net/data/config/presets/agent_planner.json,sha256=a6Rv58Bnm2STNWB0Rw_dGhnsz6Lb3J8_GwsUVZaTIXc,742
361
362
  pygpt_net/data/config/presets/agent_react.json,sha256=L8NP6HeFwdQmSkFUHCqlF7ufhSU12y9pvLj3trc_PSc,730
363
+ pygpt_net/data/config/presets/agent_supervisor.json,sha256=r7dip7NeddvbO963zQppwIHk3gYDnUsgSlsQn3qm6Ek,2683
362
364
  pygpt_net/data/config/presets/batman_and_joker.json,sha256=STzeusURiA_L1XX_glwPTOoImT7pJZFExruP7hRniWE,528
363
365
  pygpt_net/data/config/presets/current.agent.json,sha256=aSkA0Eh1bziRaXFHMkEE1OG2IWk80dwcbQsl0czN6c8,419
364
366
  pygpt_net/data/config/presets/current.agent_llama.json,sha256=-XdX5tAWXDc34FCDa7GotQjg1tPNigG5RdJbV2CAphU,705
@@ -377,7 +379,7 @@ pygpt_net/data/config/presets/current.vision.json,sha256=x1ll5B3ROSKYQA6l27PRGXU
377
379
  pygpt_net/data/config/presets/dalle_white_cat.json,sha256=esqUb43cqY8dAo7B5u99tRC0MBV5lmlrVLnJhTSkL8w,552
378
380
  pygpt_net/data/config/presets/joke_agent.json,sha256=R6n9P7KRb0s-vZWZE7kHdlOfXAx1yYrPmUw8uLyw8OE,474
379
381
  pygpt_net/data/config/presets/joke_expert.json,sha256=jjcoIYEOaEp8kLoIbecxQROiq4J3Zess5w8_HmngPOY,671
380
- pygpt_net/data/config/settings.json,sha256=uBmRNmtpDeF_qpGz-MFVDr7ttLCSQi-rYh7bdcmsAVo,66176
382
+ pygpt_net/data/config/settings.json,sha256=QM5OULR9q3rGXPT25UNFJJdUM6dh8ugxwoZvgh8FYsk,66565
381
383
  pygpt_net/data/config/settings_section.json,sha256=OLWgjs3hHFzk50iwzVyUpcFW7dfochOnbZS0vDoMlDU,1158
382
384
  pygpt_net/data/css/fix_windows.css,sha256=Mks14Vg25ncbMqZJfAMStrhvZmgHF6kU75ohTWRZeI8,664
383
385
  pygpt_net/data/css/fix_windows.dark.css,sha256=7hGbT_qI5tphYC_WlFpJRDAcmjBb0AQ2Yc-y-_Zzf2M,161
@@ -1601,14 +1603,14 @@ pygpt_net/data/js/katex/fonts/KaTeX_Typewriter-Regular.woff2,sha256=cdUX1ngneHz6
1601
1603
  pygpt_net/data/js/katex/katex.min.css,sha256=lVaKnUaQNG4pI71WHffQZVALLQF4LMZEk4nOia8U9ow,23532
1602
1604
  pygpt_net/data/js/katex/katex.min.js,sha256=KLASOtKS2x8pUxWVzCDmlWJ4jhuLb0vtrgakbD6gDDo,276757
1603
1605
  pygpt_net/data/languages.csv,sha256=fvtER6vnTXFHQslCh-e0xCfZDQ-ijgW4GYpOJG4U7LY,8289
1604
- pygpt_net/data/locale/locale.de.ini,sha256=fCfTbmLSJxxSWb-JFBa-fIrBtywPZJK5ARerlddWGm8,99817
1605
- pygpt_net/data/locale/locale.en.ini,sha256=FkIznmip2wLg6SP0ky48DuUzHMMjiR1sMiqYVPOoW_8,90467
1606
- pygpt_net/data/locale/locale.es.ini,sha256=Y9WG-_cUo4leuJee4C3sCdNlOSWgXWkTIX5iOBlcbfw,100383
1607
- pygpt_net/data/locale/locale.fr.ini,sha256=2fQq1kmOYx7A3eu_cnIG39_Egna7xoxspdU6VEeiu6Y,103118
1608
- pygpt_net/data/locale/locale.it.ini,sha256=rGtzr8WXw-RqrpFekdMNq4EEDDaZnKNjkKZ3SwLNtpI,98210
1609
- pygpt_net/data/locale/locale.pl.ini,sha256=SPjezhlSrHUsdp1lXIzSoaM_t6A_YmFV7k1q0KZmfIk,97879
1610
- pygpt_net/data/locale/locale.uk.ini,sha256=x8pfprLOa4fmX-unsG8fcFTXFLZ7tF6cbk9ot8EuIP0,136549
1611
- pygpt_net/data/locale/locale.zh.ini,sha256=y8ZVI4WOWYkQWd1EquUROfBmvsgHL45RNmOtMO8EcrU,87425
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
1612
1614
  pygpt_net/data/locale/plugin.agent.de.ini,sha256=BY28KpfFvgfVYJzcw2o5ScWnR4uuErIYGyc3NVHlmTw,1714
1613
1615
  pygpt_net/data/locale/plugin.agent.en.ini,sha256=HwOWCI7e8uzlIgyRWRVyr1x6Xzs8Xjv5pfEc7jfLOo4,1728
1614
1616
  pygpt_net/data/locale/plugin.agent.es.ini,sha256=bqaJQne8HPKFVtZ8Ukzo1TSqVW41yhYbGUqW3j2x1p8,1680
@@ -1910,9 +1912,9 @@ pygpt_net/plugin/github/config.py,sha256=x8jD04kYe4wVq8Df13Zse7fUdLHzdHZDGp5kjfp
1910
1912
  pygpt_net/plugin/github/plugin.py,sha256=NlL7-ITPlNUW5Wft4uAuYV0Acy3rfk2SjbeJQH0Em7k,3495
1911
1913
  pygpt_net/plugin/github/worker.py,sha256=RBiofytfLmSEhkxag6iHo1ctnprv_qcgoCypttDWMnI,29402
1912
1914
  pygpt_net/plugin/google/__init__.py,sha256=tvF6upS93L61NRbkQmscSJXM7ZzPlmVj16mVHUM-NHU,510
1913
- pygpt_net/plugin/google/config.py,sha256=ozL9vm4ghhMRsE-QKCP8tITxWQ2c1NXSqic_kbq7Coo,15184
1914
- pygpt_net/plugin/google/plugin.py,sha256=_E9QqacWypeDWi8uZ8CeB53bTsrmyZg7vc_QFpk1Noo,3635
1915
- pygpt_net/plugin/google/worker.py,sha256=QZf9WabHeiYWjW0cDwRRTFDh8YhdrViAw7MU9SH-afo,35401
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
1916
1918
  pygpt_net/plugin/idx_llama_index/__init__.py,sha256=tvF6upS93L61NRbkQmscSJXM7ZzPlmVj16mVHUM-NHU,510
1917
1919
  pygpt_net/plugin/idx_llama_index/config.py,sha256=znp2ZADvwCUcwvLM_Szi8nxEDvl-Sg4M6Y_tXih8HdM,5794
1918
1920
  pygpt_net/plugin/idx_llama_index/plugin.py,sha256=hNCb9t3-9B6M2noJR1zXJR_e5SnVcqsda38fD7BTq7s,10997
@@ -1960,11 +1962,13 @@ pygpt_net/provider/agents/llama_index/legacy/react.py,sha256=rjWcNNhuB2gQfjoNbQp
1960
1962
  pygpt_net/provider/agents/llama_index/openai_workflow.py,sha256=_gLzsayNWuTLwvm2WBJFw1ooWR_9iy2OTr1u5HEtAEI,1752
1961
1963
  pygpt_net/provider/agents/llama_index/planner_workflow.py,sha256=pqh3fn-CRXYFcsmgjshqjb_VCtTzY7tkX5zs-pMIPWE,3942
1962
1964
  pygpt_net/provider/agents/llama_index/react_workflow.py,sha256=s8LAo_gVy7129kSbUo_QZr8Vaoc5LZ-5vquf9_dAcnE,2436
1965
+ pygpt_net/provider/agents/llama_index/supervisor_workflow.py,sha256=oZ5BXeB4wwi1OcoxHQCYySqhtbZiCpSNATuy5dv3vyk,4011
1963
1966
  pygpt_net/provider/agents/llama_index/workflow/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1964
1967
  pygpt_net/provider/agents/llama_index/workflow/codeact.py,sha256=6uiHTffK69Gf5lvwvjXQqGcqv4Lyf5Tt9hOMKu9FQes,20776
1965
1968
  pygpt_net/provider/agents/llama_index/workflow/events.py,sha256=Oicqo3td43G5OqydcfQZ3tjyYs_SyUUG6d6a4aA4OKk,884
1966
1969
  pygpt_net/provider/agents/llama_index/workflow/openai.py,sha256=qaFPR_D7mcWMR8kFJqyuUWk2TYjewLj3CESlaehu8Cs,22987
1967
1970
  pygpt_net/provider/agents/llama_index/workflow/planner.py,sha256=P3-wOD7qOKlq9pg83qQRxOvaRbJeITZrtEumXlxYfSc,21416
1971
+ pygpt_net/provider/agents/llama_index/workflow/supervisor.py,sha256=L8j7BeCz85dNO1HmD2gRFjCuZ1C0Xfch15tKrVV_TKY,11907
1968
1972
  pygpt_net/provider/agents/openai/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1969
1973
  pygpt_net/provider/agents/openai/agent.py,sha256=38BzDkP37ZO4OPiZ2Jiq0OYzQUHeqxfsT6JVcO9fgpQ,6595
1970
1974
  pygpt_net/provider/agents/openai/agent_b2b.py,sha256=b9r2TWZ2iXtqrboTyvqfF50r_dwZSkvs1CS7qKdoWhM,17250
@@ -1981,6 +1985,7 @@ pygpt_net/provider/agents/openai/bots/research_bot/agents/search_agent.py,sha256
1981
1985
  pygpt_net/provider/agents/openai/bots/research_bot/agents/writer_agent.py,sha256=F2K7O5xccHUHzYJdYgcJehgZtdHgIcbOrsY7mB2K4E0,1773
1982
1986
  pygpt_net/provider/agents/openai/bots/research_bot/manager.py,sha256=h8jHoPhXDz-VZrH8qUvvSVEtJpa1ThbzUToHkgxCF08,7630
1983
1987
  pygpt_net/provider/agents/openai/evolve.py,sha256=AkQznk-vmYMBpNdLChiIzzLqQlj1pbpvGZUhFhCnZVI,22751
1988
+ pygpt_net/provider/agents/openai/supervisor.py,sha256=3FOMEpuyGNRr5szw6pD4QnAIQIn1YceszoPlEAlI270,13141
1984
1989
  pygpt_net/provider/audio_input/__init__.py,sha256=lOkgAiuNUqkAl_QrIG3ZsUznIZeJYtokgzEnDB8gRic,488
1985
1990
  pygpt_net/provider/audio_input/base.py,sha256=2PxE9QeEd4fODLYx_sO-1iVdAFOxHVHjtse7-GIqix8,1826
1986
1991
  pygpt_net/provider/audio_input/bing_speech_recognition.py,sha256=Rmpo7yaU8pU7r8KaH57U8Lc-NVE9EpF5wToL_qpMKhw,2825
@@ -2025,7 +2030,7 @@ pygpt_net/provider/core/calendar/db_sqlite/storage.py,sha256=QDclQCQdr4QyRIqjgGX
2025
2030
  pygpt_net/provider/core/config/__init__.py,sha256=jQQgG9u_ZLsZWXustoc1uvC-abUvj4RBKPAM30-f2Kc,488
2026
2031
  pygpt_net/provider/core/config/base.py,sha256=cbvzbMNqL2XgC-36gGubnU37t94AX7LEw0lecb2Nm80,1365
2027
2032
  pygpt_net/provider/core/config/json_file.py,sha256=GCcpCRQnBiSLWwlGbG9T3ZgiHkTfp5Jsg2KYkZcakBw,6789
2028
- pygpt_net/provider/core/config/patch.py,sha256=ylMm-WtTAPjcSVNGYVi_ELcObfNHo_KO-1aqsLszAJU,119646
2033
+ pygpt_net/provider/core/config/patch.py,sha256=jwtMtx__2-snO2pK6CjIRhDFEXSi4il5-fB6E074VPE,120317
2029
2034
  pygpt_net/provider/core/ctx/__init__.py,sha256=jQQgG9u_ZLsZWXustoc1uvC-abUvj4RBKPAM30-f2Kc,488
2030
2035
  pygpt_net/provider/core/ctx/base.py,sha256=Tfb4MDNe9BXXPU3lbzpdYwJF9S1oa2-mzgu5XT4It9g,3003
2031
2036
  pygpt_net/provider/core/ctx/db_sqlite/__init__.py,sha256=0dP8VhI4bnFsQQKxAkaleKFlyaMycDD_cnE7gBCa57Y,512
@@ -2069,7 +2074,7 @@ pygpt_net/provider/core/plugin_preset/patch.py,sha256=et9YBZ5I9Wc5SfrhjNWjgO3ZD-
2069
2074
  pygpt_net/provider/core/preset/__init__.py,sha256=jQQgG9u_ZLsZWXustoc1uvC-abUvj4RBKPAM30-f2Kc,488
2070
2075
  pygpt_net/provider/core/preset/base.py,sha256=E-wfT1fk7lZnDDf79eOOmdjdWs8oz-Pk1QRzFrRXiRo,1406
2071
2076
  pygpt_net/provider/core/preset/json_file.py,sha256=b_5RLUtszuFEPJS9Eh9WwLi0BsLUUQnIKRdnTqz424M,10621
2072
- pygpt_net/provider/core/preset/patch.py,sha256=6JTYMsdu8Piy0_KeahITZ0k5AFIuPV292uuTWmyNB3M,12892
2077
+ pygpt_net/provider/core/preset/patch.py,sha256=b0agSLVfen7KX8wYvb8Haed8sw7Mhqvr2j6q9psNkwk,13898
2073
2078
  pygpt_net/provider/core/prompt/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
2074
2079
  pygpt_net/provider/core/prompt/base.py,sha256=EYUA30T1QwJ9RSD0uW5x6VEstgIXNwgutmaXI64BWhw,1304
2075
2080
  pygpt_net/provider/core/prompt/json_file.py,sha256=5yfW1RgEa36tX4-ntze4PavWLry0YG43D2LO23_MrzE,4838
@@ -2307,7 +2312,7 @@ pygpt_net/ui/layout/toolbox/presets.py,sha256=uEmMy3gudpjKFQbDVNShjK1iBw-bl-1IXS
2307
2312
  pygpt_net/ui/layout/toolbox/prompt.py,sha256=jebF-q1S1Et6ISa9vI0_nM4sb7liDesAXJHtZ5Ll7ZI,4006
2308
2313
  pygpt_net/ui/layout/toolbox/toolbox.py,sha256=zEZr_XDz9QbPKL0u0KMSt1b8yOG-ao1gmZPvWWVpuVs,3392
2309
2314
  pygpt_net/ui/layout/toolbox/vision.py,sha256=GZY-N2z8re1LN1ntsy-3Ius8OY4DujmJpyJ1qP2ZRxs,2447
2310
- pygpt_net/ui/main.py,sha256=ObCj3nMmjzDEWgNSdh0Dwn8BocEjmuSl-AALDQr2g8I,13783
2315
+ pygpt_net/ui/main.py,sha256=Soxj9heYSXaJ9p20WA_hpwPLh22wGpX7c8JvgZ4c99k,13789
2311
2316
  pygpt_net/ui/menu/__init__.py,sha256=wAIKG9wLWfYv6tpXCTXptWb_XKoCc-4lYWLDvV1bVYk,508
2312
2317
  pygpt_net/ui/menu/about.py,sha256=Y5Ok96MVsFPekvL4dPYK01QPGUUbZvfAsZztcxQhXh8,7232
2313
2318
  pygpt_net/ui/menu/audio.py,sha256=Sb8NTAyMnPj4johTvBKwocHzq67XypIdw7K7hjf2760,3494
@@ -2378,7 +2383,7 @@ pygpt_net/ui/widget/lists/attachment_ctx.py,sha256=A4S7ULUZ1KMilgeomHKcN4f_vOr2q
2378
2383
  pygpt_net/ui/widget/lists/base.py,sha256=hGoDSLpPVyGn5rdTzn3ixEigM67NLoO7Kc27Un6HNgM,3536
2379
2384
  pygpt_net/ui/widget/lists/base_combo.py,sha256=-ZXvof8eJfSoB0_ONVxVuCJP8acss-f066XreG_GfnY,4132
2380
2385
  pygpt_net/ui/widget/lists/base_list_combo.py,sha256=DTm5qiT08pfHu8DKH_gA6aodDY3XELtKfDudJTOL3RU,5721
2381
- pygpt_net/ui/widget/lists/context.py,sha256=X4ROoTmaQPnl6oVCIE-vzQD5oO3LXE4LxIZUtSZw8CU,18916
2386
+ pygpt_net/ui/widget/lists/context.py,sha256=04oZTJ4nPnBIrxWsnacU1MY6niMhwvIGgl4MSxNpT3U,19130
2382
2387
  pygpt_net/ui/widget/lists/db.py,sha256=f0EIzTSzjblJtCuGoWBq6PerFt8yqFZrP2hkIoHuzbI,5861
2383
2388
  pygpt_net/ui/widget/lists/debug.py,sha256=bjzshfRXFwFQ4neCY8pFMHPm9b57i5x-pHdk-sY--VI,3658
2384
2389
  pygpt_net/ui/widget/lists/experts.py,sha256=c6o0TIQ6YkIAMHoHHYBA-474z9tyPPw7YUn4R-oaXio,5957
@@ -2428,12 +2433,12 @@ pygpt_net/ui/widget/textarea/output.py,sha256=8T2spzqVYHKopSB83p1ULazGZ14nFJhXLB
2428
2433
  pygpt_net/ui/widget/textarea/rename.py,sha256=NwuGRIeWMo7WfsMguAFpTqdOz1eTiXbxrDXGsbWF_TY,1358
2429
2434
  pygpt_net/ui/widget/textarea/search_input.py,sha256=phEXf50VcfCRBen0p2iEAzuX2zmrSE3nWVRfWmtHKpo,5228
2430
2435
  pygpt_net/ui/widget/textarea/url.py,sha256=xbNQxoM5fYI1ZWbvybQkPmNPrIq3yhtNPBOSOWftZCg,1337
2431
- pygpt_net/ui/widget/textarea/web.py,sha256=6Kt9IUkjx3rhWBmH3xdnmX1X-ACUMYnfHnRN0qoPw2g,17798
2436
+ pygpt_net/ui/widget/textarea/web.py,sha256=c1P4c8ivQLE0_rso6GUc-uSyvjYTIOiP9HOqUCMWIl8,18922
2432
2437
  pygpt_net/ui/widget/vision/__init__.py,sha256=8HT4tQFqQogEEpGYTv2RplKBthlsFKcl5egnv4lzzEw,488
2433
2438
  pygpt_net/ui/widget/vision/camera.py,sha256=T8b5cmK6uhf_WSSxzPt_Qod8JgMnst6q8sQqRvgQiSA,2584
2434
2439
  pygpt_net/utils.py,sha256=YL0czRa1v6ilKNszAI9NyaE9Lgz6HiUGpNFAYQ9Wj8s,8835
2435
- pygpt_net-2.6.8.dist-info/LICENSE,sha256=rbPqNB_xxANH8hKayJyIcTwD4bj4Y2G-Mcm85r1OImM,1126
2436
- pygpt_net-2.6.8.dist-info/METADATA,sha256=ZwRQepmMsnTcvXwW9T5M9raLnm_IoTTeENn8kr4gw0M,186851
2437
- pygpt_net-2.6.8.dist-info/WHEEL,sha256=b4K_helf-jlQoXBBETfwnf4B04YC67LOev0jo4fX5m8,88
2438
- pygpt_net-2.6.8.dist-info/entry_points.txt,sha256=qvpII6UHIt8XfokmQWnCYQrTgty8FeJ9hJvOuUFCN-8,43
2439
- pygpt_net-2.6.8.dist-info/RECORD,,
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,,