pygpt-net 2.6.53__py3-none-any.whl → 2.6.55__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 (38) hide show
  1. pygpt_net/CHANGELOG.txt +11 -0
  2. pygpt_net/__init__.py +3 -3
  3. pygpt_net/app.py +4 -0
  4. pygpt_net/controller/chat/remote_tools.py +2 -2
  5. pygpt_net/controller/ui/mode.py +7 -1
  6. pygpt_net/core/agents/agents.py +0 -0
  7. pygpt_net/core/agents/provider.py +16 -9
  8. pygpt_net/core/ctx/ctx.py +2 -1
  9. pygpt_net/core/models/models.py +25 -1
  10. pygpt_net/data/config/config.json +4 -4
  11. pygpt_net/data/config/models.json +3 -3
  12. pygpt_net/data/js/app.js +19 -0
  13. pygpt_net/data/locale/plugin.osm.en.ini +35 -0
  14. pygpt_net/data/locale/plugin.wolfram.en.ini +24 -0
  15. pygpt_net/js_rc.py +10490 -10432
  16. pygpt_net/plugin/base/worker.py +7 -1
  17. pygpt_net/plugin/osm/__init__.py +12 -0
  18. pygpt_net/plugin/osm/config.py +267 -0
  19. pygpt_net/plugin/osm/plugin.py +87 -0
  20. pygpt_net/plugin/osm/worker.py +719 -0
  21. pygpt_net/plugin/wolfram/__init__.py +12 -0
  22. pygpt_net/plugin/wolfram/config.py +214 -0
  23. pygpt_net/plugin/wolfram/plugin.py +115 -0
  24. pygpt_net/plugin/wolfram/worker.py +551 -0
  25. pygpt_net/provider/api/google/video.py +0 -0
  26. pygpt_net/provider/api/openai/agents/experts.py +1 -1
  27. pygpt_net/provider/api/openai/chat.py +2 -9
  28. pygpt_net/provider/api/x_ai/remote.py +2 -2
  29. pygpt_net/provider/llms/anthropic.py +29 -1
  30. pygpt_net/provider/llms/google.py +30 -1
  31. pygpt_net/provider/llms/open_router.py +3 -1
  32. pygpt_net/provider/llms/x_ai.py +21 -1
  33. pygpt_net/ui/widget/textarea/input.py +9 -2
  34. {pygpt_net-2.6.53.dist-info → pygpt_net-2.6.55.dist-info}/METADATA +37 -2
  35. {pygpt_net-2.6.53.dist-info → pygpt_net-2.6.55.dist-info}/RECORD +36 -26
  36. {pygpt_net-2.6.53.dist-info → pygpt_net-2.6.55.dist-info}/LICENSE +0 -0
  37. {pygpt_net-2.6.53.dist-info → pygpt_net-2.6.55.dist-info}/WHEEL +0 -0
  38. {pygpt_net-2.6.53.dist-info → pygpt_net-2.6.55.dist-info}/entry_points.txt +0 -0
@@ -6,7 +6,7 @@
6
6
  # GitHub: https://github.com/szczyglis-dev/py-gpt #
7
7
  # MIT License #
8
8
  # Created By : Marcin Szczygliński #
9
- # Updated Date: 2025.09.15 01:00:00 #
9
+ # Updated Date: 2025.09.17 20:00:00 #
10
10
  # ================================================== #
11
11
 
12
12
  from typing import Optional, List, Dict
@@ -59,6 +59,35 @@ class GoogleLLM(BaseLLM):
59
59
 
60
60
  window.core.api.google.setup_env() # setup VertexAI if configured
61
61
  args = self.inject_llamaindex_http_clients(args, window.core.config)
62
+
63
+ # -----------------------------------------------------------
64
+ # Remote built-in tools for Google GenAI via LlamaIndex:
65
+ # - Google Search grounding (Tool(google_search=GoogleSearch()))
66
+ # - Code Execution (Tool(code_execution=ToolCodeExecution()))
67
+ # - Url Context (Tool(url_context=UrlContext)) on 2.x+
68
+ # We reuse native builder and forward tools into LlamaIndex.
69
+ # If 1 tool -> use 'built_in_tool', if >1 -> pack into generation_config.tools
70
+ # -----------------------------------------------------------
71
+ built_tools = []
72
+ try:
73
+ built_tools = window.core.api.google.build_remote_tools(model=model) or []
74
+ except Exception as e:
75
+ window.core.debug.log(e)
76
+
77
+ if built_tools:
78
+ # Only attach if user didn't already pass their own config
79
+ if "built_in_tool" not in args and "generation_config" not in args:
80
+ if len(built_tools) == 1:
81
+ args["built_in_tool"] = built_tools[0]
82
+ else:
83
+ # If multiple tools are enabled, provide them via generation_config.tools
84
+ try:
85
+ args["generation_config"] = gtypes.GenerateContentConfig(tools=built_tools)
86
+ except Exception as e:
87
+ # Fallback to the first tool if GenerateContentConfig cannot be constructed
88
+ window.core.debug.log(e)
89
+ args["built_in_tool"] = built_tools[0]
90
+
62
91
  return GoogleGenAI(**args)
63
92
 
64
93
  def get_embeddings_model(
@@ -6,7 +6,7 @@
6
6
  # GitHub: https://github.com/szczyglis-dev/py-gpt #
7
7
  # MIT License #
8
8
  # Created By : Marcin Szczygliński #
9
- # Updated Date: 2025.09.15 01:00:00 #
9
+ # Updated Date: 2025.09.17 19:00:00 #
10
10
  # ================================================== #
11
11
 
12
12
  from typing import Optional, Dict, List
@@ -82,6 +82,8 @@ class OpenRouterLLM(BaseLLM):
82
82
  if "is_function_calling_model" not in args:
83
83
  args["is_function_calling_model"] = model.tool_calls
84
84
  args = self.inject_llamaindex_http_clients(args, window.core.config)
85
+ if model:
86
+ args["model"] = window.core.models.get_openrouter_model(model)
85
87
  return OpenAILike(**args)
86
88
 
87
89
  def get_models(
@@ -6,7 +6,7 @@
6
6
  # GitHub: https://github.com/szczyglis-dev/py-gpt #
7
7
  # MIT License #
8
8
  # Created By : Marcin Szczygliński #
9
- # Updated Date: 2025.09.15 01:00:00 #
9
+ # Updated Date: 2025.09.17 20:00:00 #
10
10
  # ================================================== #
11
11
 
12
12
  from typing import Optional, List, Dict
@@ -89,6 +89,26 @@ class xAILLM(BaseLLM):
89
89
  if "is_function_calling_model" not in args:
90
90
  args["is_function_calling_model"] = model.tool_calls
91
91
  args = self.inject_llamaindex_http_clients(args, window.core.config)
92
+
93
+ # -----------------------------------------------------------
94
+ # xAI Live Search via search_parameters (Chat Completions)
95
+ # LlamaIndex OpenAILike supports 'additional_kwargs' passed to request body.
96
+ # -----------------------------------------------------------
97
+ try:
98
+ xai_remote = window.core.api.xai.remote.build(model=model) or {}
99
+ except Exception as e:
100
+ window.core.debug.log(e)
101
+ xai_remote = {}
102
+
103
+ search_http = xai_remote.get("http")
104
+ if search_http:
105
+ add_kwargs = dict(args.get("additional_kwargs") or {})
106
+ extra_body = dict(add_kwargs.get("extra_body") or {})
107
+ # Do not overwrite if user already set search_parameters manually
108
+ extra_body.setdefault("search_parameters", search_http)
109
+ add_kwargs["extra_body"] = extra_body
110
+ args["additional_kwargs"] = add_kwargs
111
+
92
112
  return OpenAILike(**args)
93
113
 
94
114
  def llama_multimodal(
@@ -106,8 +106,15 @@ class ChatInput(QTextEdit):
106
106
  self._auto_timer.setSingleShot(True)
107
107
  self._auto_timer.timeout.connect(self._auto_resize_tick)
108
108
 
109
- # Trigger auto-resize on text changes (tokens update stays intact)
110
- self.textChanged.connect(self._schedule_auto_resize)
109
+ self._tokens_timer = QTimer(self)
110
+ self._tokens_timer.setSingleShot(True)
111
+ self._tokens_timer.setInterval(500)
112
+ self._tokens_timer.timeout.connect(self.window.controller.ui.update_tokens)
113
+ self.textChanged.connect(self._on_text_changed_tokens)
114
+
115
+ def _on_text_changed_tokens(self):
116
+ """Schedule token count update with debounce."""
117
+ self._tokens_timer.start()
111
118
 
112
119
  def _apply_text_top_padding(self):
113
120
  """Apply extra top padding inside the text area by using viewport margins."""
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: pygpt-net
3
- Version: 2.6.53
3
+ Version: 2.6.55
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
@@ -119,7 +119,7 @@ Description-Content-Type: text/markdown
119
119
 
120
120
  [![pygpt](https://snapcraft.io/pygpt/badge.svg)](https://snapcraft.io/pygpt)
121
121
 
122
- Release: **2.6.53** | build: **2025-09-17** | Python: **>=3.10, <3.14**
122
+ Release: **2.6.55** | build: **2025-09-18** | Python: **>=3.10, <3.14**
123
123
 
124
124
  > Official website: https://pygpt.net | Documentation: https://pygpt.readthedocs.io
125
125
  >
@@ -1450,6 +1450,8 @@ The following plugins are currently available, and model can use them instantly:
1450
1450
 
1451
1451
  - `Mouse and Keyboard` - provides the ability to control the mouse and keyboard by the model.
1452
1452
 
1453
+ - `OpenStreetMap` - Search, geocode, plan routes, and generate static maps using OpenStreetMap services (Nominatim, OSRM, staticmap).
1454
+
1453
1455
  - `Real Time` - automatically appends the current date and time to the system prompt, informing the model about current time.
1454
1456
 
1455
1457
  - `Serial port / USB` - plugin provides commands for reading and sending data to USB ports.
@@ -1474,6 +1476,8 @@ The following plugins are currently available, and model can use them instantly:
1474
1476
 
1475
1477
  - `Wikipedia` - Search Wikipedia for information.
1476
1478
 
1479
+ - `Wolfram Alpha` - Compute and solve with Wolfram Alpha: short answers, full JSON pods, math (solve, derivatives, integrals), unit conversions, matrix operations, and plots.
1480
+
1477
1481
  - `X/Twitter` - Interact with tweets and users, manage bookmarks and media, perform likes, retweets, and more.
1478
1482
 
1479
1483
 
@@ -1795,6 +1799,20 @@ Plugin capabilities include:
1795
1799
 
1796
1800
  Documentation: https://pygpt.readthedocs.io/en/latest/plugins.html#mouse-and-keyboard
1797
1801
 
1802
+ ## OpenStreetMap
1803
+
1804
+ Provides everyday mapping utilities using OpenStreetMap services:
1805
+
1806
+ - Forward and reverse geocoding via Nominatim
1807
+ - Search with optional near/bbox filters
1808
+ - Routing via OSRM (driving, walking, cycling)
1809
+ - Generate openstreetmap.org URL (center/zoom or bbox; optional marker)
1810
+ - Utility helpers: open an OSM website URL centered on a point; download a single XYZ tile
1811
+
1812
+ Images are saved under `data/openstreetmap/` in the user data directory.
1813
+
1814
+ Documentation: https://pygpt.readthedocs.io/en/latest/plugins.html#openstreetmap
1815
+
1798
1816
  ## Real Time
1799
1817
 
1800
1818
  This plugin automatically adds the current date and time to each system prompt you send.
@@ -1918,6 +1936,12 @@ The Wikipedia plugin allows for comprehensive interactions with Wikipedia, inclu
1918
1936
 
1919
1937
  Documentation: https://pygpt.readthedocs.io/en/latest/plugins.html#wikipedia
1920
1938
 
1939
+ ## Wolfram Alpha
1940
+
1941
+ Provides computational knowledge via Wolfram Alpha: short answers, full JSON pods, numeric and symbolic math (solve, derivatives, integrals), unit conversions, matrix operations, and plots rendered as images. Images are saved under `data/wolframalpha/` in the user data directory.
1942
+
1943
+ Documentation: https://pygpt.readthedocs.io/en/latest/plugins.html#wolfram-alpha
1944
+
1921
1945
  ## X/Twitter
1922
1946
 
1923
1947
  The X/Twitter plugin integrates with the X platform, allowing for comprehensive interactions such as tweeting, retweeting, liking, media uploads, and more. This plugin requires OAuth2 authentication and offers various configuration options to manage API interactions effectively.
@@ -3622,6 +3646,17 @@ may consume additional tokens that are not displayed in the main window.
3622
3646
 
3623
3647
  ## Recent changes:
3624
3648
 
3649
+ **2.6.55 (2025-09-18)**
3650
+
3651
+ - Fixed: Unnecessary context loading from the database.
3652
+ - Optimized: Token count in the input field.
3653
+
3654
+ **2.6.54 (2025-09-18)**
3655
+
3656
+ - Added: Remote tools (like web search) are now also available in the Chat with Files and Agents (LlamaIndex) modes.
3657
+ - Added: Two new plugins: Wolfram Alpha and OpenStreetMap.
3658
+ - Fixed: Enabled local file-like schemes in links/images in the markdown-it parser.
3659
+
3625
3660
  **2.6.53 (2025-09-17)**
3626
3661
 
3627
3662
  - Added: An icon to enable/disable the web search remote tool in the icon bar, along with remote web search functionality in OpenRouter (#135).
@@ -1,7 +1,7 @@
1
- pygpt_net/CHANGELOG.txt,sha256=l6pHWC9VacJryFOWXsiynN4SJNY3RciLcR4dcRX1GAE,107251
1
+ pygpt_net/CHANGELOG.txt,sha256=aJ_ypWzqdw70BHyLM2_E1YFhqAm9omG_HLKpdSBh24Y,107656
2
2
  pygpt_net/LICENSE,sha256=dz9sfFgYahvu2NZbx4C1xCsVn9GVer2wXcMkFRBvqzY,1146
3
- pygpt_net/__init__.py,sha256=QQgvUJ7MQHf8hsw4j9O-RratpxKFbYabH_K9lZLc9-g,1373
4
- pygpt_net/app.py,sha256=PYS3NOz0LkV3mZi0tKoT07579rCWBvx97_140La5150,22044
3
+ pygpt_net/__init__.py,sha256=nuG6j7HK0OuHVophITf5lDzbQda9QO55rKvobmAEF5c,1373
4
+ pygpt_net/app.py,sha256=Wo4BiC2j6kovUFaIgc6AF4eC1M58_vYLDuKcdMFEjQc,22236
5
5
  pygpt_net/app_core.py,sha256=PwBOV9wZLtr-O6SxBiazABhYXMHH8kZ6OgbvSv2OiZA,3827
6
6
  pygpt_net/config.py,sha256=SCps_FfwdrynVAgpn37Ci1qTN8BFC05IGl9sYIi9e0w,16720
7
7
  pygpt_net/controller/__init__.py,sha256=k6_danw2VOQ4YNT-tH0mnfgK4SCL5B2Hyhug6TI1LgY,6100
@@ -51,7 +51,7 @@ pygpt_net/controller/chat/handler/xai_stream.py,sha256=OVgQA-Za1y73C_BhHbUggth7H
51
51
  pygpt_net/controller/chat/image.py,sha256=hH7-PHBpOZbi6Gl7quVAN-0K66f-BgmP6bwOzWCqxkk,8238
52
52
  pygpt_net/controller/chat/input.py,sha256=5CKEHSzx1SU1F-ktIUt9VA3TLtxP5kSqWyvYzANqruY,7846
53
53
  pygpt_net/controller/chat/output.py,sha256=j0yaQUiRMGAcjRUpxTZlC7EnoBpk84ibUhmRo22E7Xk,8390
54
- pygpt_net/controller/chat/remote_tools.py,sha256=sakey73R9QfhygdWCkVud7-DJgzoOVKcCUrND7MuVlA,3955
54
+ pygpt_net/controller/chat/remote_tools.py,sha256=vOu5mv0ocljoloYIjvul_JfKQY1kN_-frvXJBfuApqs,3953
55
55
  pygpt_net/controller/chat/render.py,sha256=QaYwfDEEbjhq0KQIVQx5QhY7CGjZGKi6WjK6gspA3y4,21087
56
56
  pygpt_net/controller/chat/response.py,sha256=Aef-iqkJIYaR_wGFQA6lGZ8RnG9Nx_9Mn29LrRZE5U8,11393
57
57
  pygpt_net/controller/chat/stream.py,sha256=8uIwYXwxPEwks4oMKovDXWsG3jBeq2RugdWpYkp9My4,5519
@@ -146,7 +146,7 @@ pygpt_net/controller/theme/theme.py,sha256=EWwY7TjjOIsLXQBLyKgRKZ2N2WoGGJzV1Qf8r
146
146
  pygpt_net/controller/tools/__init__.py,sha256=ds63rOuwLEIe-SlY_sQkhWSdXS0lfVwseUiHkg2NTD4,509
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
- pygpt_net/controller/ui/mode.py,sha256=CeGmAJQZ-cgTCGSD83Dn-XhUjWqNad2phuCTuzkROVU,9337
149
+ pygpt_net/controller/ui/mode.py,sha256=_eqfXxapQQXezk5N6wLhEmJC9nss6foh3MPZU529IUA,9563
150
150
  pygpt_net/controller/ui/tabs.py,sha256=8xAvuKyMjVaihg5vKH-s3kx-zo4BH8pZtz4flX8Spzg,29937
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
@@ -164,7 +164,7 @@ pygpt_net/core/agents/legacy.py,sha256=OiiiK0zrTfNbWu2dKukg_Ro0vTZyiHlHHCTn1hU0b
164
164
  pygpt_net/core/agents/memory.py,sha256=9Jz9kT-xT8QPpGeXEpWopJUGBLLHu6Ys_-fRrg6BWDg,5210
165
165
  pygpt_net/core/agents/observer/__init__.py,sha256=qVIBJKpGbc0k7PTESAwAR7SbN-pbkBMJUTzeliCAaJU,651
166
166
  pygpt_net/core/agents/observer/evaluation.py,sha256=AEcXfoMNNER1yRu5WeVnQypC53QPJMRXh4QlPzJzEYM,8115
167
- pygpt_net/core/agents/provider.py,sha256=seaeoYa8Q_YB43Z29J74cFN87_RMJgP-a979ok3thTk,3154
167
+ pygpt_net/core/agents/provider.py,sha256=jQd4ULnesQROKmi7srYpA3qwiS7p9UubQjnawUKQgnk,3360
168
168
  pygpt_net/core/agents/runner.py,sha256=mJHCMsXoycapqFOZWdi81s-INgZv5MS0MAm3oC_P-kk,12372
169
169
  pygpt_net/core/agents/runners/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
170
170
  pygpt_net/core/agents/runners/base.py,sha256=XjheBYhBZan51r3vkUh5uf00sYiRj8btZUeUP1jpqlA,5687
@@ -224,7 +224,7 @@ pygpt_net/core/command/command.py,sha256=Ix8Y_T8Ayn2a86tZdVGcFJ5VEoSW2IkcU-_Aog5
224
224
  pygpt_net/core/ctx/__init__.py,sha256=hsqzIDxcwIIjF-7Zr5SkkhQV9LLmIYndQ_dohK20bg0,507
225
225
  pygpt_net/core/ctx/bag.py,sha256=j_10HBqkswdz5vW140SuGvJRf7E7J7hQyz6DCVe5D44,1570
226
226
  pygpt_net/core/ctx/container.py,sha256=5nlgM_8laH0igUASILD5zIiK3YhB-BA9pTKI0jVqHeQ,4938
227
- pygpt_net/core/ctx/ctx.py,sha256=nl-xYi8u6bmqRCX51wwd6bXcd2FaOH1pdaSVJcgH9kM,43530
227
+ pygpt_net/core/ctx/ctx.py,sha256=9_23I84VHWEX32ydxKIC5Nb5w_z7Oidf7-0jMDP31KI,43548
228
228
  pygpt_net/core/ctx/idx.py,sha256=3Zi-48OWlU80si-Z7mVjnsc7TYATXK9g1dM0M5sXsV4,8167
229
229
  pygpt_net/core/ctx/output.py,sha256=6llpijYvZPPyn12ibhw0QpNpWaZijDMCB7rAahE2iD4,8928
230
230
  pygpt_net/core/ctx/reply.py,sha256=nm-TzBoIDE9GrYyNjtIT7DvJVf8duAS2fVMeInHNEH4,2324
@@ -305,7 +305,7 @@ pygpt_net/core/llm/llm.py,sha256=O4dSkOvs0nKQffdFuGSlScvPCyrTFTNRFJTH-frqOnM,238
305
305
  pygpt_net/core/locale/__init__.py,sha256=5fmTz0u-DvCrII3KqfVAnd8YIQ8F_JDPfN16z5JRcU4,510
306
306
  pygpt_net/core/locale/locale.py,sha256=lplM0fr0oFOcp8Nhoss7EGfbnAqE_kQnX0KbttQjgP0,6059
307
307
  pygpt_net/core/models/__init__.py,sha256=EpJrNNINMcaO4Qc6a87IWZkfBMx7G9YJN-pdLpcqH3w,510
308
- pygpt_net/core/models/models.py,sha256=x9ODKq6siXCUOAFQ5iSJdqiOcSfEitG7rBsvBVEVXKQ,16039
308
+ pygpt_net/core/models/models.py,sha256=Gw3YOQFXPV80vQJJSCW9bFbr_Fg0m8DflHrov0vkt58,16915
309
309
  pygpt_net/core/models/ollama.py,sha256=MiCt1Nzd3VHjnj7a0CmGjqUkPuD7401obd7G7KQIZzU,3189
310
310
  pygpt_net/core/modes/__init__.py,sha256=dKpce7VTQCzmSfNBT1WHd_zKzXRthRs7ZKqHQSEtftc,509
311
311
  pygpt_net/core/modes/modes.py,sha256=tlVP9OnQqwOIrv0qt-OMwivslcHEC3WY1X-0r-o0lqI,3067
@@ -396,8 +396,8 @@ pygpt_net/css_rc.py,sha256=PX6g9z5BsD-DXISuR2oq3jHcjiKfcJ4HsgcHez6wGMc,27762
396
396
  pygpt_net/data/audio/click_off.mp3,sha256=aNiRDP1pt-Jy7ija4YKCNFBwvGWbzU460F4pZWZDS90,65201
397
397
  pygpt_net/data/audio/click_on.mp3,sha256=qfdsSnthAEHVXzeyN4LlC0OvXuyW8p7stb7VXtlvZ1k,65201
398
398
  pygpt_net/data/audio/ok.mp3,sha256=LTiV32pEBkpUGBkKkcOdOFB7Eyt_QoP2Nv6c5AaXftk,32256
399
- pygpt_net/data/config/config.json,sha256=jF3EIjSvcU1fP-47fSXrTi1SRU-ZZRDohq0aD9c_L0w,30887
400
- pygpt_net/data/config/models.json,sha256=1OSWVroppCS2gH7qLd8ltmUQb_f6tFdfnufZc0-ri_8,118192
399
+ pygpt_net/data/config/config.json,sha256=96MIjPzLdtWnxFjE3gnMCkNEIUzqFik1G91jO5mYoOw,30886
400
+ pygpt_net/data/config/models.json,sha256=M3gL_7bKPqB9lfh7mphfVzKKPhRYq-Mkp_0SVezS_rc,118192
401
401
  pygpt_net/data/config/modes.json,sha256=IpjLOm428_vs6Ma9U-YQTNKJNtZw-qyM1lwhh73xl1w,2111
402
402
  pygpt_net/data/config/presets/agent_code_act.json,sha256=GYHqhxtKFLUCvRI3IJAJ7Qe1k8yD9wGGNwManldWzlI,754
403
403
  pygpt_net/data/config/presets/agent_openai.json,sha256=bpDJgLRey_effQkzFRoOEGd4aHUrmzeODSDdNzrf62I,730
@@ -663,7 +663,7 @@ pygpt_net/data/icons/window.svg,sha256=Ac0i_zydkTg_hHi-ZzTRNW0uQ5z7j-2TjNX6iwv3o
663
663
  pygpt_net/data/icons/work.svg,sha256=6dAOEVzYU-6RUn3NpTvf6l2d4dD9vnalkYQTwjKNRrs,365
664
664
  pygpt_net/data/icons/zoom_in.svg,sha256=tFULsXTslx_gX6wi0XUCk8hiFlptvYCr922ipMQvNrM,422
665
665
  pygpt_net/data/icons/zoom_out.svg,sha256=HA01vUxYKU4KuOzZ74O6K6fzpEg_b6XW5fJ6U-XUwzs,396
666
- pygpt_net/data/js/app.js,sha256=ly4fuJ4beYUEq9-pONrSh0n13ldXV8E-6UKyMWSVJ08,261676
666
+ pygpt_net/data/js/app.js,sha256=cN7JJMJjeMWQycv6whNaIoi5Wolrild74R5gZ5oGMjc,262597
667
667
  pygpt_net/data/js/highlight/DIGESTS.md,sha256=bFIjBE_BrA2dkd0CM5SXLKQIccKOUcUeRFUK4c_3kWM,75091
668
668
  pygpt_net/data/js/highlight/LICENSE,sha256=bAgUMVkdnfaWyC3FmP4UI3ZbiimbIA7QCyga_Q9kxJA,1514
669
669
  pygpt_net/data/js/highlight/README.md,sha256=iUuAsk62y3lZEbACdBntj-_CEEN4gUfcbi4hkmEL6n0,1717
@@ -1833,6 +1833,7 @@ pygpt_net/data/locale/plugin.openai_vision.it.ini,sha256=jPnYzeVa6ulF7P5c4mr7REr
1833
1833
  pygpt_net/data/locale/plugin.openai_vision.pl.ini,sha256=JOywxX2jmf1kT097u9X85JJpdsvoRO1-Hx55YQHMErs,1484
1834
1834
  pygpt_net/data/locale/plugin.openai_vision.uk.ini,sha256=sUopD45q1mOKwTUIOnBP4vheUtrBcp21x1h4uoKthSM,2275
1835
1835
  pygpt_net/data/locale/plugin.openai_vision.zh.ini,sha256=_kyoxidMj1le4Omz1oAMegFnniAKPihSC3Y4bznMccI,1288
1836
+ pygpt_net/data/locale/plugin.osm.en.ini,sha256=kK51wNCtIvyG4gMjFw1Ssv9ItL1aIFIgz5wjBr_EtyY,1875
1836
1837
  pygpt_net/data/locale/plugin.real_time.de.ini,sha256=GPz0E6qcyzftdE61lKqkK-wUvnsgrcxwOeg19-JhdCY,712
1837
1838
  pygpt_net/data/locale/plugin.real_time.en.ini,sha256=_CBscABhj1feneX4ohr-jtt9meGO8fcMDGDzdBl4jyw,675
1838
1839
  pygpt_net/data/locale/plugin.real_time.es.ini,sha256=CN-d7cs7ymsSbavjzSgvL20sQ0D2akbULvphGIR1pnI,713
@@ -1849,6 +1850,7 @@ pygpt_net/data/locale/plugin.voice_control.it.ini,sha256=vint_A1cgeYyzA3JgFgDwdA
1849
1850
  pygpt_net/data/locale/plugin.voice_control.pl.ini,sha256=MAgIqKek5JKg6FYARkXrIe7h8cv8m9zLPPzC9Jm_Zgo,340
1850
1851
  pygpt_net/data/locale/plugin.voice_control.uk.ini,sha256=3TmKeDSw-UckKggwjJRNAdrdhFl1UoPIqBxn2SMzHHU,545
1851
1852
  pygpt_net/data/locale/plugin.voice_control.zh.ini,sha256=SZNVNOtJedH0IaH44YB4ekvYon8Z8dEkYTi6ZsC0S6k,282
1853
+ pygpt_net/data/locale/plugin.wolfram.en.ini,sha256=o4pgq8CJNqvpJhEXKnS6o1e7hYKb7TdJSAe6VgZi140,1374
1852
1854
  pygpt_net/data/logo.png,sha256=asjkGb9cP7vjVx9Hdne2bI2GcSlcQ8r_3LBp_znVZj4,19418
1853
1855
  pygpt_net/data/prompts.csv,sha256=dmSg9d3TFPJKvcU7_2hBjA9q1qxjEX-lIPjx1j9rxsM,83051
1854
1856
  pygpt_net/data/themes/dark.css,sha256=JlaKPwzZYlY-wGUoMnUeim6JHDnA_oRnf5pQmBPbnqo,541
@@ -1885,7 +1887,7 @@ pygpt_net/item/notepad.py,sha256=7v3A3HJjew0IoFM65Li0xfoSEdJzfEUZM1IH1ND0Bxw,180
1885
1887
  pygpt_net/item/preset.py,sha256=9VeMlWjUvRKYyVu1XPxaZOFZvL-N_ThXZR_M38TbpWA,8523
1886
1888
  pygpt_net/item/prompt.py,sha256=xequZDTEv4eKjmC5OLqZnNrbyy0YA4LHe0k2RpPiBw0,1745
1887
1889
  pygpt_net/js.qrc,sha256=Dyp5qWokt0MGSOmNfI6ASawF8Xo1f4SZArUJ8vckcbQ,526
1888
- pygpt_net/js_rc.py,sha256=CBZqdNpWlimjaoaF6od_f9md6zbKglHTHDp0lA20UJY,2383840
1890
+ pygpt_net/js_rc.py,sha256=nYbUV2b0UL5PJ7gkQAH_yifIM6iazn-UbA8Q56S7oq4,2384940
1889
1891
  pygpt_net/launcher.py,sha256=bqR175OVZ_Q3yKsIM5NiHB1S1b-vXrIglsQyr6zyrWU,10125
1890
1892
  pygpt_net/migrations/Version20231227152900.py,sha256=1Rw1mK2mVQs0B2HrbxHICu1Pd1X5jg4yZIrytnR5N5Y,2849
1891
1893
  pygpt_net/migrations/Version20231230095000.py,sha256=A1_e9oC_E4LSo9uBFiiI2dKH7N-SERFp7DMX1R_8LXQ,906
@@ -1920,7 +1922,7 @@ pygpt_net/plugin/base/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3h
1920
1922
  pygpt_net/plugin/base/config.py,sha256=q5WAcF-h3KZH4bJFYANasM7UmV1v1c43fF1EZ05iF7Y,848
1921
1923
  pygpt_net/plugin/base/plugin.py,sha256=kaU_be6l4wXFr7ByQM3Tr2poR9l9JitWdjY5roHVdEI,14710
1922
1924
  pygpt_net/plugin/base/signals.py,sha256=vy1OHZ3RESuaLDt45jZ6jy3CH6cgMFCUeuj85D3aJlk,899
1923
- pygpt_net/plugin/base/worker.py,sha256=vMKNjwJmwaIJxj8MJPEB4wYmetPDlRr9zdoHYnD_3Fg,8202
1925
+ pygpt_net/plugin/base/worker.py,sha256=pExaFEeOFmrlvMFZ-0SdHLULe9PfE-MWedr_kHp9q3Y,8459
1924
1926
  pygpt_net/plugin/bitbucket/__init__.py,sha256=tvF6upS93L61NRbkQmscSJXM7ZzPlmVj16mVHUM-NHU,510
1925
1927
  pygpt_net/plugin/bitbucket/config.py,sha256=O8fhb8p2AKE7Y1jWXo6eNIs-EbKeATzWaS7ANAm4Cuo,17950
1926
1928
  pygpt_net/plugin/bitbucket/plugin.py,sha256=mV7ZB5dTi0OGXEK6fJWL0uazMaBlgI6P5yF5zWxVnEw,3509
@@ -2014,6 +2016,10 @@ pygpt_net/plugin/openai_vision/__init__.py,sha256=tvF6upS93L61NRbkQmscSJXM7ZzPlm
2014
2016
  pygpt_net/plugin/openai_vision/config.py,sha256=V323eAXXKY01e8XJDTg6auavNzx7YMRIINgPiXGh_gk,4703
2015
2017
  pygpt_net/plugin/openai_vision/plugin.py,sha256=k5MWTFP-UxqgUssoxQQU0qEZCImCjQDEowgHJs02ghc,11352
2016
2018
  pygpt_net/plugin/openai_vision/worker.py,sha256=KhpLurNfYg6eVjRlJ0ijEh6Z2ZZZyOKY2-NQWBkAHA0,5327
2019
+ pygpt_net/plugin/osm/__init__.py,sha256=tvF6upS93L61NRbkQmscSJXM7ZzPlmVj16mVHUM-NHU,510
2020
+ pygpt_net/plugin/osm/config.py,sha256=ve7OltO5RFTCkuSiOoPYgUjRvMpDRcrQ3UauzXAj2tc,15150
2021
+ pygpt_net/plugin/osm/plugin.py,sha256=iHGu6QW7_w1aoQ4wr8Aje8gb0mBzytC4USR6CcHnDVs,2652
2022
+ pygpt_net/plugin/osm/worker.py,sha256=YZfvpyCPo_owqRROGBBWlVps7owsKhNmqENDWM22jyM,29789
2017
2023
  pygpt_net/plugin/real_time/__init__.py,sha256=vBIhdxwwT5kc2yth5sjjbW2OjiBlMTqdCRrlh_mjNvM,510
2018
2024
  pygpt_net/plugin/real_time/config.py,sha256=vgP33hiz5-mLF9WvJDOtCZx_TZrqo-zlgtVINRtpuHM,2128
2019
2025
  pygpt_net/plugin/real_time/plugin.py,sha256=PTMe2KnYnFGW3Y2g_nEtHH6uT_4OpvYlvcM2r8xoucQ,5027
@@ -2044,6 +2050,10 @@ pygpt_net/plugin/wikipedia/__init__.py,sha256=aiE7xBxoF7D9TdjVH6B9b75ZGvQXhRdbZR
2044
2050
  pygpt_net/plugin/wikipedia/config.py,sha256=TwiQhz8nuXcvXshXVRu9DUZn7Mi1taCLBSLVkmoEUAE,9639
2045
2051
  pygpt_net/plugin/wikipedia/plugin.py,sha256=5IxTgtuRkbsjNwI1dMwcdtdYjUvr_RZPdAvo--TPVcM,3105
2046
2052
  pygpt_net/plugin/wikipedia/worker.py,sha256=qKSz2ABQkYa0s59DQvWoPI_c_LBSAZrw9MkViV4347I,17018
2053
+ pygpt_net/plugin/wolfram/__init__.py,sha256=tvF6upS93L61NRbkQmscSJXM7ZzPlmVj16mVHUM-NHU,510
2054
+ pygpt_net/plugin/wolfram/config.py,sha256=b-GPY8WCvvUDHdich5dBzxtCqbPkHbcgKukyx8jlNtk,9536
2055
+ pygpt_net/plugin/wolfram/plugin.py,sha256=_DD0Y6oWTwPpcAFinwklLJjmRnK-6yJI7eBzu5bKBBA,3232
2056
+ pygpt_net/plugin/wolfram/worker.py,sha256=gu5HjeqwOi2F_HdlR0mqx1wZszKIsfzalfiLrGHCZVI,23048
2047
2057
  pygpt_net/provider/__init__.py,sha256=lOkgAiuNUqkAl_QrIG3ZsUznIZeJYtokgzEnDB8gRic,488
2048
2058
  pygpt_net/provider/agents/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
2049
2059
  pygpt_net/provider/agents/base.py,sha256=reCwWTHGm0ejW2hvClpd2SjLiKIiUUYNjxoQ608DpJI,3763
@@ -2102,13 +2112,13 @@ pygpt_net/provider/api/openai/__init__.py,sha256=jaoU_4jd5bkVaJB7cfvma_LDXwDyvb-
2102
2112
  pygpt_net/provider/api/openai/agents/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
2103
2113
  pygpt_net/provider/api/openai/agents/client.py,sha256=opH2DnYPVRuWvc284AMjJBWUhipV8hdWcs3yqWA2g7s,2372
2104
2114
  pygpt_net/provider/api/openai/agents/computer.py,sha256=wilD84b9Wl20ZRbBVgW-97k-a-9fYrMb2fbtQZoTqYk,11764
2105
- pygpt_net/provider/api/openai/agents/experts.py,sha256=pQY-IvNjGod7h5A5Pna85bXjEB8_q_le1-LxSQzxooA,2609
2115
+ pygpt_net/provider/api/openai/agents/experts.py,sha256=-6kptAhWlyGX-QtHex4VB7NmMie-mlg0QeG_fGPmOMU,2573
2106
2116
  pygpt_net/provider/api/openai/agents/remote_tools.py,sha256=jlpJKQDty1_QFBQiD8KlqYPxJLizaOLv4umH6bmHS9s,7399
2107
2117
  pygpt_net/provider/api/openai/agents/response.py,sha256=dPOD_uEjy4k54AU6v_TB3QFk-FqulcR_UpaX9Tfpzf8,6495
2108
2118
  pygpt_net/provider/api/openai/agents/utils.py,sha256=3Ll2c10Vq7PoK7kWv98RmJsFmghynAsyNzkXbXMek6I,2035
2109
2119
  pygpt_net/provider/api/openai/assistants.py,sha256=xYGVnnqQDiUUayWA8tzLhl5y92naOoHP2oP0y4ABo0I,14090
2110
2120
  pygpt_net/provider/api/openai/audio.py,sha256=frHElxYVaHYkNDCMJ9tQMoGqxSaZ-s5oPlAEHUAckkc,2032
2111
- pygpt_net/provider/api/openai/chat.py,sha256=At4VrD8hSqJB0QtzfmPRNi2-7tg3hl6w_q31WYgWfls,18553
2121
+ pygpt_net/provider/api/openai/chat.py,sha256=DzsEISEW-XkDz4ey9PRkElMwZ0iOKPSJyO5cxnz96lA,18211
2112
2122
  pygpt_net/provider/api/openai/completion.py,sha256=9nWYcwvqwu16Qg1mWhWLAEzMTj-5ff40WN_O94b8T2o,6231
2113
2123
  pygpt_net/provider/api/openai/computer.py,sha256=fNTSjIYBoOrW7hLnc-KQuvffKniSai8O7oM8DTv6Tds,11814
2114
2124
  pygpt_net/provider/api/openai/container.py,sha256=jWsFkgofa5SKjztQnJZdfhryX-dYAceijv9F3iQkbl0,4922
@@ -2130,7 +2140,7 @@ pygpt_net/provider/api/x_ai/__init__.py,sha256=J7bwClg59Cxal1bP7btRX-rKK3n93V6z3
2130
2140
  pygpt_net/provider/api/x_ai/audio.py,sha256=6ePxjNqokUPmiuh0utC8udgFU9Jha5ScBJ6TKcIDZR8,1065
2131
2141
  pygpt_net/provider/api/x_ai/chat.py,sha256=uiWabPG6QmWVxbwt-4gNLCzL-zK2rmJVdr9HB7u826k,38257
2132
2142
  pygpt_net/provider/api/x_ai/image.py,sha256=kko5AMKs7XcjgdvrlpT90h4vvIR3_eQkOjJ1q5TvHn4,7983
2133
- pygpt_net/provider/api/x_ai/remote.py,sha256=KC5eM1IDRXqigfsetRGQjSwWcjK1UpS34zpiWTWqxn4,10484
2143
+ pygpt_net/provider/api/x_ai/remote.py,sha256=Ols0_XABst0FcIv4bkwe9Wkd1Gihbh4uqb33kWf_B4o,10482
2134
2144
  pygpt_net/provider/api/x_ai/tools.py,sha256=JpmAwHiru_DJ9hETkKmq1aePdDLSLH2B4FH1VqfaAF4,4299
2135
2145
  pygpt_net/provider/api/x_ai/vision.py,sha256=Unqsdb9rIzwSoq4icMNET7XG17QQUC32rTNhA9lLh18,3819
2136
2146
  pygpt_net/provider/audio_input/__init__.py,sha256=lOkgAiuNUqkAl_QrIG3ZsUznIZeJYtokgzEnDB8gRic,488
@@ -2234,11 +2244,11 @@ pygpt_net/provider/core/prompt/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5
2234
2244
  pygpt_net/provider/core/prompt/base.py,sha256=EYUA30T1QwJ9RSD0uW5x6VEstgIXNwgutmaXI64BWhw,1304
2235
2245
  pygpt_net/provider/core/prompt/json_file.py,sha256=5yfW1RgEa36tX4-ntze4PavWLry0YG43D2LO23_MrzE,4838
2236
2246
  pygpt_net/provider/llms/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
2237
- pygpt_net/provider/llms/anthropic.py,sha256=QDqYvcUW-_hQS0-5ACAq8CwW0JuDIMX7OZAWi-a0XSg,4804
2247
+ pygpt_net/provider/llms/anthropic.py,sha256=3amHgC6h5BHQhZsK08y-04ncpfVF5oJzEGkHuaIVLKk,6177
2238
2248
  pygpt_net/provider/llms/azure_openai.py,sha256=Q7LUfkXW7EQiUmC7h06a2cL4SK-WZowN5eTEB-3ifn4,3966
2239
2249
  pygpt_net/provider/llms/base.py,sha256=_qjVRHeOp24R-eI0EovG4X0Ylr-EZoV0upLpz3MlycI,6849
2240
2250
  pygpt_net/provider/llms/deepseek_api.py,sha256=GH6kQAD1cgKuhSOxKIp7LO1a-jYDuyN51Z3J0DTQFJY,3653
2241
- pygpt_net/provider/llms/google.py,sha256=gn62OQ1sTjN7ahCXOHGS3wfopn_Z4wT-qZWt6UHXjJE,4123
2251
+ pygpt_net/provider/llms/google.py,sha256=UL9s-YUaFAU_1BZhkB9qkNWVgww50MJzwTXahpup5QE,5658
2242
2252
  pygpt_net/provider/llms/hugging_face.py,sha256=qWyGVqosDw9WVsKbZc5IG7j4jjfVPeCKr6gPAn8Tyus,1800
2243
2253
  pygpt_net/provider/llms/hugging_face_api.py,sha256=KnD9R-6eFHFd82_uP--UXzmHi_t6ijUnVK8bANKCDx0,6814
2244
2254
  pygpt_net/provider/llms/hugging_face_embedding.py,sha256=Gho4RiOGT9Fw3kt7bSIKVP6VWXzAQ283jN5SaUAoQrI,3103
@@ -2255,12 +2265,12 @@ pygpt_net/provider/llms/local.py,sha256=zfiO3-eRe216l3qumrUUR1YotzY4voFI5fyqEpGL
2255
2265
  pygpt_net/provider/llms/mistral.py,sha256=RdbzpPDTWy5q5W7ojZFu0-r_wMcVZ2bETyLK9ISuiBY,6594
2256
2266
  pygpt_net/provider/llms/ollama.py,sha256=vVqA22eH-APgyfHCaHSvJlAgxLSvspvZSaOCeaKWQCw,4434
2257
2267
  pygpt_net/provider/llms/ollama_custom.py,sha256=WVbLiEEwnz5loKiLy7EYmpuWz0Tp5Vhd1vOUB2051kI,24167
2258
- pygpt_net/provider/llms/open_router.py,sha256=gbDGoqOAP0-rBACJ6_pbGulo4BvrWAPD4zjxKrBmX-E,3722
2268
+ pygpt_net/provider/llms/open_router.py,sha256=k4WgtT6A13bwhdT7oKQe4dO78x0Wog5deebbvfL7YVA,3815
2259
2269
  pygpt_net/provider/llms/openai.py,sha256=oPnnrMTypWnNzcx9twctIhTsXTH0GYuNRfeREZOC1CM,5581
2260
2270
  pygpt_net/provider/llms/perplexity.py,sha256=saNelgOXaePdJIX6eS3XQ0Nh7Nt1lGsC5PE1Lngv6w8,6098
2261
2271
  pygpt_net/provider/llms/utils.py,sha256=5p83te7Hv9jUTtW-VXDDwzRO_0qvFSN5FdeRYioUedk,1336
2262
2272
  pygpt_net/provider/llms/voyage.py,sha256=3tuLmayekAy-pNIK9z-Gwz9jEVYdt7CsAtsE57feUlA,1918
2263
- pygpt_net/provider/llms/x_ai.py,sha256=CYuMWXajQMZ9T3Lbbw59cAfcVPQ4ffCFgULO_jsxKps,6799
2273
+ pygpt_net/provider/llms/x_ai.py,sha256=jlJVau9OYLPxX5ZnpXCxID105ckCVUd_PL0D2cyy7iM,7729
2264
2274
  pygpt_net/provider/loaders/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
2265
2275
  pygpt_net/provider/loaders/base.py,sha256=3-qzzGAF2jxhriNHjE3Y2GtDXxs1_2_BIloaVJS4qzQ,3101
2266
2276
  pygpt_net/provider/loaders/file_csv.py,sha256=br4zlMFXMVkhq1n71tqCNk2CS1wBxvClpn9vivq3l2g,1266
@@ -2567,7 +2577,7 @@ pygpt_net/ui/widget/textarea/create.py,sha256=f4SrAW-2hjkKYIPrwVliSYH-LkgsQP8G13
2567
2577
  pygpt_net/ui/widget/textarea/editor.py,sha256=gmNzsMrCQXGkFyVfl0woc_klmjsyiXuOdcG8Lk2PSR4,5038
2568
2578
  pygpt_net/ui/widget/textarea/find.py,sha256=fQu6t-_LTZGFRNCkezywtMVsL-DocIkGBR_HbRFq61g,1534
2569
2579
  pygpt_net/ui/widget/textarea/html.py,sha256=4DOnUYtHBhN-6X5w13GK-ceAAvTPd8M4mH_N-c3L_h0,12344
2570
- pygpt_net/ui/widget/textarea/input.py,sha256=TNJxS5y2-ih8uzoKR1IZjftByrSGbI0JCFSEH6URO0g,35392
2580
+ pygpt_net/ui/widget/textarea/input.py,sha256=q968EmthyKQ6He9v8WNv3dSReGkbeg_9JbW3fj4_qaE,35668
2571
2581
  pygpt_net/ui/widget/textarea/name.py,sha256=vcyAY_pJWJoS_IJqdJjhIeDSniTL9rfpt8aaobWNFVY,1132
2572
2582
  pygpt_net/ui/widget/textarea/notepad.py,sha256=yGXXUN3pBs5UQgx4ipa8_Xn8JWxbNEoYVsnLg4BvtcY,9718
2573
2583
  pygpt_net/ui/widget/textarea/output.py,sha256=krWta3GHwdlPOqcxLln150bo7iUOtbFL_yJzMucGOFU,6246
@@ -2578,8 +2588,8 @@ pygpt_net/ui/widget/textarea/web.py,sha256=FGS0NGSpzKgtP8AzMwnC-LHDXEOY7baHImmnx
2578
2588
  pygpt_net/ui/widget/vision/__init__.py,sha256=8HT4tQFqQogEEpGYTv2RplKBthlsFKcl5egnv4lzzEw,488
2579
2589
  pygpt_net/ui/widget/vision/camera.py,sha256=v1qEncaZr5pXocO5Cpk_lsgfCMvfFigdJmzsYfzvCl0,1877
2580
2590
  pygpt_net/utils.py,sha256=7lZj_YSzx7ZfvqFtjYThEvRJNSBZzrJyK7ZxDAtYPAQ,9708
2581
- pygpt_net-2.6.53.dist-info/LICENSE,sha256=rbPqNB_xxANH8hKayJyIcTwD4bj4Y2G-Mcm85r1OImM,1126
2582
- pygpt_net-2.6.53.dist-info/METADATA,sha256=PDuGbv1CcNAxRNVwEc1-ruZ9NJbXEyFgpT-Mqy8ROFg,165007
2583
- pygpt_net-2.6.53.dist-info/WHEEL,sha256=b4K_helf-jlQoXBBETfwnf4B04YC67LOev0jo4fX5m8,88
2584
- pygpt_net-2.6.53.dist-info/entry_points.txt,sha256=qvpII6UHIt8XfokmQWnCYQrTgty8FeJ9hJvOuUFCN-8,43
2585
- pygpt_net-2.6.53.dist-info/RECORD,,
2591
+ pygpt_net-2.6.55.dist-info/LICENSE,sha256=rbPqNB_xxANH8hKayJyIcTwD4bj4Y2G-Mcm85r1OImM,1126
2592
+ pygpt_net-2.6.55.dist-info/METADATA,sha256=bebYG3hfBiryuqZALnfnBXGqiEAPnrD4lX7x47uHo9g,166653
2593
+ pygpt_net-2.6.55.dist-info/WHEEL,sha256=b4K_helf-jlQoXBBETfwnf4B04YC67LOev0jo4fX5m8,88
2594
+ pygpt_net-2.6.55.dist-info/entry_points.txt,sha256=qvpII6UHIt8XfokmQWnCYQrTgty8FeJ9hJvOuUFCN-8,43
2595
+ pygpt_net-2.6.55.dist-info/RECORD,,