pygpt-net 2.6.57__py3-none-any.whl → 2.6.59__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 (47) hide show
  1. pygpt_net/CHANGELOG.txt +10 -0
  2. pygpt_net/__init__.py +3 -3
  3. pygpt_net/app.py +30 -25
  4. pygpt_net/controller/debug/debug.py +3 -3
  5. pygpt_net/controller/dialogs/info.py +6 -2
  6. pygpt_net/controller/ui/tabs.py +17 -0
  7. pygpt_net/core/agents/runners/llama_workflow.py +0 -0
  8. pygpt_net/core/filesystem/parser.py +37 -24
  9. pygpt_net/core/filesystem/url.py +5 -2
  10. pygpt_net/data/config/config.json +4 -3
  11. pygpt_net/data/config/models.json +3 -3
  12. pygpt_net/data/config/settings.json +41 -2
  13. pygpt_net/data/js/app/ui.js +1 -1
  14. pygpt_net/data/js/app.min.js +2 -2
  15. pygpt_net/data/locale/locale.de.ini +5 -1
  16. pygpt_net/data/locale/locale.en.ini +5 -1
  17. pygpt_net/data/locale/locale.es.ini +5 -1
  18. pygpt_net/data/locale/locale.fr.ini +5 -1
  19. pygpt_net/data/locale/locale.it.ini +5 -1
  20. pygpt_net/data/locale/locale.pl.ini +5 -1
  21. pygpt_net/data/locale/locale.uk.ini +5 -1
  22. pygpt_net/data/locale/locale.zh.ini +5 -1
  23. pygpt_net/data/locale/plugin.cmd_system.en.ini +68 -0
  24. pygpt_net/js_rc.py +5 -5
  25. pygpt_net/plugin/base/plugin.py +3 -5
  26. pygpt_net/plugin/cmd_system/config.py +377 -1
  27. pygpt_net/plugin/cmd_system/plugin.py +52 -8
  28. pygpt_net/plugin/cmd_system/runner.py +508 -32
  29. pygpt_net/plugin/cmd_system/winapi.py +481 -0
  30. pygpt_net/plugin/cmd_system/worker.py +88 -15
  31. pygpt_net/provider/agents/llama_index/workflow/supervisor.py +0 -0
  32. pygpt_net/provider/core/config/patch.py +8 -1
  33. pygpt_net/provider/llms/openai.py +6 -4
  34. pygpt_net/tools/code_interpreter/ui/html.py +2 -1
  35. pygpt_net/tools/html_canvas/ui/widgets.py +19 -18
  36. pygpt_net/tools/web_browser/__init__.py +12 -0
  37. pygpt_net/tools/web_browser/tool.py +232 -0
  38. pygpt_net/tools/web_browser/ui/__init__.py +0 -0
  39. pygpt_net/tools/web_browser/ui/dialogs.py +123 -0
  40. pygpt_net/tools/web_browser/ui/widgets.py +351 -0
  41. pygpt_net/ui/widget/textarea/html.py +172 -24
  42. pygpt_net/ui/widget/textarea/web.py +1 -1
  43. {pygpt_net-2.6.57.dist-info → pygpt_net-2.6.59.dist-info}/METADATA +81 -61
  44. {pygpt_net-2.6.57.dist-info → pygpt_net-2.6.59.dist-info}/RECORD +45 -39
  45. {pygpt_net-2.6.57.dist-info → pygpt_net-2.6.59.dist-info}/LICENSE +0 -0
  46. {pygpt_net-2.6.57.dist-info → pygpt_net-2.6.59.dist-info}/WHEEL +0 -0
  47. {pygpt_net-2.6.57.dist-info → pygpt_net-2.6.59.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.57
3
+ Version: 2.6.59
4
4
  Summary: Desktop AI Assistant powered by: OpenAI GPT-5, GPT-4, o1, o3, Gemini, Claude, Grok, DeepSeek, and other models supported by Llama Index, and Ollama. Chatbot, agents, completion, image generation, vision analysis, speech-to-text, plugins, MCP, internet access, file handling, command execution and more.
5
5
  License: MIT
6
6
  Keywords: ai,api,api key,app,assistant,bielik,chat,chatbot,chatgpt,claude,dall-e,deepseek,desktop,gemini,gpt,gpt-3.5,gpt-4,gpt-4-vision,gpt-4o,gpt-5,gpt-oss,gpt3.5,gpt4,grok,langchain,llama-index,llama3,mistral,o1,o3,ollama,openai,presets,py-gpt,py_gpt,pygpt,pyside,qt,text completion,tts,ui,vision,whisper
@@ -20,91 +20,89 @@ Requires-Dist: Markdown (>=3.8.2,<4.0.0)
20
20
  Requires-Dist: PyAudio (>=0.2.14,<0.3.0)
21
21
  Requires-Dist: PyAutoGUI (>=0.9.54,<0.10.0)
22
22
  Requires-Dist: PySide6 (==6.9.1)
23
- Requires-Dist: Pygments (>=2.19.2,<3.0.0)
24
- Requires-Dist: SQLAlchemy (>=2.0.43,<3.0.0)
23
+ Requires-Dist: Pygments (==2.19.2)
24
+ Requires-Dist: SQLAlchemy (==2.0.43)
25
25
  Requires-Dist: SpeechRecognition (>=3.14.3,<4.0.0)
26
26
  Requires-Dist: Telethon (>=1.40.0,<2.0.0)
27
- Requires-Dist: anthropic (>=0.54.0,<0.55.0)
28
- Requires-Dist: azure-core (>=1.35.0,<2.0.0)
29
- Requires-Dist: beautifulsoup4 (>=4.13.5,<5.0.0)
30
- Requires-Dist: boto3 (>=1.40.17,<2.0.0)
31
- Requires-Dist: chromadb (>=0.5.20,<0.6.0)
27
+ Requires-Dist: anthropic (>=0.68.0,<0.69.0)
28
+ Requires-Dist: azure-core (==1.35.1)
29
+ Requires-Dist: beautifulsoup4 (==4.13.5)
30
+ Requires-Dist: chromadb (==1.1.0)
32
31
  Requires-Dist: croniter (>=2.0.7,<3.0.0)
33
32
  Requires-Dist: ddgs (>=9.5.5,<10.0.0)
34
33
  Requires-Dist: docker (>=7.1.0,<8.0.0)
35
34
  Requires-Dist: docx2txt (>=0.8,<0.9)
36
- Requires-Dist: gkeepapi (>=0.15.1,<0.16.0)
37
- Requires-Dist: google-api-python-client (>=2.179.0,<3.0.0)
38
- Requires-Dist: google-generativeai (>=0.8.5,<0.9.0)
39
- Requires-Dist: grpcio (>=1.74.0,<2.0.0)
40
- Requires-Dist: httpx (>=0.28.1,<0.29.0)
35
+ Requires-Dist: gkeepapi (==0.15.1)
36
+ Requires-Dist: google-api-python-client (==2.182.0)
37
+ Requires-Dist: google-generativeai (==0.8.5)
38
+ Requires-Dist: grpcio (==1.75.0)
39
+ Requires-Dist: httpx (==0.28.1)
41
40
  Requires-Dist: httpx-socks (>=0.10.1,<0.11.0)
42
- Requires-Dist: huggingface-hub (>=0.33.5,<0.34.0)
41
+ Requires-Dist: huggingface-hub (==0.35.0)
43
42
  Requires-Dist: ipykernel (>=6.30.1,<7.0.0)
44
43
  Requires-Dist: jupyter_client (>=8.6.3,<9.0.0)
45
- Requires-Dist: llama-index (>=0.12.44,<0.13.0)
46
- Requires-Dist: llama-index-agent-openai (>=0.4.12,<0.5.0)
47
- Requires-Dist: llama-index-core (==0.12.44)
48
- Requires-Dist: llama-index-embeddings-azure-openai (>=0.3.9,<0.4.0)
49
- Requires-Dist: llama-index-embeddings-gemini (>=0.3.2,<0.4.0)
50
- Requires-Dist: llama-index-embeddings-google-genai (>=0.2.1,<0.3.0)
51
- Requires-Dist: llama-index-embeddings-huggingface-api (>=0.3.1,<0.4.0)
52
- Requires-Dist: llama-index-embeddings-mistralai (>=0.3.0,<0.4.0)
53
- Requires-Dist: llama-index-embeddings-ollama (>=0.5.0,<0.6.0)
54
- Requires-Dist: llama-index-embeddings-openai (>=0.3.1,<0.4.0)
55
- Requires-Dist: llama-index-embeddings-openai-like (>=0.1.1,<0.2.0)
56
- Requires-Dist: llama-index-embeddings-voyageai (>=0.3.6,<0.4.0)
57
- Requires-Dist: llama-index-llms-anthropic (>=0.6.19,<0.7.0)
58
- Requires-Dist: llama-index-llms-azure-openai (>=0.3.4,<0.4.0)
59
- Requires-Dist: llama-index-llms-deepseek (>=0.1.2,<0.2.0)
60
- Requires-Dist: llama-index-llms-gemini (>=0.5.0,<0.6.0)
61
- Requires-Dist: llama-index-llms-google-genai (>=0.2.6,<0.3.0)
62
- Requires-Dist: llama-index-llms-huggingface-api (>=0.3.1,<0.4.0)
63
- Requires-Dist: llama-index-llms-mistralai (>=0.6.1,<0.7.0)
64
- Requires-Dist: llama-index-llms-ollama (>=0.6.2,<0.7.0)
65
- Requires-Dist: llama-index-llms-openai (>=0.4.7,<0.5.0)
66
- Requires-Dist: llama-index-llms-openai-like (>=0.4.0,<0.5.0)
67
- Requires-Dist: llama-index-llms-perplexity (>=0.3.7,<0.4.0)
68
- Requires-Dist: llama-index-multi-modal-llms-openai (>=0.5.1,<0.6.0)
69
- Requires-Dist: llama-index-readers-chatgpt-plugin (>=0.3.0,<0.4.0)
70
- Requires-Dist: llama-index-readers-database (>=0.3.0,<0.4.0)
71
- Requires-Dist: llama-index-readers-file (>=0.4.11,<0.5.0)
72
- Requires-Dist: llama-index-readers-github (>=0.5.0,<0.6.0)
73
- Requires-Dist: llama-index-readers-google (>=0.5.0,<0.6.0)
74
- Requires-Dist: llama-index-readers-microsoft-onedrive (>=0.3.0,<0.4.0)
75
- Requires-Dist: llama-index-readers-twitter (>=0.3.0,<0.4.0)
76
- Requires-Dist: llama-index-readers-web (>=0.3.9,<0.4.0)
77
- Requires-Dist: llama-index-vector-stores-chroma (>=0.4.2,<0.5.0)
78
- Requires-Dist: llama-index-vector-stores-elasticsearch (==0.4.0)
79
- Requires-Dist: llama-index-vector-stores-pinecone (>=0.6.0,<0.7.0)
80
- Requires-Dist: llama-index-vector-stores-redis (>=0.4.0,<0.5.0)
44
+ Requires-Dist: llama-index (==0.13.6)
45
+ Requires-Dist: llama-index-core (==0.13.6)
46
+ Requires-Dist: llama-index-embeddings-azure-openai (>=0.4.1,<0.5.0)
47
+ Requires-Dist: llama-index-embeddings-gemini (>=0.4.1,<0.5.0)
48
+ Requires-Dist: llama-index-embeddings-google-genai (>=0.3.1,<0.4.0)
49
+ Requires-Dist: llama-index-embeddings-huggingface-api (>=0.4.1,<0.5.0)
50
+ Requires-Dist: llama-index-embeddings-mistralai (>=0.4.1,<0.5.0)
51
+ Requires-Dist: llama-index-embeddings-ollama (>=0.8.3,<0.9.0)
52
+ Requires-Dist: llama-index-embeddings-openai (>=0.5.1,<0.6.0)
53
+ Requires-Dist: llama-index-embeddings-openai-like (>=0.2.2,<0.3.0)
54
+ Requires-Dist: llama-index-embeddings-voyageai (>=0.4.2,<0.5.0)
55
+ Requires-Dist: llama-index-llms-anthropic (>=0.8.6,<0.9.0)
56
+ Requires-Dist: llama-index-llms-azure-openai (>=0.4.1,<0.5.0)
57
+ Requires-Dist: llama-index-llms-deepseek (>=0.2.2,<0.3.0)
58
+ Requires-Dist: llama-index-llms-gemini (>=0.6.1,<0.7.0)
59
+ Requires-Dist: llama-index-llms-google-genai (>=0.3.1,<0.4.0)
60
+ Requires-Dist: llama-index-llms-huggingface-api (>=0.6.1,<0.7.0)
61
+ Requires-Dist: llama-index-llms-mistralai (>=0.7.1,<0.8.0)
62
+ Requires-Dist: llama-index-llms-ollama (>=0.7.3,<0.8.0)
63
+ Requires-Dist: llama-index-llms-openai (>=0.5.6,<0.6.0)
64
+ Requires-Dist: llama-index-llms-openai-like (>=0.5.1,<0.6.0)
65
+ Requires-Dist: llama-index-llms-perplexity (>=0.4.1,<0.5.0)
66
+ Requires-Dist: llama-index-multi-modal-llms-openai (>=0.6.1,<0.7.0)
67
+ Requires-Dist: llama-index-readers-chatgpt-plugin (>=0.4.1,<0.5.0)
68
+ Requires-Dist: llama-index-readers-database (>=0.5.1,<0.6.0)
69
+ Requires-Dist: llama-index-readers-file (>=0.5.4,<0.6.0)
70
+ Requires-Dist: llama-index-readers-github (>=0.8.2,<0.9.0)
71
+ Requires-Dist: llama-index-readers-google (>=0.7.2,<0.8.0)
72
+ Requires-Dist: llama-index-readers-microsoft-onedrive (>=0.4.1,<0.5.0)
73
+ Requires-Dist: llama-index-readers-twitter (>=0.4.1,<0.5.0)
74
+ Requires-Dist: llama-index-readers-web (>=0.5.3,<0.6.0)
75
+ Requires-Dist: llama-index-vector-stores-chroma (>=0.5.3,<0.6.0)
76
+ Requires-Dist: llama-index-vector-stores-elasticsearch (==0.5.1)
77
+ Requires-Dist: llama-index-vector-stores-pinecone (>=0.7.1,<0.8.0)
78
+ Requires-Dist: llama-index-vector-stores-redis (>=0.6.1,<0.7.0)
81
79
  Requires-Dist: mcp (>=1.13.1,<2.0.0)
82
80
  Requires-Dist: mss (>=9.0.2,<10.0.0)
83
81
  Requires-Dist: nbconvert (>=7.16.6,<8.0.0)
84
- Requires-Dist: numpy (>=1.26.4,<2.0.0)
85
- Requires-Dist: onnxruntime (==1.20.1)
86
- Requires-Dist: openai (==1.96.1)
82
+ Requires-Dist: numpy (==1.26.4)
83
+ Requires-Dist: onnxruntime (==1.22.1)
84
+ Requires-Dist: openai (==1.108.2)
87
85
  Requires-Dist: openai-agents (>=0.2.3,<0.3.0)
88
86
  Requires-Dist: opencv-python (>=4.11.0.86,<5.0.0.0)
89
87
  Requires-Dist: packaging (>=25.0,<26.0)
90
- Requires-Dist: pandas (>=2.2.3,<3.0.0)
88
+ Requires-Dist: pandas (==2.2.3)
91
89
  Requires-Dist: paramiko (>=4.0.0,<5.0.0)
92
- Requires-Dist: pillow (>=10.4.0,<11.0.0)
90
+ Requires-Dist: pillow (==10.4.0)
93
91
  Requires-Dist: pinecone (>=7.0.1,<8.0.0)
94
92
  Requires-Dist: psutil (>=7.0.0,<8.0.0)
95
93
  Requires-Dist: pydub (>=0.25.1,<0.26.0)
96
94
  Requires-Dist: pygame (>=2.6.1,<3.0.0)
97
95
  Requires-Dist: pynput (>=1.8.1,<2.0.0)
98
- Requires-Dist: pypdf (>=5.9.0,<6.0.0)
96
+ Requires-Dist: pypdf (==6.1.0)
99
97
  Requires-Dist: pyserial (>=3.5,<4.0)
100
98
  Requires-Dist: python-markdown-math (>=0.8,<0.9)
101
99
  Requires-Dist: qasync (>=0.27.1,<0.28.0)
102
100
  Requires-Dist: qt-material (>=2.17,<3.0)
103
- Requires-Dist: redis (>=5.3.1,<6.0.0)
101
+ Requires-Dist: redis (==5.3.1)
104
102
  Requires-Dist: show-in-file-manager (>=1.1.5,<2.0.0)
105
- Requires-Dist: tiktoken (>=0.9.0,<0.10.0)
106
- Requires-Dist: transformers (==4.48.3)
107
- Requires-Dist: urllib3 (>=1.26.20,<2.0.0)
103
+ Requires-Dist: tiktoken (==0.11.0)
104
+ Requires-Dist: transformers (==4.56.2)
105
+ Requires-Dist: urllib3 (==2.5.0)
108
106
  Requires-Dist: wikipedia (>=1.4.0,<2.0.0)
109
107
  Requires-Dist: xai-sdk (>=1.1.0,<2.0.0)
110
108
  Requires-Dist: youtube-transcript-api (>=0.6.3,<0.7.0)
@@ -119,7 +117,7 @@ Description-Content-Type: text/markdown
119
117
 
120
118
  [![pygpt](https://snapcraft.io/pygpt/badge.svg)](https://snapcraft.io/pygpt)
121
119
 
122
- Release: **2.6.57** | build: **2025-09-22** | Python: **>=3.10, <3.14**
120
+ Release: **2.6.59** | build: **2025-09-23** | Python: **>=3.10, <3.14**
123
121
 
124
122
  > Official website: https://pygpt.net | Documentation: https://pygpt.readthedocs.io
125
123
  >
@@ -2088,6 +2086,8 @@ PyGPT features several useful tools, including:
2088
2086
  - Transcribe audio/video files
2089
2087
  - Python Code Interpreter
2090
2088
  - HTML/JS Canvas (built-in HTML renderer)
2089
+ - Translator
2090
+ - Web Browser (Chromium)
2091
2091
 
2092
2092
  ![v2_tool_menu](https://github.com/szczyglis-dev/py-gpt/raw/master/docs/source/images/v2_tool_menu.png)
2093
2093
 
@@ -2157,6 +2157,14 @@ This tool allows you to run Python code directly from within the app. It is inte
2157
2157
 
2158
2158
  Allows to render HTML/JS code in HTML Canvas (built-in renderer based on Chromium). To use it, just ask the model to render the HTML/JS code in built-in browser (HTML Canvas). Tool is integrated with the `Code Interpreter` plugin.
2159
2159
 
2160
+ ## Translator
2161
+
2162
+ Enables translation between multiple languages using an AI model.
2163
+
2164
+ ## Web Browser
2165
+
2166
+ A built-in web browser based on Chromium, allowing you to open webpages directly within the app. **SECURITY NOTICE:** For your protection, avoid using the built-in browser for sensitive or critical tasks. It is intended for basic use only.
2167
+
2160
2168
 
2161
2169
  # Token usage calculation
2162
2170
 
@@ -2447,6 +2455,8 @@ Config -> Settings...
2447
2455
 
2448
2456
  - `Use extra context output`: If enabled, plain text output (if available) from command results will be displayed alongside the JSON output, Default: True.
2449
2457
 
2458
+ - `Open URLs in built-in browser`: Enable this option to open all URLs in the built-in browser (Chromium) instead of an external browser. Default: False.
2459
+
2450
2460
  - `Convert lists to paragraphs`: If enabled, lists (ul, ol) will be converted to paragraphs (p), Default: True.
2451
2461
 
2452
2462
  - `Model used for auto-summary`: Model used for context auto-summary (generating titles in context list) (default: *gpt-4o-mini*). **Tip:** If you prefer to use local models, you should change the model here as well
@@ -3648,6 +3658,16 @@ may consume additional tokens that are not displayed in the main window.
3648
3658
 
3649
3659
  ## Recent changes:
3650
3660
 
3661
+ **2.6.59 (2025-09-23)**
3662
+
3663
+ - LlamaIndex has been upgraded to v0.13.6.
3664
+ - The Responses API is disabled by default in Agents (LlamaIndex) for compatibility.
3665
+ - Added WinAPI support to the System (OS) plugin.
3666
+
3667
+ **2.6.58 (2025-09-22)**
3668
+
3669
+ - Added: internal Web Browser tool.
3670
+
3651
3671
  **2.6.57 (2025-09-22)**
3652
3672
 
3653
3673
  - Changed: The web search icon has been moved to the input area.
@@ -1,7 +1,7 @@
1
- pygpt_net/CHANGELOG.txt,sha256=e8BqZcCxVkz0IvJESlL2FeNDT-2w2vQ01pcgSVRKV24,108084
1
+ pygpt_net/CHANGELOG.txt,sha256=qwRlkyMm-QUdbfmCLpVh6iAilkSzmzkztS-lXKpOpTA,108342
2
2
  pygpt_net/LICENSE,sha256=dz9sfFgYahvu2NZbx4C1xCsVn9GVer2wXcMkFRBvqzY,1146
3
- pygpt_net/__init__.py,sha256=cKHQpbtAgrQIYRFwniixbh3NFx2v6d5byxmSVLN9JSo,1373
4
- pygpt_net/app.py,sha256=Ov0Qc2rFcjQb--Y8D10C3AHlWMXjNcW748iLTCSV7xk,22759
3
+ pygpt_net/__init__.py,sha256=8RcdihUE5GuEBcR_Tw1bcPEAo9kr63F4OJnjWemt0ks,1373
4
+ pygpt_net/app.py,sha256=bxXu6DO2hYVP5Fqq4jA-rQ2jN3edyp73dsgEGTsJxb0,23001
5
5
  pygpt_net/app_core.py,sha256=PwBOV9wZLtr-O6SxBiazABhYXMHH8kZ6OgbvSv2OiZA,3827
6
6
  pygpt_net/config.py,sha256=3CA7xXPKQsdRie1CY8_b5-Kk1taWMciUP9CesXRQNNY,18302
7
7
  pygpt_net/controller/__init__.py,sha256=k6_danw2VOQ4YNT-tH0mnfgK4SCL5B2Hyhug6TI1LgY,6100
@@ -77,13 +77,13 @@ pygpt_net/controller/ctx/ctx.py,sha256=ntRXdiot678SGHlc9NPG43UTq8xohEXssxcCuRjKZ
77
77
  pygpt_net/controller/ctx/extra.py,sha256=0r-G6Tlm9WPDkLRmgPDlgyRr_XLfCJntnUGlYPJiXVw,8598
78
78
  pygpt_net/controller/ctx/summarizer.py,sha256=UNsq-JTARblGNT97uSMpZEVzdUuDJ8YA2j2dw9R2X3o,3079
79
79
  pygpt_net/controller/debug/__init__.py,sha256=dOJGTICjvTtrPIEDOsxCzcOHsfu8AFPLpSKbdN0q0KI,509
80
- pygpt_net/controller/debug/debug.py,sha256=5n-WC44niTEw2wMx7vqQu10j6M12xUYR0LrLChJ6H98,9684
80
+ pygpt_net/controller/debug/debug.py,sha256=HbyAnxSjH8vbkOTlNrRz6YHOrrXCPcsd9rGJnN1BcWQ,9684
81
81
  pygpt_net/controller/debug/fixtures.py,sha256=Wvp_xaB9ukfcHAHhxYW5uCLn2G_47JDhYdWFZBL6hmc,2749
82
82
  pygpt_net/controller/dialogs/__init__.py,sha256=jI2WisG3lzbeyf__1Y7g7wWrxlr1QnYBDDt4t_3eeYk,513
83
83
  pygpt_net/controller/dialogs/confirm.py,sha256=ILMj4DtlI-dA_fZmugande6XnTW892WoAM0ni_oIFkE,17429
84
84
  pygpt_net/controller/dialogs/debug.py,sha256=TZN5dvw21dtpgE0uCQ0-djRYsrL9eEFGlZQGuSCV3G4,6166
85
85
  pygpt_net/controller/dialogs/dialogs.py,sha256=sJHyZxkAn9QKTegUqx_xETesN2ecMBkrtf-VsCubr2w,1008
86
- pygpt_net/controller/dialogs/info.py,sha256=mjQdj6cbTB09aIul5FChsnJsQoeqsRUQpKc3rP7lFeM,3757
86
+ pygpt_net/controller/dialogs/info.py,sha256=pfNzKwARTKInD8nhVYZaWBrGeghg2QFQAP4wkE50iu8,3992
87
87
  pygpt_net/controller/files/__init__.py,sha256=4dJY1HOUTQ6GPAvvUQmTNwTRJKoShyCP8Lo8j2dD0ec,509
88
88
  pygpt_net/controller/files/files.py,sha256=799WXr7Tk4p78uSWuy6x2HjupYxZCZ8zf9308h7A2zU,15475
89
89
  pygpt_net/controller/finder/__init__.py,sha256=EUogcwzk4T0zyms2PJXduL3o1PzWwu0Q0qSo8Eu_8bw,510
@@ -147,7 +147,7 @@ pygpt_net/controller/tools/__init__.py,sha256=ds63rOuwLEIe-SlY_sQkhWSdXS0lfVwseU
147
147
  pygpt_net/controller/tools/tools.py,sha256=bWxdwL3J2-WHBS3MBiKsS3kTW_rQI_nS9z8-8iKifKg,2920
148
148
  pygpt_net/controller/ui/__init__.py,sha256=cxfh2SYeEDATGAZpcYDqCxYfp4KReQ1CYehevSf89EU,507
149
149
  pygpt_net/controller/ui/mode.py,sha256=b332lLObzyuDzNmOhDOaoTshEzytbijWUu0G98xQnzQ,9712
150
- pygpt_net/controller/ui/tabs.py,sha256=8xAvuKyMjVaihg5vKH-s3kx-zo4BH8pZtz4flX8Spzg,29937
150
+ pygpt_net/controller/ui/tabs.py,sha256=xjTg793-KG8eFs6kbNglagV4A3bRM-ujGkpz31iKgjM,30477
151
151
  pygpt_net/controller/ui/ui.py,sha256=w6rxJ0bNk_43Hd0vZB0roxZo7h-AmISEhr8ZiqcBTgA,8496
152
152
  pygpt_net/controller/ui/vision.py,sha256=tnzllFV2-sYDHfrP12ATY6ZKi6FcGtQofrsoKF6UcCU,2407
153
153
  pygpt_net/core/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -275,9 +275,9 @@ pygpt_net/core/filesystem/editor.py,sha256=or7cT2xhZfDwjX47reyXQCt-_1c4h_xPJDddY
275
275
  pygpt_net/core/filesystem/filesystem.py,sha256=QYperv6KMGg6mwt8EVHMWT_KB2MH8wzUDB_CiIgaSGU,15602
276
276
  pygpt_net/core/filesystem/opener.py,sha256=8EkieR_FwSz0HBykLcmV8TEw8Bn0e7WHqqiPTkDPp-M,7851
277
277
  pygpt_net/core/filesystem/packer.py,sha256=9CmQgq-lja2QGtc0JFqh197mLLViJ7TDPc8fVWTok1w,2568
278
- pygpt_net/core/filesystem/parser.py,sha256=NqFwNbF8QJai34Oz9WFtAWZa6uPx6AfuUgM2ZdAOgbI,2960
278
+ pygpt_net/core/filesystem/parser.py,sha256=CLESCdASVQ1-cJ_6ZxbgDSxvwC-haznj_coE1_tWaQE,3548
279
279
  pygpt_net/core/filesystem/types.py,sha256=1HFubxAHYup_SLQ7SlR5EvZb3KgVyd8K8vBRUkTcqaA,3458
280
- pygpt_net/core/filesystem/url.py,sha256=PAhO73dlw_jBu7HN5RKHSVbbtrXTR4FoU_S1tD7dGvU,3528
280
+ pygpt_net/core/filesystem/url.py,sha256=0eT7QbRQw-G19oxG3AwKgREU2CsaLSF8Fw-IO04CvUU,3676
281
281
  pygpt_net/core/fixtures/__init__,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
282
282
  pygpt_net/core/fixtures/stream/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
283
283
  pygpt_net/core/fixtures/stream/generator.py,sha256=Gjm68CMUOpQiYLRwG0dxVgSPw_cMJLYcG74Ll_i2hvg,9331
@@ -400,8 +400,8 @@ pygpt_net/css_rc.py,sha256=PX6g9z5BsD-DXISuR2oq3jHcjiKfcJ4HsgcHez6wGMc,27762
400
400
  pygpt_net/data/audio/click_off.mp3,sha256=aNiRDP1pt-Jy7ija4YKCNFBwvGWbzU460F4pZWZDS90,65201
401
401
  pygpt_net/data/audio/click_on.mp3,sha256=qfdsSnthAEHVXzeyN4LlC0OvXuyW8p7stb7VXtlvZ1k,65201
402
402
  pygpt_net/data/audio/ok.mp3,sha256=LTiV32pEBkpUGBkKkcOdOFB7Eyt_QoP2Nv6c5AaXftk,32256
403
- pygpt_net/data/config/config.json,sha256=DvAELV7vtNzmvJhjemgDqp0VJBFO6yR-wp28Gi89SdI,30913
404
- pygpt_net/data/config/models.json,sha256=KsebENjmlf_Z_nPap1wbkCe8TaY96I0XyIQX5Zyakoo,118192
403
+ pygpt_net/data/config/config.json,sha256=Mq1eyAAIz2B_Pggzdv1HqZh9mvItw8QuktP7pN35I3o,30943
404
+ pygpt_net/data/config/models.json,sha256=x8xOaiX4Uo9S0jiAnWFMoW2u1K9oE_bpsvCWpHANwXM,118192
405
405
  pygpt_net/data/config/modes.json,sha256=IpjLOm428_vs6Ma9U-YQTNKJNtZw-qyM1lwhh73xl1w,2111
406
406
  pygpt_net/data/config/presets/agent_code_act.json,sha256=GYHqhxtKFLUCvRI3IJAJ7Qe1k8yD9wGGNwManldWzlI,754
407
407
  pygpt_net/data/config/presets/agent_openai.json,sha256=bpDJgLRey_effQkzFRoOEGd4aHUrmzeODSDdNzrf62I,730
@@ -436,7 +436,7 @@ pygpt_net/data/config/presets/current.vision.json,sha256=x1ll5B3ROSKYQA6l27PRGXU
436
436
  pygpt_net/data/config/presets/dalle_white_cat.json,sha256=esqUb43cqY8dAo7B5u99tRC0MBV5lmlrVLnJhTSkL8w,552
437
437
  pygpt_net/data/config/presets/joke_agent.json,sha256=R6n9P7KRb0s-vZWZE7kHdlOfXAx1yYrPmUw8uLyw8OE,474
438
438
  pygpt_net/data/config/presets/joke_expert.json,sha256=jjcoIYEOaEp8kLoIbecxQROiq4J3Zess5w8_HmngPOY,671
439
- pygpt_net/data/config/settings.json,sha256=hIxcuvlqbBEv1EkgrKa0l3l8Qo9f2QWHSeZxIdLGRQY,84201
439
+ pygpt_net/data/config/settings.json,sha256=IwYtlBXtsjMM2NbCpn0q9KywsvXWDUxYXdax-YNDk7A,85400
440
440
  pygpt_net/data/config/settings_section.json,sha256=pcfOFk0_eIRaa4nKRxhSVzDXe531YxWJgVx5rLV0J9U,1150
441
441
  pygpt_net/data/css/fix_windows.css,sha256=Mks14Vg25ncbMqZJfAMStrhvZmgHF6kU75ohTWRZeI8,664
442
442
  pygpt_net/data/css/fix_windows.dark.css,sha256=7hGbT_qI5tphYC_WlFpJRDAcmjBb0AQ2Yc-y-_Zzf2M,161
@@ -687,10 +687,10 @@ pygpt_net/data/js/app/scroll.js,sha256=TM5g_sMHI9AMskORLFhTZM2X6CR1JPlTvdb6lmyEx
687
687
  pygpt_net/data/js/app/stream.js,sha256=ivecd0Io1c9Xa13rJ9Nn0koHfwNhrx49Rv-GiXTwUbc,88438
688
688
  pygpt_net/data/js/app/template.js,sha256=IV7LfHuSRbXJn8d7NYQ7CnEr2fTicdvKohvv4XAGWSI,10725
689
689
  pygpt_net/data/js/app/tool.js,sha256=uZ_tTba6rD8V4rNBhe7HMB_ZQUQlTDrvAqXFTYIF6E0,2515
690
- pygpt_net/data/js/app/ui.js,sha256=qsFYToAsmDZ771-UMUbl2Sk5NTEkXExs9U0MPCpiXT8,5070
690
+ pygpt_net/data/js/app/ui.js,sha256=jRPNYKKd8v8OLJ-tg85bp5Xv_VL-0GuKlzJSbgEcVFA,5070
691
691
  pygpt_net/data/js/app/user.js,sha256=OCp1hqzNNIXnWJXMU1-s39_9SbGrc-WdIut1uujaxQM,11399
692
692
  pygpt_net/data/js/app/utils.js,sha256=nl1Gbt6I7Mf9LfKwqb-NaKJUWRZTD2s8xO6c3BwEXOc,1794
693
- pygpt_net/data/js/app.min.js,sha256=Tix5u6rtQL5n32BtVVoBoo0CXTwx6vDPgumjd4ubNrE,212705
693
+ pygpt_net/data/js/app.min.js,sha256=RuNO_z5De-lKMTrP7htDG9jd380TU0Qi4jQB5WR8UZA,212705
694
694
  pygpt_net/data/js/highlight/DIGESTS.md,sha256=bFIjBE_BrA2dkd0CM5SXLKQIccKOUcUeRFUK4c_3kWM,75091
695
695
  pygpt_net/data/js/highlight/LICENSE,sha256=bAgUMVkdnfaWyC3FmP4UI3ZbiimbIA7QCyga_Q9kxJA,1514
696
696
  pygpt_net/data/js/highlight/README.md,sha256=iUuAsk62y3lZEbACdBntj-_CEEN4gUfcbi4hkmEL6n0,1717
@@ -1706,14 +1706,14 @@ pygpt_net/data/js/katex/katex.min.js,sha256=KLASOtKS2x8pUxWVzCDmlWJ4jhuLb0vtrgak
1706
1706
  pygpt_net/data/js/markdown-it/markdown-it-katex.min.js,sha256=-wMst2a9i8Borapa9_hxPvpQysfFE-yph8GrBmDoA68,1670
1707
1707
  pygpt_net/data/js/markdown-it/markdown-it.min.js,sha256=OMcKHnypGrQOLZ5uYBKYUacX7Rx9Ssu91Bv5UDeRz2g,123618
1708
1708
  pygpt_net/data/languages.csv,sha256=fvtER6vnTXFHQslCh-e0xCfZDQ-ijgW4GYpOJG4U7LY,8289
1709
- pygpt_net/data/locale/locale.de.ini,sha256=nGgy62e16E4awYHfNc3ApKpSKTPpZprpMCou5sWnzJc,106514
1710
- pygpt_net/data/locale/locale.en.ini,sha256=WkWQPwDKVjh30JAZs9ubE8FCNQboK2T-VJ6puGCkGdM,100702
1711
- pygpt_net/data/locale/locale.es.ini,sha256=x7TdlPMgGZyFwHXsrupk2ZKMZq8izfDUuXuSi4nUSj0,107168
1712
- pygpt_net/data/locale/locale.fr.ini,sha256=-iFMohEpVnPbTGlD3P7VR7xM4eK3MDCCA69HmnLUgV0,109904
1713
- pygpt_net/data/locale/locale.it.ini,sha256=4gGE_-uS51ef0hHnBf0q2_qIgtKYYzVoiTsUkGAwi_w,104845
1714
- pygpt_net/data/locale/locale.pl.ini,sha256=W5I5B2ym0TL_pqTYk0TdZXdJSi5PevtgDyeJrjbHX9U,104463
1715
- pygpt_net/data/locale/locale.uk.ini,sha256=8xhqrjIdky3j-bGu3iR3VNv_yIMcayoF9Xl_MuAvsC0,146026
1716
- pygpt_net/data/locale/locale.zh.ini,sha256=B757vumToP69O3B_mMtQhUin7fSKZfP93gT-9MrIZJ0,93318
1709
+ pygpt_net/data/locale/locale.de.ini,sha256=ZX_31ZDOgqG2X7YN7eTeZF3Y2TyZ93aoZ3OjtHgy4xg,106996
1710
+ pygpt_net/data/locale/locale.en.ini,sha256=vYyGtlakNgRqPFowZjj-7LHCR4TnladEJUnvymP6F94,101122
1711
+ pygpt_net/data/locale/locale.es.ini,sha256=3gyUk0kFo76eThhttbT2U0HS8uF19VQVE3Oueb8MwVk,107621
1712
+ pygpt_net/data/locale/locale.fr.ini,sha256=GLqZn8nLwOYEM09WBoLO61UyjZbL2_OVxWp3GDsge6Y,110394
1713
+ pygpt_net/data/locale/locale.it.ini,sha256=warvdCX_vdt7w5qWvdrSWF7pxNL1xPREaUvksTnHJIc,105292
1714
+ pygpt_net/data/locale/locale.pl.ini,sha256=MZPWsjjtwz8u1gAQALHDLcabLq6Kvg02NeTDWYV9wB4,104987
1715
+ pygpt_net/data/locale/locale.uk.ini,sha256=ziSAcHnsqEFjyy83Jv_n36QMZyS7K-gVBLGWFyUijDI,146783
1716
+ pygpt_net/data/locale/locale.zh.ini,sha256=nYOu_N-U2wRLKqujomCE7ZUrOZKgciEFw-ROovUrL0o,93733
1717
1717
  pygpt_net/data/locale/plugin.agent.de.ini,sha256=BY28KpfFvgfVYJzcw2o5ScWnR4uuErIYGyc3NVHlmTw,1714
1718
1718
  pygpt_net/data/locale/plugin.agent.en.ini,sha256=HwOWCI7e8uzlIgyRWRVyr1x6Xzs8Xjv5pfEc7jfLOo4,1728
1719
1719
  pygpt_net/data/locale/plugin.agent.es.ini,sha256=bqaJQne8HPKFVtZ8Ukzo1TSqVW41yhYbGUqW3j2x1p8,1680
@@ -1795,7 +1795,7 @@ pygpt_net/data/locale/plugin.cmd_serial.pl.ini,sha256=1VdOYRB76gkjMtzysa4gp3ArTH
1795
1795
  pygpt_net/data/locale/plugin.cmd_serial.uk.ini,sha256=wS4XPWBhMl6-3W0diAd0A2Oir9uzCILGX24kLmf4v08,1614
1796
1796
  pygpt_net/data/locale/plugin.cmd_serial.zh.ini,sha256=Vvn-244zOAJeuCf81zEWb_GNH9MpqX-9RgkwlW7O-bQ,1014
1797
1797
  pygpt_net/data/locale/plugin.cmd_system.de.ini,sha256=IW_n68N-qSDlBDkHHcf11cQOUQZKZKbUFpZwYh5ft3c,1301
1798
- pygpt_net/data/locale/plugin.cmd_system.en.ini,sha256=ZPaBckTOoBqY_m8ql_qssCeeohc-H3HXGD5e353kIv4,1723
1798
+ pygpt_net/data/locale/plugin.cmd_system.en.ini,sha256=vfJQDIMCgUWN6VCD1kWr2QtSlHEEApx2jhyCAFMqX9Y,5518
1799
1799
  pygpt_net/data/locale/plugin.cmd_system.es.ini,sha256=WGM8brSKpPa1YsVNvAKJjLLtg8oBsnb1Wq_SYmNOdX4,1381
1800
1800
  pygpt_net/data/locale/plugin.cmd_system.fr.ini,sha256=PvBSlLRrl3oZDzY9tO-Btl5W-l2Fn3RXpVYPt2a65_I,1321
1801
1801
  pygpt_net/data/locale/plugin.cmd_system.it.ini,sha256=grekD4hNTSLjeGgFcPR72BYVYcxVqNqh4XdBG_4RZHQ,1305
@@ -1916,7 +1916,7 @@ pygpt_net/item/notepad.py,sha256=7v3A3HJjew0IoFM65Li0xfoSEdJzfEUZM1IH1ND0Bxw,180
1916
1916
  pygpt_net/item/preset.py,sha256=9VeMlWjUvRKYyVu1XPxaZOFZvL-N_ThXZR_M38TbpWA,8523
1917
1917
  pygpt_net/item/prompt.py,sha256=xequZDTEv4eKjmC5OLqZnNrbyy0YA4LHe0k2RpPiBw0,1745
1918
1918
  pygpt_net/js.qrc,sha256=0ur8_O4TeD2NEmj2gPb7z1XKH5PRxgDo3H8awPPb7zg,2001
1919
- pygpt_net/js_rc.py,sha256=_y8q8YhapY4mwBaAK_vQkeztKbYCmC7P95rjrt6DKQA,2789149
1919
+ pygpt_net/js_rc.py,sha256=9a5ssTYXTM6vVa2A0ZWbtM8hK34Expblqe4gD4F1nBk,2789149
1920
1920
  pygpt_net/launcher.py,sha256=bqR175OVZ_Q3yKsIM5NiHB1S1b-vXrIglsQyr6zyrWU,10125
1921
1921
  pygpt_net/migrations/Version20231227152900.py,sha256=1Rw1mK2mVQs0B2HrbxHICu1Pd1X5jg4yZIrytnR5N5Y,2849
1922
1922
  pygpt_net/migrations/Version20231230095000.py,sha256=A1_e9oC_E4LSo9uBFiiI2dKH7N-SERFp7DMX1R_8LXQ,906
@@ -1949,7 +1949,7 @@ pygpt_net/plugin/audio_output/plugin.py,sha256=plnsKSyfe7Ad5O5gTKWXmMKVkb1aOR_LO
1949
1949
  pygpt_net/plugin/audio_output/worker.py,sha256=XhkY0uYlx1UIuAeWB3CA9MLvvDxI870E0iKJ0O2Lx10,3718
1950
1950
  pygpt_net/plugin/base/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1951
1951
  pygpt_net/plugin/base/config.py,sha256=q5WAcF-h3KZH4bJFYANasM7UmV1v1c43fF1EZ05iF7Y,848
1952
- pygpt_net/plugin/base/plugin.py,sha256=kaU_be6l4wXFr7ByQM3Tr2poR9l9JitWdjY5roHVdEI,14710
1952
+ pygpt_net/plugin/base/plugin.py,sha256=FcePUolE3r8xIwVfxADpr6xhaMUdVc0wxMfrq6oNA0c,14655
1953
1953
  pygpt_net/plugin/base/signals.py,sha256=vy1OHZ3RESuaLDt45jZ6jy3CH6cgMFCUeuj85D3aJlk,899
1954
1954
  pygpt_net/plugin/base/worker.py,sha256=pExaFEeOFmrlvMFZ-0SdHLULe9PfE-MWedr_kHp9q3Y,8459
1955
1955
  pygpt_net/plugin/bitbucket/__init__.py,sha256=tvF6upS93L61NRbkQmscSJXM7ZzPlmVj16mVHUM-NHU,510
@@ -1993,12 +1993,13 @@ pygpt_net/plugin/cmd_serial/config.py,sha256=oXtnKRL42yadG7fUoCAwpvdgWAU-lOjeryH
1993
1993
  pygpt_net/plugin/cmd_serial/plugin.py,sha256=42qeqL-3FSCXFVeA-qF3fEQIQoKKkVgTM-h3LR6mWRA,2945
1994
1994
  pygpt_net/plugin/cmd_serial/worker.py,sha256=q9XAXjuvWRoTK6fh-qr10ZRY6XV-eZIR2jDUGxI7Ieo,7942
1995
1995
  pygpt_net/plugin/cmd_system/__init__.py,sha256=PVCicfnsv5lwFO327NOanm6gxcXnlDUofhja3hOqM84,510
1996
- pygpt_net/plugin/cmd_system/config.py,sha256=IHR4OKldSueBeItlh-SM8kOtUc2GQxa7OtVeiKrqiSg,4396
1996
+ pygpt_net/plugin/cmd_system/config.py,sha256=VyuzWwk8koZrhFZS_1Vta1O-ZqOVHH7atHmC-5EqREU,22683
1997
1997
  pygpt_net/plugin/cmd_system/docker.py,sha256=-TVrW4FzeQrPh6K6kL7jy43pNyHO1MOc88BF_FvWVho,1852
1998
1998
  pygpt_net/plugin/cmd_system/output.py,sha256=-_jsePK2tOo45TBunstfkDnpU4ezWR4gJxMHfjhA7Q4,2138
1999
- pygpt_net/plugin/cmd_system/plugin.py,sha256=ht8QHVI0XWScFFY7zvfWClB52r1x8ZlAms95RNMLmms,5515
2000
- pygpt_net/plugin/cmd_system/runner.py,sha256=DfE8o0qAqt2BVpb1J70u02wYoH7dj9leE-AbTdMNYo8,7257
2001
- pygpt_net/plugin/cmd_system/worker.py,sha256=-Slg8nj7rGPacfR4NuIu3zMXr8Wv-mfFp2I5o9tB0qo,3914
1999
+ pygpt_net/plugin/cmd_system/plugin.py,sha256=wrnitJY0pUGBQR-Fl8mweLJK7veCNyqBoiVI5BYJFqw,6731
2000
+ pygpt_net/plugin/cmd_system/runner.py,sha256=eGa6ncy7yfBadBSnpMexLO4WfHRfssq3yoSSVYpRP-k,30013
2001
+ pygpt_net/plugin/cmd_system/winapi.py,sha256=eF72Z0MAGxb6312yzdNw432ABK2P-0OYaQFvMXycwWQ,19937
2002
+ pygpt_net/plugin/cmd_system/worker.py,sha256=0-0bDH3VycomrsVZOLpNJJP9hbOduZjUEEn9e4VmCTU,8549
2002
2003
  pygpt_net/plugin/cmd_web/__init__.py,sha256=tvF6upS93L61NRbkQmscSJXM7ZzPlmVj16mVHUM-NHU,510
2003
2004
  pygpt_net/plugin/cmd_web/config.py,sha256=XXeczlWJYh6BopfJ45eA8zpoy0iOiqLaRMtUdzmkkeg,14319
2004
2005
  pygpt_net/plugin/cmd_web/plugin.py,sha256=gxWNhYh5vthFB7FJ90UNY6rY12oDk_GRZ78Q-A0qe2c,14550
@@ -2221,7 +2222,7 @@ pygpt_net/provider/core/calendar/db_sqlite/storage.py,sha256=QDclQCQdr4QyRIqjgGX
2221
2222
  pygpt_net/provider/core/config/__init__.py,sha256=jQQgG9u_ZLsZWXustoc1uvC-abUvj4RBKPAM30-f2Kc,488
2222
2223
  pygpt_net/provider/core/config/base.py,sha256=cbvzbMNqL2XgC-36gGubnU37t94AX7LEw0lecb2Nm80,1365
2223
2224
  pygpt_net/provider/core/config/json_file.py,sha256=GCcpCRQnBiSLWwlGbG9T3ZgiHkTfp5Jsg2KYkZcakBw,6789
2224
- pygpt_net/provider/core/config/patch.py,sha256=9GhWbypefJI1jNqbBUqfAT5Z_MW8mW-42dKr8JkDAN8,6439
2225
+ pygpt_net/provider/core/config/patch.py,sha256=-SgOQT3_jqCokXE1eqNcyhsy48MwASFWH3jEqwSdzZQ,6705
2225
2226
  pygpt_net/provider/core/config/patches/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
2226
2227
  pygpt_net/provider/core/config/patches/patch_before_2_6_42.py,sha256=XJ6j0HQUN2ehWIGP4bJQUX163p8WD2-l2AYC0gRW1rw,127168
2227
2228
  pygpt_net/provider/core/ctx/__init__.py,sha256=jQQgG9u_ZLsZWXustoc1uvC-abUvj4RBKPAM30-f2Kc,488
@@ -2298,7 +2299,7 @@ pygpt_net/provider/llms/mistral.py,sha256=BstHVTS-7luMEoInzNNQqbR9BR9_ezH9MAsHcS
2298
2299
  pygpt_net/provider/llms/ollama.py,sha256=vVqA22eH-APgyfHCaHSvJlAgxLSvspvZSaOCeaKWQCw,4434
2299
2300
  pygpt_net/provider/llms/ollama_custom.py,sha256=WVbLiEEwnz5loKiLy7EYmpuWz0Tp5Vhd1vOUB2051kI,24167
2300
2301
  pygpt_net/provider/llms/open_router.py,sha256=k4WgtT6A13bwhdT7oKQe4dO78x0Wog5deebbvfL7YVA,3815
2301
- pygpt_net/provider/llms/openai.py,sha256=oPnnrMTypWnNzcx9twctIhTsXTH0GYuNRfeREZOC1CM,5581
2302
+ pygpt_net/provider/llms/openai.py,sha256=w8mZLg7sLaA1byGbhQx4pclEEETeZ13F43AhMUhFkDw,5709
2302
2303
  pygpt_net/provider/llms/perplexity.py,sha256=JMMVS2zZBxApVhJQZKZ0i_BuP6dYDo19haEf-riZYcM,6173
2303
2304
  pygpt_net/provider/llms/utils.py,sha256=5p83te7Hv9jUTtW-VXDDwzRO_0qvFSN5FdeRYioUedk,1336
2304
2305
  pygpt_net/provider/llms/voyage.py,sha256=3tuLmayekAy-pNIK9z-Gwz9jEVYdt7CsAtsE57feUlA,1918
@@ -2395,13 +2396,13 @@ pygpt_net/tools/code_interpreter/body.py,sha256=jDEHJuAI8U1RjV0Dhm5CcL4Y8b09UNDw
2395
2396
  pygpt_net/tools/code_interpreter/tool.py,sha256=XH3_ZUWp1tp21rGlj6-ULI723DXfY1xs7dN9Ye03Pm8,24185
2396
2397
  pygpt_net/tools/code_interpreter/ui/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
2397
2398
  pygpt_net/tools/code_interpreter/ui/dialogs.py,sha256=iYCtmn_gPMKhvy8Ygga_oYPVg80zP3-10SZgv0O6xYQ,5429
2398
- pygpt_net/tools/code_interpreter/ui/html.py,sha256=8XI_RVZsOm6x95LTp3Lol4xmuTb_Mnb08lnNHxp6QpM,27414
2399
+ pygpt_net/tools/code_interpreter/ui/html.py,sha256=wVGCUPSWU1GYU5zCXbyLD2AOfaKQRprjIskeBLKMwDc,27429
2399
2400
  pygpt_net/tools/code_interpreter/ui/widgets.py,sha256=noOvecQNHcZKDfyfmgnupNr8KtY8WPvfbds63z6vOV0,18020
2400
2401
  pygpt_net/tools/html_canvas/__init__.py,sha256=7FScUoJWFBsF6Rbmt14zb2YEERcywW_xAeX0GTAHhX4,508
2401
2402
  pygpt_net/tools/html_canvas/tool.py,sha256=4-I7WfEGU9zMjauQ1LUoNxdt2oLy8dlEW9_-gA6JzDI,10210
2402
2403
  pygpt_net/tools/html_canvas/ui/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
2403
2404
  pygpt_net/tools/html_canvas/ui/dialogs.py,sha256=zw4XusCoZ-52ks8ogcasEVAxDHQwSHh88FtW2rk4HP0,4825
2404
- pygpt_net/tools/html_canvas/ui/widgets.py,sha256=aj-3sM0wxfQ_8krVXSuOwBlPzlfvXpDwP6WsBbhMMjQ,13897
2405
+ pygpt_net/tools/html_canvas/ui/widgets.py,sha256=IdrxVSs-FR4K1dEO8kJDIO0puyMHEF3jpnbc4YuOeYo,13748
2405
2406
  pygpt_net/tools/image_viewer/__init__.py,sha256=BQLr8Kg670xPAyv_qoRA_EjWq5WZclqoc4OpTk5V11k,508
2406
2407
  pygpt_net/tools/image_viewer/tool.py,sha256=8cIcEG9R0HGUXwikD8XOxQHqt0QZkgB4LzpiQ4GAWwU,9269
2407
2408
  pygpt_net/tools/image_viewer/ui/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -2430,6 +2431,11 @@ pygpt_net/tools/translator/tool.py,sha256=hm3dEfQJRo8u45gyRXyIOp92khQuBJ6hnqIxO9
2430
2431
  pygpt_net/tools/translator/ui/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
2431
2432
  pygpt_net/tools/translator/ui/dialogs.py,sha256=qC-dCNtOLbOe-h586iBmsBTlv4KlUoxCkPqYOq8336k,4137
2432
2433
  pygpt_net/tools/translator/ui/widgets.py,sha256=6gEVlMd96tHOwKKDV6eoMoItTOcr2Bd_ig5Y2KihZ5o,17735
2434
+ pygpt_net/tools/web_browser/__init__.py,sha256=2QxNjNGnZq8rmtBxt2BsUIjCW7-IMr4NPxsn_IcDmPo,508
2435
+ pygpt_net/tools/web_browser/tool.py,sha256=-wfPuxxXgFS62k0xpwPqOlg9fRhgvrH0r8Rl2uYZX70,6744
2436
+ pygpt_net/tools/web_browser/ui/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
2437
+ pygpt_net/tools/web_browser/ui/dialogs.py,sha256=yYWv-SJW2aaPkALo4Kyw2A0uUlfqrgV7XCFqcf1PfHs,3201
2438
+ pygpt_net/tools/web_browser/ui/widgets.py,sha256=T7_-5m3hYjTupwjP4PE8Vya-XtY4YdD84oCjzN2jDDs,12719
2433
2439
  pygpt_net/ui/__init__.py,sha256=YjRnv1py7ZtxeD6Q1pPtG89uXRYQl8WHGKLmvzT_KRk,9136
2434
2440
  pygpt_net/ui/base/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
2435
2441
  pygpt_net/ui/base/config_dialog.py,sha256=P-7u7DQUZtr9D237SBjFt-QcYOeAWD8hD_rDJLc-C0Y,8913
@@ -2615,7 +2621,7 @@ pygpt_net/ui/widget/textarea/console.py,sha256=nCV92S5JR4DiRWH6akWhygxg9kaLLxnCP
2615
2621
  pygpt_net/ui/widget/textarea/create.py,sha256=f4SrAW-2hjkKYIPrwVliSYH-LkgsQP8G13Jkq8EKhuI,1358
2616
2622
  pygpt_net/ui/widget/textarea/editor.py,sha256=gmNzsMrCQXGkFyVfl0woc_klmjsyiXuOdcG8Lk2PSR4,5038
2617
2623
  pygpt_net/ui/widget/textarea/find.py,sha256=fQu6t-_LTZGFRNCkezywtMVsL-DocIkGBR_HbRFq61g,1534
2618
- pygpt_net/ui/widget/textarea/html.py,sha256=aqJGSXz-0f1FkWfjG5vkf5ZXc_4TmGlMIcJI8zyiZWo,12380
2624
+ pygpt_net/ui/widget/textarea/html.py,sha256=J-xCGyjpBL1wMps2ty-nIWZvJOVDC7k0z-BSD7C8row,16340
2619
2625
  pygpt_net/ui/widget/textarea/input.py,sha256=cU83-sYqT_bZEAV79jiD0CSOupHuGVwmQeIsZWUpReQ,36177
2620
2626
  pygpt_net/ui/widget/textarea/name.py,sha256=vcyAY_pJWJoS_IJqdJjhIeDSniTL9rfpt8aaobWNFVY,1132
2621
2627
  pygpt_net/ui/widget/textarea/notepad.py,sha256=yGXXUN3pBs5UQgx4ipa8_Xn8JWxbNEoYVsnLg4BvtcY,9718
@@ -2623,12 +2629,12 @@ pygpt_net/ui/widget/textarea/output.py,sha256=3yvlnxXhss-i5eRHwmNxxRZMhP4fiTbKA3
2623
2629
  pygpt_net/ui/widget/textarea/rename.py,sha256=NwuGRIeWMo7WfsMguAFpTqdOz1eTiXbxrDXGsbWF_TY,1358
2624
2630
  pygpt_net/ui/widget/textarea/search_input.py,sha256=aoOlunBwxn-z3gIMNKfnghHX00sC36wQHl87dRlDJlM,5227
2625
2631
  pygpt_net/ui/widget/textarea/url.py,sha256=xbNQxoM5fYI1ZWbvybQkPmNPrIq3yhtNPBOSOWftZCg,1337
2626
- pygpt_net/ui/widget/textarea/web.py,sha256=sVRSmudPwPfjK2h7q-e6Ae4b-677BHLe20t-xjxcDDI,20269
2632
+ pygpt_net/ui/widget/textarea/web.py,sha256=CDpsjv8OorG1mO0NoXp-otgx1YHZES9DilZ_wo_KEig,20272
2627
2633
  pygpt_net/ui/widget/vision/__init__.py,sha256=8HT4tQFqQogEEpGYTv2RplKBthlsFKcl5egnv4lzzEw,488
2628
2634
  pygpt_net/ui/widget/vision/camera.py,sha256=v1qEncaZr5pXocO5Cpk_lsgfCMvfFigdJmzsYfzvCl0,1877
2629
2635
  pygpt_net/utils.py,sha256=m0fkJ06JaUKvTbxZQgdY-mpYt7ReZZhq1D90a2ANOQ0,10832
2630
- pygpt_net-2.6.57.dist-info/LICENSE,sha256=rbPqNB_xxANH8hKayJyIcTwD4bj4Y2G-Mcm85r1OImM,1126
2631
- pygpt_net-2.6.57.dist-info/METADATA,sha256=_Vy3gCFMn8ya2c4rQzVUlG-qt2PhxoAMe6kqjWvB7sA,167180
2632
- pygpt_net-2.6.57.dist-info/WHEEL,sha256=b4K_helf-jlQoXBBETfwnf4B04YC67LOev0jo4fX5m8,88
2633
- pygpt_net-2.6.57.dist-info/entry_points.txt,sha256=qvpII6UHIt8XfokmQWnCYQrTgty8FeJ9hJvOuUFCN-8,43
2634
- pygpt_net-2.6.57.dist-info/RECORD,,
2636
+ pygpt_net-2.6.59.dist-info/LICENSE,sha256=rbPqNB_xxANH8hKayJyIcTwD4bj4Y2G-Mcm85r1OImM,1126
2637
+ pygpt_net-2.6.59.dist-info/METADATA,sha256=IUhugvRhpfjtsdDE0TsyvNEkvt9LPpvV03S6ywR7Xm0,167736
2638
+ pygpt_net-2.6.59.dist-info/WHEEL,sha256=b4K_helf-jlQoXBBETfwnf4B04YC67LOev0jo4fX5m8,88
2639
+ pygpt_net-2.6.59.dist-info/entry_points.txt,sha256=qvpII6UHIt8XfokmQWnCYQrTgty8FeJ9hJvOuUFCN-8,43
2640
+ pygpt_net-2.6.59.dist-info/RECORD,,