pygpt-net 2.6.29__tar.gz → 2.6.31__tar.gz

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 (2639) hide show
  1. pygpt_net-2.6.31/CHANGELOG.md +2940 -0
  2. pygpt_net-2.6.31/PKG-INFO +3705 -0
  3. pygpt_net-2.6.31/README.md +3589 -0
  4. pygpt_net-2.6.31/pyproject.toml +134 -0
  5. pygpt_net-2.6.31/src/pygpt_net/CHANGELOG.txt +2940 -0
  6. pygpt_net-2.6.31/src/pygpt_net/__init__.py +31 -0
  7. pygpt_net-2.6.31/src/pygpt_net/app.py +510 -0
  8. pygpt_net-2.6.31/src/pygpt_net/app_core.py +117 -0
  9. pygpt_net-2.6.31/src/pygpt_net/controller/__init__.py +185 -0
  10. pygpt_net-2.6.31/src/pygpt_net/controller/access/control.py +402 -0
  11. pygpt_net-2.6.31/src/pygpt_net/controller/assistant/assistant.py +326 -0
  12. pygpt_net-2.6.31/src/pygpt_net/controller/assistant/batch.py +576 -0
  13. pygpt_net-2.6.31/src/pygpt_net/controller/assistant/files.py +436 -0
  14. pygpt_net-2.6.31/src/pygpt_net/controller/assistant/threads.py +681 -0
  15. pygpt_net-2.6.31/src/pygpt_net/controller/attachment/attachment.py +678 -0
  16. pygpt_net-2.6.31/src/pygpt_net/controller/audio/audio.py +467 -0
  17. pygpt_net-2.6.31/src/pygpt_net/controller/audio/ui.py +263 -0
  18. pygpt_net-2.6.31/src/pygpt_net/controller/chat/audio.py +92 -0
  19. pygpt_net-2.6.31/src/pygpt_net/controller/chat/common.py +526 -0
  20. pygpt_net-2.6.31/src/pygpt_net/controller/chat/handler/stream_worker.py +1124 -0
  21. pygpt_net-2.6.31/src/pygpt_net/controller/chat/output.py +255 -0
  22. pygpt_net-2.6.31/src/pygpt_net/controller/chat/stream.py +147 -0
  23. pygpt_net-2.6.31/src/pygpt_net/controller/chat/text.py +249 -0
  24. pygpt_net-2.6.31/src/pygpt_net/controller/chat/vision.py +104 -0
  25. pygpt_net-2.6.31/src/pygpt_net/controller/config/placeholder.py +456 -0
  26. pygpt_net-2.6.31/src/pygpt_net/controller/ctx/ctx.py +1302 -0
  27. pygpt_net-2.6.31/src/pygpt_net/controller/ctx/summarizer.py +112 -0
  28. pygpt_net-2.6.31/src/pygpt_net/controller/kernel/kernel.py +404 -0
  29. pygpt_net-2.6.31/src/pygpt_net/controller/kernel/reply.py +170 -0
  30. pygpt_net-2.6.31/src/pygpt_net/controller/mode/mode.py +254 -0
  31. pygpt_net-2.6.31/src/pygpt_net/controller/plugins/settings.py +193 -0
  32. pygpt_net-2.6.31/src/pygpt_net/controller/presets/editor.py +1128 -0
  33. pygpt_net-2.6.31/src/pygpt_net/controller/realtime/__init__.py +12 -0
  34. pygpt_net-2.6.31/src/pygpt_net/controller/realtime/manager.py +53 -0
  35. pygpt_net-2.6.31/src/pygpt_net/controller/realtime/realtime.py +268 -0
  36. pygpt_net-2.6.31/src/pygpt_net/controller/theme/theme.py +292 -0
  37. pygpt_net-2.6.31/src/pygpt_net/controller/ui/mode.py +234 -0
  38. pygpt_net-2.6.31/src/pygpt_net/controller/ui/ui.py +236 -0
  39. pygpt_net-2.6.31/src/pygpt_net/controller/ui/vision.py +86 -0
  40. pygpt_net-2.6.31/src/pygpt_net/core/agents/legacy.py +68 -0
  41. pygpt_net-2.6.31/src/pygpt_net/core/agents/runners/openai_workflow.py +244 -0
  42. pygpt_net-2.6.31/src/pygpt_net/core/assistants/files.py +359 -0
  43. pygpt_net-2.6.31/src/pygpt_net/core/assistants/store.py +300 -0
  44. pygpt_net-2.6.31/src/pygpt_net/core/audio/audio.py +262 -0
  45. pygpt_net-2.6.31/src/pygpt_net/core/audio/backend/native/__init__.py +12 -0
  46. pygpt_net-2.6.31/src/pygpt_net/core/audio/backend/native/native.py +997 -0
  47. pygpt_net-2.6.31/src/pygpt_net/core/audio/backend/native/player.py +139 -0
  48. pygpt_net-2.6.31/src/pygpt_net/core/audio/backend/native/realtime.py +250 -0
  49. pygpt_net-2.6.31/src/pygpt_net/core/audio/backend/pyaudio/__init__.py +12 -0
  50. pygpt_net-2.6.31/src/pygpt_net/core/audio/backend/pyaudio/playback.py +194 -0
  51. pygpt_net-2.6.31/src/pygpt_net/core/audio/backend/pyaudio/pyaudio.py +923 -0
  52. pygpt_net-2.6.31/src/pygpt_net/core/audio/backend/pyaudio/realtime.py +275 -0
  53. pygpt_net-2.6.31/src/pygpt_net/core/audio/backend/pygame/__init__.py +12 -0
  54. pygpt_net-2.6.31/src/pygpt_net/core/audio/backend/pygame/pygame.py +611 -0
  55. pygpt_net-2.6.31/src/pygpt_net/core/audio/backend/shared/__init__.py +38 -0
  56. pygpt_net-2.6.31/src/pygpt_net/core/audio/backend/shared/conversions.py +211 -0
  57. pygpt_net-2.6.31/src/pygpt_net/core/audio/backend/shared/envelope.py +38 -0
  58. pygpt_net-2.6.31/src/pygpt_net/core/audio/backend/shared/player.py +137 -0
  59. pygpt_net-2.6.31/src/pygpt_net/core/audio/backend/shared/rt.py +52 -0
  60. pygpt_net-2.6.31/src/pygpt_net/core/audio/capture.py +148 -0
  61. pygpt_net-2.6.31/src/pygpt_net/core/audio/output.py +102 -0
  62. pygpt_net-2.6.31/src/pygpt_net/core/audio/whisper.py +41 -0
  63. pygpt_net-2.6.31/src/pygpt_net/core/bridge/bridge.py +289 -0
  64. pygpt_net-2.6.31/src/pygpt_net/core/bridge/worker.py +199 -0
  65. pygpt_net-2.6.31/src/pygpt_net/core/debug/console/console.py +115 -0
  66. pygpt_net-2.6.31/src/pygpt_net/core/debug/presets.py +80 -0
  67. pygpt_net-2.6.31/src/pygpt_net/core/dispatcher/dispatcher.py +221 -0
  68. pygpt_net-2.6.31/src/pygpt_net/core/events/__init__.py +18 -0
  69. pygpt_net-2.6.31/src/pygpt_net/core/events/realtime.py +55 -0
  70. pygpt_net-2.6.31/src/pygpt_net/core/experts/experts.py +583 -0
  71. pygpt_net-2.6.31/src/pygpt_net/core/image/image.py +193 -0
  72. pygpt_net-2.6.31/src/pygpt_net/core/modes/modes.py +126 -0
  73. pygpt_net-2.6.31/src/pygpt_net/core/presets/presets.py +487 -0
  74. pygpt_net-2.6.31/src/pygpt_net/core/realtime/options.py +87 -0
  75. pygpt_net-2.6.31/src/pygpt_net/core/realtime/shared/audio.py +213 -0
  76. pygpt_net-2.6.31/src/pygpt_net/core/realtime/shared/loop.py +64 -0
  77. pygpt_net-2.6.31/src/pygpt_net/core/realtime/shared/session.py +59 -0
  78. pygpt_net-2.6.31/src/pygpt_net/core/realtime/shared/text.py +37 -0
  79. pygpt_net-2.6.31/src/pygpt_net/core/realtime/shared/tools.py +276 -0
  80. pygpt_net-2.6.31/src/pygpt_net/core/realtime/shared/turn.py +38 -0
  81. pygpt_net-2.6.31/src/pygpt_net/core/realtime/shared/types.py +16 -0
  82. pygpt_net-2.6.31/src/pygpt_net/core/realtime/worker.py +164 -0
  83. pygpt_net-2.6.31/src/pygpt_net/core/tokens/tokens.py +370 -0
  84. pygpt_net-2.6.31/src/pygpt_net/core/types/__init__.py +19 -0
  85. pygpt_net-2.6.31/src/pygpt_net/core/types/image.py +48 -0
  86. pygpt_net-2.6.31/src/pygpt_net/core/types/mode.py +28 -0
  87. pygpt_net-2.6.31/src/pygpt_net/core/vision/analyzer.py +158 -0
  88. pygpt_net-2.6.31/src/pygpt_net/data/config/config.json +507 -0
  89. pygpt_net-2.6.31/src/pygpt_net/data/config/models.json +3978 -0
  90. pygpt_net-2.6.31/src/pygpt_net/data/config/modes.json +81 -0
  91. pygpt_net-2.6.31/src/pygpt_net/data/config/settings.json +2642 -0
  92. pygpt_net-2.6.31/src/pygpt_net/data/config/settings_section.json +53 -0
  93. pygpt_net-2.6.31/src/pygpt_net/data/locale/locale.de.ini +1541 -0
  94. pygpt_net-2.6.31/src/pygpt_net/data/locale/locale.en.ini +1580 -0
  95. pygpt_net-2.6.31/src/pygpt_net/data/locale/locale.es.ini +1542 -0
  96. pygpt_net-2.6.31/src/pygpt_net/data/locale/locale.fr.ini +1541 -0
  97. pygpt_net-2.6.31/src/pygpt_net/data/locale/locale.it.ini +1541 -0
  98. pygpt_net-2.6.31/src/pygpt_net/data/locale/locale.pl.ini +1542 -0
  99. pygpt_net-2.6.31/src/pygpt_net/data/locale/locale.uk.ini +1541 -0
  100. pygpt_net-2.6.31/src/pygpt_net/data/locale/locale.zh.ini +1541 -0
  101. pygpt_net-2.6.31/src/pygpt_net/data/locale/plugin.audio_input.en.ini +67 -0
  102. pygpt_net-2.6.31/src/pygpt_net/data/locale/plugin.audio_output.en.ini +34 -0
  103. pygpt_net-2.6.31/src/pygpt_net/item/model.py +308 -0
  104. pygpt_net-2.6.31/src/pygpt_net/plugin/audio_input/plugin.py +559 -0
  105. pygpt_net-2.6.31/src/pygpt_net/plugin/audio_input/simple.py +210 -0
  106. pygpt_net-2.6.31/src/pygpt_net/plugin/cmd_files/worker.py +948 -0
  107. pygpt_net-2.6.31/src/pygpt_net/plugin/openai_dalle/plugin.py +172 -0
  108. pygpt_net-2.6.31/src/pygpt_net/plugin/openai_vision/plugin.py +367 -0
  109. {pygpt_net-2.6.29/src/pygpt_net/provider/agents/openai/bots → pygpt_net-2.6.31/src/pygpt_net/provider/agents/llama_index/legacy}/__init__.py +0 -0
  110. {pygpt_net-2.6.29/src/pygpt_net/provider/agents/openai/bots/research_bot/agents → pygpt_net-2.6.31/src/pygpt_net/provider/agents/llama_index/workflow}/__init__.py +0 -0
  111. pygpt_net-2.6.31/src/pygpt_net/provider/agents/openai/agent.py +181 -0
  112. pygpt_net-2.6.31/src/pygpt_net/provider/agents/openai/agent_b2b.py +494 -0
  113. pygpt_net-2.6.31/src/pygpt_net/provider/agents/openai/agent_planner.py +520 -0
  114. pygpt_net-2.6.31/src/pygpt_net/provider/agents/openai/agent_with_experts.py +159 -0
  115. pygpt_net-2.6.31/src/pygpt_net/provider/agents/openai/agent_with_experts_feedback.py +384 -0
  116. pygpt_net-2.6.31/src/pygpt_net/provider/agents/openai/agent_with_feedback.py +384 -0
  117. pygpt_net-2.6.31/src/pygpt_net/provider/agents/openai/bot_researcher.py +287 -0
  118. {pygpt_net-2.6.29/src/pygpt_net/provider/gpt/agents → pygpt_net-2.6.31/src/pygpt_net/provider/agents/openai/bots}/__init__.py +0 -0
  119. {pygpt_net-2.6.29/src/pygpt_net/provider/gpt/worker → pygpt_net-2.6.31/src/pygpt_net/provider/agents/openai/bots/research_bot/agents}/__init__.py +0 -0
  120. pygpt_net-2.6.31/src/pygpt_net/provider/agents/openai/bots/research_bot/agents/planner_agent.py +61 -0
  121. pygpt_net-2.6.31/src/pygpt_net/provider/agents/openai/bots/research_bot/agents/search_agent.py +53 -0
  122. pygpt_net-2.6.31/src/pygpt_net/provider/agents/openai/bots/research_bot/agents/writer_agent.py +55 -0
  123. pygpt_net-2.6.31/src/pygpt_net/provider/agents/openai/evolve.py +597 -0
  124. pygpt_net-2.6.31/src/pygpt_net/provider/agents/openai/supervisor.py +355 -0
  125. pygpt_net-2.6.31/src/pygpt_net/provider/api/__init__.py +27 -0
  126. pygpt_net-2.6.31/src/pygpt_net/provider/api/anthropic/__init__.py +68 -0
  127. pygpt_net-2.6.31/src/pygpt_net/provider/api/google/__init__.py +295 -0
  128. pygpt_net-2.6.31/src/pygpt_net/provider/api/google/audio.py +121 -0
  129. pygpt_net-2.6.31/src/pygpt_net/provider/api/google/chat.py +591 -0
  130. pygpt_net-2.6.31/src/pygpt_net/provider/api/google/image.py +427 -0
  131. pygpt_net-2.6.31/src/pygpt_net/provider/api/google/realtime/__init__.py +12 -0
  132. pygpt_net-2.6.31/src/pygpt_net/provider/api/google/realtime/client.py +1945 -0
  133. pygpt_net-2.6.31/src/pygpt_net/provider/api/google/realtime/realtime.py +186 -0
  134. pygpt_net-2.6.31/src/pygpt_net/provider/api/google/tools.py +222 -0
  135. pygpt_net-2.6.31/src/pygpt_net/provider/api/google/vision.py +129 -0
  136. pygpt_net-2.6.31/src/pygpt_net/provider/api/openai/__init__.py +344 -0
  137. {pygpt_net-2.6.29/src/pygpt_net/provider/llms → pygpt_net-2.6.31/src/pygpt_net/provider/api/openai/agents}/__init__.py +0 -0
  138. pygpt_net-2.6.31/src/pygpt_net/provider/api/openai/agents/computer.py +382 -0
  139. pygpt_net-2.6.31/src/pygpt_net/provider/api/openai/agents/experts.py +89 -0
  140. pygpt_net-2.6.31/src/pygpt_net/provider/api/openai/agents/response.py +176 -0
  141. pygpt_net-2.6.31/src/pygpt_net/provider/api/openai/assistants.py +465 -0
  142. pygpt_net-2.6.31/src/pygpt_net/provider/api/openai/chat.py +411 -0
  143. pygpt_net-2.6.31/src/pygpt_net/provider/api/openai/completion.py +192 -0
  144. pygpt_net-2.6.31/src/pygpt_net/provider/api/openai/image.py +325 -0
  145. pygpt_net-2.6.31/src/pygpt_net/provider/api/openai/realtime/__init__.py +12 -0
  146. pygpt_net-2.6.31/src/pygpt_net/provider/api/openai/realtime/client.py +1828 -0
  147. pygpt_net-2.6.31/src/pygpt_net/provider/api/openai/realtime/realtime.py +194 -0
  148. pygpt_net-2.6.31/src/pygpt_net/provider/api/openai/remote_tools.py +155 -0
  149. pygpt_net-2.6.31/src/pygpt_net/provider/api/openai/responses.py +708 -0
  150. pygpt_net-2.6.31/src/pygpt_net/provider/api/openai/store.py +608 -0
  151. pygpt_net-2.6.31/src/pygpt_net/provider/api/openai/vision.py +410 -0
  152. pygpt_net-2.6.31/src/pygpt_net/provider/api/openai/worker/assistants.py +636 -0
  153. pygpt_net-2.6.31/src/pygpt_net/provider/api/openai/worker/importer.py +448 -0
  154. pygpt_net-2.6.31/src/pygpt_net/provider/audio_input/google_genai.py +103 -0
  155. pygpt_net-2.6.31/src/pygpt_net/provider/audio_input/openai_whisper.py +69 -0
  156. pygpt_net-2.6.31/src/pygpt_net/provider/audio_output/google_genai_tts.py +229 -0
  157. pygpt_net-2.6.31/src/pygpt_net/provider/audio_output/openai_tts.py +101 -0
  158. pygpt_net-2.6.31/src/pygpt_net/provider/core/config/patch.py +2397 -0
  159. pygpt_net-2.6.31/src/pygpt_net/provider/core/model/patch.py +796 -0
  160. pygpt_net-2.6.31/src/pygpt_net/provider/core/preset/json_file.py +306 -0
  161. {pygpt_net-2.6.29/src/pygpt_net/provider/loaders → pygpt_net-2.6.31/src/pygpt_net/provider/llms}/__init__.py +0 -0
  162. pygpt_net-2.6.31/src/pygpt_net/provider/llms/anthropic.py +105 -0
  163. pygpt_net-2.6.31/src/pygpt_net/provider/llms/base.py +228 -0
  164. pygpt_net-2.6.31/src/pygpt_net/provider/llms/google.py +103 -0
  165. pygpt_net-2.6.31/src/pygpt_net/provider/llms/openai.py +177 -0
  166. pygpt_net-2.6.31/src/pygpt_net/provider/loaders/hub/image_vision/base.py +229 -0
  167. {pygpt_net-2.6.29/src/pygpt_net/tools/translator → pygpt_net-2.6.31/src/pygpt_net/tools/indexer}/ui/__init__.py +0 -0
  168. pygpt_net-2.6.31/src/pygpt_net/ui/base/__init__.py +0 -0
  169. pygpt_net-2.6.31/src/pygpt_net/ui/dialog/preset.py +463 -0
  170. pygpt_net-2.6.31/src/pygpt_net/ui/layout/toolbox/footer.py +167 -0
  171. pygpt_net-2.6.31/src/pygpt_net/ui/layout/toolbox/image.py +75 -0
  172. pygpt_net-2.6.31/src/pygpt_net/ui/main.py +444 -0
  173. pygpt_net-2.6.31/src/pygpt_net/ui/widget/calendar/__init__.py +0 -0
  174. pygpt_net-2.6.31/src/pygpt_net/ui/widget/filesystem/__init__.py +0 -0
  175. pygpt_net-2.6.31/src/pygpt_net/ui/widget/option/combo.py +176 -0
  176. pygpt_net-2.6.31/src/pygpt_net/utils.py +327 -0
  177. pygpt_net-2.6.29/CHANGELOG.md +0 -2925
  178. pygpt_net-2.6.29/PKG-INFO +0 -3705
  179. pygpt_net-2.6.29/README.md +0 -3589
  180. pygpt_net-2.6.29/pyproject.toml +0 -134
  181. pygpt_net-2.6.29/src/pygpt_net/CHANGELOG.txt +0 -2925
  182. pygpt_net-2.6.29/src/pygpt_net/__init__.py +0 -31
  183. pygpt_net-2.6.29/src/pygpt_net/app.py +0 -506
  184. pygpt_net-2.6.29/src/pygpt_net/container.py +0 -118
  185. pygpt_net-2.6.29/src/pygpt_net/controller/__init__.py +0 -182
  186. pygpt_net-2.6.29/src/pygpt_net/controller/access/control.py +0 -410
  187. pygpt_net-2.6.29/src/pygpt_net/controller/assistant/assistant.py +0 -326
  188. pygpt_net-2.6.29/src/pygpt_net/controller/assistant/batch.py +0 -576
  189. pygpt_net-2.6.29/src/pygpt_net/controller/assistant/files.py +0 -436
  190. pygpt_net-2.6.29/src/pygpt_net/controller/assistant/threads.py +0 -681
  191. pygpt_net-2.6.29/src/pygpt_net/controller/attachment/attachment.py +0 -681
  192. pygpt_net-2.6.29/src/pygpt_net/controller/audio/audio.py +0 -443
  193. pygpt_net-2.6.29/src/pygpt_net/controller/audio/ui.py +0 -263
  194. pygpt_net-2.6.29/src/pygpt_net/controller/chat/audio.py +0 -99
  195. pygpt_net-2.6.29/src/pygpt_net/controller/chat/common.py +0 -500
  196. pygpt_net-2.6.29/src/pygpt_net/controller/chat/output.py +0 -250
  197. pygpt_net-2.6.29/src/pygpt_net/controller/chat/stream.py +0 -548
  198. pygpt_net-2.6.29/src/pygpt_net/controller/chat/text.py +0 -248
  199. pygpt_net-2.6.29/src/pygpt_net/controller/chat/vision.py +0 -112
  200. pygpt_net-2.6.29/src/pygpt_net/controller/config/placeholder.py +0 -456
  201. pygpt_net-2.6.29/src/pygpt_net/controller/ctx/ctx.py +0 -1302
  202. pygpt_net-2.6.29/src/pygpt_net/controller/ctx/summarizer.py +0 -112
  203. pygpt_net-2.6.29/src/pygpt_net/controller/kernel/kernel.py +0 -396
  204. pygpt_net-2.6.29/src/pygpt_net/controller/kernel/reply.py +0 -166
  205. pygpt_net-2.6.29/src/pygpt_net/controller/mode/mode.py +0 -245
  206. pygpt_net-2.6.29/src/pygpt_net/controller/plugins/settings.py +0 -192
  207. pygpt_net-2.6.29/src/pygpt_net/controller/presets/editor.py +0 -1115
  208. pygpt_net-2.6.29/src/pygpt_net/controller/theme/theme.py +0 -291
  209. pygpt_net-2.6.29/src/pygpt_net/controller/ui/mode.py +0 -227
  210. pygpt_net-2.6.29/src/pygpt_net/controller/ui/ui.py +0 -218
  211. pygpt_net-2.6.29/src/pygpt_net/controller/ui/vision.py +0 -86
  212. pygpt_net-2.6.29/src/pygpt_net/core/agents/legacy.py +0 -68
  213. pygpt_net-2.6.29/src/pygpt_net/core/agents/runners/openai_workflow.py +0 -244
  214. pygpt_net-2.6.29/src/pygpt_net/core/assistants/files.py +0 -359
  215. pygpt_net-2.6.29/src/pygpt_net/core/assistants/store.py +0 -300
  216. pygpt_net-2.6.29/src/pygpt_net/core/audio/audio.py +0 -257
  217. pygpt_net-2.6.29/src/pygpt_net/core/audio/backend/native.py +0 -698
  218. pygpt_net-2.6.29/src/pygpt_net/core/audio/backend/pyaudio.py +0 -554
  219. pygpt_net-2.6.29/src/pygpt_net/core/audio/backend/pygame.py +0 -500
  220. pygpt_net-2.6.29/src/pygpt_net/core/audio/capture.py +0 -143
  221. pygpt_net-2.6.29/src/pygpt_net/core/audio/output.py +0 -91
  222. pygpt_net-2.6.29/src/pygpt_net/core/audio/whisper.py +0 -37
  223. pygpt_net-2.6.29/src/pygpt_net/core/bridge/bridge.py +0 -288
  224. pygpt_net-2.6.29/src/pygpt_net/core/bridge/worker.py +0 -177
  225. pygpt_net-2.6.29/src/pygpt_net/core/debug/console/console.py +0 -115
  226. pygpt_net-2.6.29/src/pygpt_net/core/debug/presets.py +0 -80
  227. pygpt_net-2.6.29/src/pygpt_net/core/dispatcher/dispatcher.py +0 -185
  228. pygpt_net-2.6.29/src/pygpt_net/core/events/__init__.py +0 -17
  229. pygpt_net-2.6.29/src/pygpt_net/core/experts/experts.py +0 -583
  230. pygpt_net-2.6.29/src/pygpt_net/core/image/image.py +0 -143
  231. pygpt_net-2.6.29/src/pygpt_net/core/modes/modes.py +0 -126
  232. pygpt_net-2.6.29/src/pygpt_net/core/presets/presets.py +0 -487
  233. pygpt_net-2.6.29/src/pygpt_net/core/tokens/tokens.py +0 -370
  234. pygpt_net-2.6.29/src/pygpt_net/core/types/__init__.py +0 -18
  235. pygpt_net-2.6.29/src/pygpt_net/core/types/mode.py +0 -25
  236. pygpt_net-2.6.29/src/pygpt_net/core/vision/analyzer.py +0 -158
  237. pygpt_net-2.6.29/src/pygpt_net/data/config/config.json +0 -498
  238. pygpt_net-2.6.29/src/pygpt_net/data/config/models.json +0 -3860
  239. pygpt_net-2.6.29/src/pygpt_net/data/config/modes.json +0 -87
  240. pygpt_net-2.6.29/src/pygpt_net/data/config/settings.json +0 -2534
  241. pygpt_net-2.6.29/src/pygpt_net/data/config/settings_section.json +0 -53
  242. pygpt_net-2.6.29/src/pygpt_net/data/locale/locale.de.ini +0 -1541
  243. pygpt_net-2.6.29/src/pygpt_net/data/locale/locale.en.ini +0 -1567
  244. pygpt_net-2.6.29/src/pygpt_net/data/locale/locale.es.ini +0 -1542
  245. pygpt_net-2.6.29/src/pygpt_net/data/locale/locale.fr.ini +0 -1541
  246. pygpt_net-2.6.29/src/pygpt_net/data/locale/locale.it.ini +0 -1541
  247. pygpt_net-2.6.29/src/pygpt_net/data/locale/locale.pl.ini +0 -1542
  248. pygpt_net-2.6.29/src/pygpt_net/data/locale/locale.uk.ini +0 -1541
  249. pygpt_net-2.6.29/src/pygpt_net/data/locale/locale.zh.ini +0 -1541
  250. pygpt_net-2.6.29/src/pygpt_net/data/locale/plugin.audio_input.en.ini +0 -63
  251. pygpt_net-2.6.29/src/pygpt_net/data/locale/plugin.audio_output.en.ini +0 -30
  252. pygpt_net-2.6.29/src/pygpt_net/item/model.py +0 -288
  253. pygpt_net-2.6.29/src/pygpt_net/plugin/audio_input/plugin.py +0 -526
  254. pygpt_net-2.6.29/src/pygpt_net/plugin/audio_input/simple.py +0 -161
  255. pygpt_net-2.6.29/src/pygpt_net/plugin/cmd_files/worker.py +0 -945
  256. pygpt_net-2.6.29/src/pygpt_net/plugin/openai_dalle/plugin.py +0 -172
  257. pygpt_net-2.6.29/src/pygpt_net/plugin/openai_vision/plugin.py +0 -368
  258. pygpt_net-2.6.29/src/pygpt_net/provider/agents/openai/agent.py +0 -181
  259. pygpt_net-2.6.29/src/pygpt_net/provider/agents/openai/agent_b2b.py +0 -494
  260. pygpt_net-2.6.29/src/pygpt_net/provider/agents/openai/agent_planner.py +0 -521
  261. pygpt_net-2.6.29/src/pygpt_net/provider/agents/openai/agent_with_experts.py +0 -159
  262. pygpt_net-2.6.29/src/pygpt_net/provider/agents/openai/agent_with_experts_feedback.py +0 -384
  263. pygpt_net-2.6.29/src/pygpt_net/provider/agents/openai/agent_with_feedback.py +0 -384
  264. pygpt_net-2.6.29/src/pygpt_net/provider/agents/openai/bot_researcher.py +0 -287
  265. pygpt_net-2.6.29/src/pygpt_net/provider/agents/openai/bots/research_bot/agents/planner_agent.py +0 -61
  266. pygpt_net-2.6.29/src/pygpt_net/provider/agents/openai/bots/research_bot/agents/search_agent.py +0 -53
  267. pygpt_net-2.6.29/src/pygpt_net/provider/agents/openai/bots/research_bot/agents/writer_agent.py +0 -55
  268. pygpt_net-2.6.29/src/pygpt_net/provider/agents/openai/evolve.py +0 -597
  269. pygpt_net-2.6.29/src/pygpt_net/provider/agents/openai/supervisor.py +0 -355
  270. pygpt_net-2.6.29/src/pygpt_net/provider/audio_input/openai_whisper.py +0 -69
  271. pygpt_net-2.6.29/src/pygpt_net/provider/audio_output/openai_tts.py +0 -98
  272. pygpt_net-2.6.29/src/pygpt_net/provider/core/config/patch.py +0 -2371
  273. pygpt_net-2.6.29/src/pygpt_net/provider/core/model/patch.py +0 -776
  274. pygpt_net-2.6.29/src/pygpt_net/provider/core/preset/json_file.py +0 -308
  275. pygpt_net-2.6.29/src/pygpt_net/provider/gpt/__init__.py +0 -324
  276. pygpt_net-2.6.29/src/pygpt_net/provider/gpt/agents/computer.py +0 -382
  277. pygpt_net-2.6.29/src/pygpt_net/provider/gpt/agents/experts.py +0 -89
  278. pygpt_net-2.6.29/src/pygpt_net/provider/gpt/agents/response.py +0 -176
  279. pygpt_net-2.6.29/src/pygpt_net/provider/gpt/assistants.py +0 -465
  280. pygpt_net-2.6.29/src/pygpt_net/provider/gpt/chat.py +0 -404
  281. pygpt_net-2.6.29/src/pygpt_net/provider/gpt/completion.py +0 -192
  282. pygpt_net-2.6.29/src/pygpt_net/provider/gpt/image.py +0 -325
  283. pygpt_net-2.6.29/src/pygpt_net/provider/gpt/remote_tools.py +0 -155
  284. pygpt_net-2.6.29/src/pygpt_net/provider/gpt/responses.py +0 -694
  285. pygpt_net-2.6.29/src/pygpt_net/provider/gpt/store.py +0 -608
  286. pygpt_net-2.6.29/src/pygpt_net/provider/gpt/vision.py +0 -410
  287. pygpt_net-2.6.29/src/pygpt_net/provider/gpt/worker/assistants.py +0 -636
  288. pygpt_net-2.6.29/src/pygpt_net/provider/gpt/worker/importer.py +0 -448
  289. pygpt_net-2.6.29/src/pygpt_net/provider/llms/anthropic.py +0 -108
  290. pygpt_net-2.6.29/src/pygpt_net/provider/llms/base.py +0 -227
  291. pygpt_net-2.6.29/src/pygpt_net/provider/llms/google.py +0 -104
  292. pygpt_net-2.6.29/src/pygpt_net/provider/llms/openai.py +0 -177
  293. pygpt_net-2.6.29/src/pygpt_net/provider/loaders/hub/image_vision/base.py +0 -229
  294. pygpt_net-2.6.29/src/pygpt_net/ui/dialog/preset.py +0 -447
  295. pygpt_net-2.6.29/src/pygpt_net/ui/layout/toolbox/footer.py +0 -151
  296. pygpt_net-2.6.29/src/pygpt_net/ui/layout/toolbox/image.py +0 -70
  297. pygpt_net-2.6.29/src/pygpt_net/ui/main.py +0 -442
  298. pygpt_net-2.6.29/src/pygpt_net/ui/widget/option/combo.py +0 -162
  299. pygpt_net-2.6.29/src/pygpt_net/utils.py +0 -318
  300. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/LICENSE +0 -0
  301. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/icon.png +0 -0
  302. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/LICENSE +0 -0
  303. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/config.py +0 -0
  304. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/controller/access/__init__.py +0 -0
  305. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/controller/access/access.py +0 -0
  306. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/controller/access/voice.py +0 -0
  307. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/controller/agent/__init__.py +0 -0
  308. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/controller/agent/agent.py +0 -0
  309. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/controller/agent/common.py +0 -0
  310. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/controller/agent/experts.py +0 -0
  311. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/controller/agent/legacy.py +0 -0
  312. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/controller/agent/llama.py +0 -0
  313. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/controller/assistant/__init__.py +0 -0
  314. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/controller/assistant/editor.py +0 -0
  315. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/controller/assistant/store.py +0 -0
  316. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/controller/attachment/__init__.py +0 -0
  317. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/controller/audio/__init__.py +0 -0
  318. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/controller/calendar/__init__.py +0 -0
  319. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/controller/calendar/calendar.py +0 -0
  320. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/controller/calendar/note.py +0 -0
  321. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/controller/camera/__init__.py +0 -0
  322. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/controller/camera/camera.py +0 -0
  323. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/controller/chat/__init__.py +0 -0
  324. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/controller/chat/attachment.py +0 -0
  325. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/controller/chat/chat.py +0 -0
  326. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/controller/chat/command.py +0 -0
  327. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/controller/chat/files.py +0 -0
  328. {pygpt_net-2.6.29/src/pygpt_net/controller/config/field → pygpt_net-2.6.31/src/pygpt_net/controller/chat/handler}/__init__.py +0 -0
  329. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/controller/chat/image.py +0 -0
  330. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/controller/chat/input.py +0 -0
  331. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/controller/chat/render.py +0 -0
  332. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/controller/chat/response.py +0 -0
  333. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/controller/command/__init__.py +0 -0
  334. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/controller/command/command.py +0 -0
  335. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/controller/config/__init__.py +0 -0
  336. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/controller/config/config.py +0 -0
  337. {pygpt_net-2.6.29/src/pygpt_net/core → pygpt_net-2.6.31/src/pygpt_net/controller/config/field}/__init__.py +0 -0
  338. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/controller/config/field/checkbox.py +0 -0
  339. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/controller/config/field/checkbox_list.py +0 -0
  340. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/controller/config/field/cmd.py +0 -0
  341. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/controller/config/field/combo.py +0 -0
  342. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/controller/config/field/dictionary.py +0 -0
  343. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/controller/config/field/input.py +0 -0
  344. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/controller/config/field/slider.py +0 -0
  345. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/controller/config/field/textarea.py +0 -0
  346. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/controller/ctx/__init__.py +0 -0
  347. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/controller/ctx/common.py +0 -0
  348. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/controller/ctx/extra.py +0 -0
  349. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/controller/debug/__init__.py +0 -0
  350. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/controller/debug/debug.py +0 -0
  351. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/controller/dialogs/__init__.py +0 -0
  352. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/controller/dialogs/confirm.py +0 -0
  353. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/controller/dialogs/debug.py +0 -0
  354. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/controller/dialogs/dialogs.py +0 -0
  355. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/controller/dialogs/info.py +0 -0
  356. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/controller/files/__init__.py +0 -0
  357. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/controller/files/files.py +0 -0
  358. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/controller/finder/__init__.py +0 -0
  359. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/controller/finder/finder.py +0 -0
  360. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/controller/idx/__init__.py +0 -0
  361. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/controller/idx/common.py +0 -0
  362. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/controller/idx/idx.py +0 -0
  363. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/controller/idx/indexer.py +0 -0
  364. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/controller/idx/settings.py +0 -0
  365. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/controller/kernel/__init__.py +0 -0
  366. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/controller/kernel/stack.py +0 -0
  367. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/controller/lang/__init__.py +0 -0
  368. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/controller/lang/custom.py +0 -0
  369. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/controller/lang/lang.py +0 -0
  370. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/controller/lang/mapping.py +0 -0
  371. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/controller/lang/plugins.py +0 -0
  372. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/controller/lang/settings.py +0 -0
  373. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/controller/launcher/__init__.py +0 -0
  374. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/controller/launcher/launcher.py +0 -0
  375. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/controller/layout/__init__.py +0 -0
  376. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/controller/layout/layout.py +0 -0
  377. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/controller/mode/__init__.py +0 -0
  378. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/controller/model/__init__.py +0 -0
  379. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/controller/model/editor.py +0 -0
  380. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/controller/model/importer.py +0 -0
  381. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/controller/model/model.py +0 -0
  382. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/controller/notepad/__init__.py +0 -0
  383. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/controller/notepad/notepad.py +0 -0
  384. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/controller/painter/__init__.py +0 -0
  385. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/controller/painter/capture.py +0 -0
  386. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/controller/painter/common.py +0 -0
  387. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/controller/painter/painter.py +0 -0
  388. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/controller/plugins/__init__.py +0 -0
  389. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/controller/plugins/plugins.py +0 -0
  390. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/controller/plugins/presets.py +0 -0
  391. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/controller/presets/__init__.py +0 -0
  392. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/controller/presets/experts.py +0 -0
  393. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/controller/presets/presets.py +0 -0
  394. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/controller/settings/__init__.py +0 -0
  395. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/controller/settings/editor.py +0 -0
  396. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/controller/settings/profile.py +0 -0
  397. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/controller/settings/settings.py +0 -0
  398. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/controller/settings/workdir.py +0 -0
  399. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/controller/theme/__init__.py +0 -0
  400. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/controller/theme/common.py +0 -0
  401. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/controller/theme/markdown.py +0 -0
  402. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/controller/theme/menu.py +0 -0
  403. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/controller/theme/nodes.py +0 -0
  404. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/controller/tools/__init__.py +0 -0
  405. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/controller/tools/tools.py +0 -0
  406. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/controller/ui/__init__.py +0 -0
  407. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/controller/ui/tabs.py +0 -0
  408. {pygpt_net-2.6.29/src/pygpt_net/core/agents/runners → pygpt_net-2.6.31/src/pygpt_net/core}/__init__.py +0 -0
  409. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/core/access/__init__.py +0 -0
  410. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/core/access/access.py +0 -0
  411. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/core/access/actions.py +0 -0
  412. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/core/access/helpers.py +0 -0
  413. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/core/access/shortcuts.py +0 -0
  414. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/core/access/voice.py +0 -0
  415. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/core/agents/__init__.py +0 -0
  416. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/core/agents/agents.py +0 -0
  417. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/core/agents/bridge.py +0 -0
  418. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/core/agents/memory.py +0 -0
  419. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/core/agents/observer/__init__.py +0 -0
  420. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/core/agents/observer/evaluation.py +0 -0
  421. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/core/agents/provider.py +0 -0
  422. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/core/agents/runner.py +0 -0
  423. {pygpt_net-2.6.29/src/pygpt_net/core/audio/backend → pygpt_net-2.6.31/src/pygpt_net/core/agents/runners}/__init__.py +0 -0
  424. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/core/agents/runners/base.py +0 -0
  425. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/core/agents/runners/helpers.py +0 -0
  426. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/core/agents/runners/llama_assistant.py +0 -0
  427. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/core/agents/runners/llama_plan.py +0 -0
  428. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/core/agents/runners/llama_steps.py +0 -0
  429. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/core/agents/runners/llama_workflow.py +0 -0
  430. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/core/agents/runners/loop.py +0 -0
  431. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/core/agents/tools.py +0 -0
  432. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/core/assistants/__init__.py +0 -0
  433. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/core/assistants/assistants.py +0 -0
  434. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/core/attachments/__init__.py +0 -0
  435. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/core/attachments/attachments.py +0 -0
  436. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/core/attachments/context.py +0 -0
  437. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/core/attachments/worker.py +0 -0
  438. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/core/audio/__init__.py +0 -0
  439. {pygpt_net-2.6.29/src/pygpt_net/core/idx/types → pygpt_net-2.6.31/src/pygpt_net/core/audio/backend}/__init__.py +0 -0
  440. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/core/audio/context.py +0 -0
  441. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/core/bridge/__init__.py +0 -0
  442. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/core/bridge/context.py +0 -0
  443. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/core/calendar/__init__.py +0 -0
  444. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/core/calendar/calendar.py +0 -0
  445. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/core/camera/__init__.py +0 -0
  446. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/core/camera/camera.py +0 -0
  447. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/core/chain/__init__.py +0 -0
  448. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/core/chain/chain.py +0 -0
  449. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/core/chain/chat.py +0 -0
  450. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/core/chain/completion.py +0 -0
  451. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/core/command/__init__.py +0 -0
  452. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/core/command/command.py +0 -0
  453. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/core/ctx/__init__.py +0 -0
  454. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/core/ctx/bag.py +0 -0
  455. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/core/ctx/container.py +0 -0
  456. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/core/ctx/ctx.py +0 -0
  457. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/core/ctx/idx.py +0 -0
  458. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/core/ctx/output.py +0 -0
  459. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/core/ctx/reply.py +0 -0
  460. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/core/db/__init__.py +0 -0
  461. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/core/db/database.py +0 -0
  462. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/core/db/viewer.py +0 -0
  463. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/core/debug/__init__.py +0 -0
  464. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/core/debug/agent.py +0 -0
  465. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/core/debug/assistants.py +0 -0
  466. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/core/debug/attachments.py +0 -0
  467. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/core/debug/config.py +0 -0
  468. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/core/debug/console/__init__.py +0 -0
  469. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/core/debug/context.py +0 -0
  470. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/core/debug/db.py +0 -0
  471. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/core/debug/debug.py +0 -0
  472. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/core/debug/events.py +0 -0
  473. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/core/debug/indexes.py +0 -0
  474. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/core/debug/kernel.py +0 -0
  475. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/core/debug/models.py +0 -0
  476. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/core/debug/plugins.py +0 -0
  477. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/core/debug/tabs.py +0 -0
  478. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/core/debug/ui.py +0 -0
  479. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/core/dispatcher/__init__.py +0 -0
  480. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/core/docker/__init__.py +0 -0
  481. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/core/docker/builder.py +0 -0
  482. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/core/docker/docker.py +0 -0
  483. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/core/events/app.py +0 -0
  484. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/core/events/base.py +0 -0
  485. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/core/events/control.py +0 -0
  486. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/core/events/event.py +0 -0
  487. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/core/events/kernel.py +0 -0
  488. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/core/events/render.py +0 -0
  489. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/core/experts/__init__.py +0 -0
  490. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/core/experts/worker.py +0 -0
  491. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/core/filesystem/__init__.py +0 -0
  492. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/core/filesystem/actions.py +0 -0
  493. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/core/filesystem/editor.py +0 -0
  494. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/core/filesystem/filesystem.py +0 -0
  495. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/core/filesystem/opener.py +0 -0
  496. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/core/filesystem/packer.py +0 -0
  497. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/core/filesystem/parser.py +0 -0
  498. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/core/filesystem/types.py +0 -0
  499. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/core/filesystem/url.py +0 -0
  500. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/core/history/__init__.py +0 -0
  501. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/core/history/history.py +0 -0
  502. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/core/idx/__init__.py +0 -0
  503. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/core/idx/chat.py +0 -0
  504. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/core/idx/context.py +0 -0
  505. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/core/idx/idx.py +0 -0
  506. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/core/idx/indexing.py +0 -0
  507. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/core/idx/llm.py +0 -0
  508. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/core/idx/metadata.py +0 -0
  509. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/core/idx/response.py +0 -0
  510. {pygpt_net-2.6.29/src/pygpt_net/plugin/base → pygpt_net-2.6.31/src/pygpt_net/core/idx/types}/__init__.py +0 -0
  511. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/core/idx/types/ctx.py +0 -0
  512. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/core/idx/types/external.py +0 -0
  513. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/core/idx/types/files.py +0 -0
  514. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/core/idx/ui/__init__.py +0 -0
  515. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/core/idx/ui/loaders.py +0 -0
  516. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/core/idx/worker.py +0 -0
  517. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/core/image/__init__.py +0 -0
  518. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/core/info/__init__.py +0 -0
  519. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/core/info/info.py +0 -0
  520. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/core/installer/__init__.py +0 -0
  521. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/core/installer/installer.py +0 -0
  522. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/core/llm/__init__.py +0 -0
  523. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/core/llm/llm.py +0 -0
  524. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/core/locale/__init__.py +0 -0
  525. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/core/locale/locale.py +0 -0
  526. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/core/models/__init__.py +0 -0
  527. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/core/models/models.py +0 -0
  528. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/core/models/ollama.py +0 -0
  529. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/core/modes/__init__.py +0 -0
  530. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/core/notepad/__init__.py +0 -0
  531. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/core/notepad/notepad.py +0 -0
  532. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/core/platforms/__init__.py +0 -0
  533. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/core/platforms/platforms.py +0 -0
  534. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/core/plugins/__init__.py +0 -0
  535. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/core/plugins/plugins.py +0 -0
  536. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/core/presets/__init__.py +0 -0
  537. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/core/profile/__init__.py +0 -0
  538. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/core/profile/profile.py +0 -0
  539. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/core/prompt/__init__.py +0 -0
  540. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/core/prompt/base/__init__.py +0 -0
  541. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/core/prompt/base/gpt.py +0 -0
  542. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/core/prompt/custom.py +0 -0
  543. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/core/prompt/prompt.py +0 -0
  544. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/core/prompt/template.py +0 -0
  545. {pygpt_net-2.6.29/src/pygpt_net/provider/agents → pygpt_net-2.6.31/src/pygpt_net/core/realtime}/__init__.py +0 -0
  546. {pygpt_net-2.6.29/src/pygpt_net/provider/agents/llama_index → pygpt_net-2.6.31/src/pygpt_net/core/realtime/shared}/__init__.py +0 -0
  547. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/core/render/__init__.py +0 -0
  548. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/core/render/base.py +0 -0
  549. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/core/render/markdown/__init__.py +0 -0
  550. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/core/render/markdown/body.py +0 -0
  551. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/core/render/markdown/helpers.py +0 -0
  552. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/core/render/markdown/parser.py +0 -0
  553. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/core/render/markdown/pid.py +0 -0
  554. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/core/render/markdown/renderer.py +0 -0
  555. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/core/render/plain/__init__.py +0 -0
  556. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/core/render/plain/body.py +0 -0
  557. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/core/render/plain/helpers.py +0 -0
  558. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/core/render/plain/pid.py +0 -0
  559. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/core/render/plain/renderer.py +0 -0
  560. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/core/render/web/__init__.py +0 -0
  561. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/core/render/web/body.py +0 -0
  562. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/core/render/web/helpers.py +0 -0
  563. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/core/render/web/parser.py +0 -0
  564. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/core/render/web/pid.py +0 -0
  565. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/core/render/web/renderer.py +0 -0
  566. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/core/render/web/syntax_highlight.py +0 -0
  567. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/core/settings/__init__.py +0 -0
  568. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/core/settings/settings.py +0 -0
  569. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/core/tabs/__init__.py +0 -0
  570. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/core/tabs/tab.py +0 -0
  571. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/core/tabs/tabs.py +0 -0
  572. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/core/text/__init__.py +0 -0
  573. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/core/text/finder.py +0 -0
  574. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/core/text/text.py +0 -0
  575. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/core/text/utils.py +0 -0
  576. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/core/text/web_finder.py +0 -0
  577. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/core/tokens/__init__.py +0 -0
  578. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/core/types/agent.py +0 -0
  579. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/core/types/base.py +0 -0
  580. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/core/types/console.py +0 -0
  581. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/core/types/model.py +0 -0
  582. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/core/types/multimodal.py +0 -0
  583. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/core/types/openai.py +0 -0
  584. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/core/types/tools.py +0 -0
  585. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/core/updater/__init__.py +0 -0
  586. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/core/updater/updater.py +0 -0
  587. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/core/vision/__init__.py +0 -0
  588. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/core/vision/vision.py +0 -0
  589. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/core/web/__init__.py +0 -0
  590. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/core/web/helpers.py +0 -0
  591. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/core/web/web.py +0 -0
  592. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/core/worker/__init__.py +0 -0
  593. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/core/worker/worker.py +0 -0
  594. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/css.qrc +0 -0
  595. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/css_rc.py +0 -0
  596. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/audio/click_off.mp3 +0 -0
  597. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/audio/click_on.mp3 +0 -0
  598. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/audio/ok.mp3 +0 -0
  599. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/config/presets/agent_code_act.json +0 -0
  600. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/config/presets/agent_openai.json +0 -0
  601. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/config/presets/agent_openai_assistant.json +0 -0
  602. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/config/presets/agent_openai_b2b.json +0 -0
  603. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/config/presets/agent_openai_coder.json +0 -0
  604. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/config/presets/agent_openai_evolve.json +0 -0
  605. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/config/presets/agent_openai_expert.json +0 -0
  606. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/config/presets/agent_openai_planner.json +0 -0
  607. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/config/presets/agent_openai_researcher.json +0 -0
  608. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/config/presets/agent_openai_simple.json +0 -0
  609. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/config/presets/agent_openai_supervisor.json +0 -0
  610. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/config/presets/agent_openai_writer.json +0 -0
  611. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/config/presets/agent_planner.json +0 -0
  612. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/config/presets/agent_react.json +0 -0
  613. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/config/presets/agent_supervisor.json +0 -0
  614. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/config/presets/batman_and_joker.json +0 -0
  615. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/config/presets/current.agent.json +0 -0
  616. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/config/presets/current.agent_llama.json +0 -0
  617. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/config/presets/current.agent_openai.json +0 -0
  618. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/config/presets/current.assistant.json +0 -0
  619. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/config/presets/current.audio.json +0 -0
  620. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/config/presets/current.chat.json +0 -0
  621. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/config/presets/current.completion.json +0 -0
  622. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/config/presets/current.computer.json +0 -0
  623. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/config/presets/current.expert.json +0 -0
  624. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/config/presets/current.img.json +0 -0
  625. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/config/presets/current.langchain.json +0 -0
  626. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/config/presets/current.llama_index.json +0 -0
  627. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/config/presets/current.research.json +0 -0
  628. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/config/presets/current.vision.json +0 -0
  629. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/config/presets/dalle_white_cat.json +0 -0
  630. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/config/presets/joke_agent.json +0 -0
  631. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/config/presets/joke_expert.json +0 -0
  632. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/css/fix_windows.css +0 -0
  633. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/css/fix_windows.dark.css +0 -0
  634. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/css/fix_windows.light.css +0 -0
  635. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/css/markdown.css +0 -0
  636. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/css/markdown.dark.css +0 -0
  637. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/css/markdown.light.css +0 -0
  638. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/css/style.css +0 -0
  639. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/css/style.dark.css +0 -0
  640. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/css/style.light.css +0 -0
  641. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/css/web-blocks.css +0 -0
  642. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/css/web-blocks.dark.css +0 -0
  643. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/css/web-blocks.darkest.css +0 -0
  644. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/css/web-blocks.light.css +0 -0
  645. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/css/web-chatgpt.css +0 -0
  646. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/css/web-chatgpt.dark.css +0 -0
  647. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/css/web-chatgpt.darkest.css +0 -0
  648. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/css/web-chatgpt.light.css +0 -0
  649. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/css/web-chatgpt_wide.css +0 -0
  650. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/css/web-chatgpt_wide.dark.css +0 -0
  651. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/css/web-chatgpt_wide.darkest.css +0 -0
  652. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/css/web-chatgpt_wide.light.css +0 -0
  653. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/fonts/Lato/Lato-Black.ttf +0 -0
  654. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/fonts/Lato/Lato-BlackItalic.ttf +0 -0
  655. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/fonts/Lato/Lato-Bold.ttf +0 -0
  656. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/fonts/Lato/Lato-BoldItalic.ttf +0 -0
  657. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/fonts/Lato/Lato-Italic.ttf +0 -0
  658. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/fonts/Lato/Lato-Light.ttf +0 -0
  659. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/fonts/Lato/Lato-LightItalic.ttf +0 -0
  660. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/fonts/Lato/Lato-Regular.ttf +0 -0
  661. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/fonts/Lato/Lato-Thin.ttf +0 -0
  662. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/fonts/Lato/Lato-ThinItalic.ttf +0 -0
  663. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/fonts/Lato/OFL.txt +0 -0
  664. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/fonts/MonaspaceArgon/MonaspaceArgon-Bold.otf +0 -0
  665. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/fonts/MonaspaceArgon/MonaspaceArgon-BoldItalic.otf +0 -0
  666. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/fonts/MonaspaceArgon/MonaspaceArgon-Italic.otf +0 -0
  667. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/fonts/MonaspaceArgon/MonaspaceArgon-Regular.otf +0 -0
  668. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/fonts/MonaspaceKrypton/MonaspaceKrypton-Bold.otf +0 -0
  669. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/fonts/MonaspaceKrypton/MonaspaceKrypton-BoldItalic.otf +0 -0
  670. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/fonts/MonaspaceKrypton/MonaspaceKrypton-Italic.otf +0 -0
  671. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/fonts/MonaspaceKrypton/MonaspaceKrypton-Regular.otf +0 -0
  672. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/fonts/MonaspaceNeon/MonaspaceNeon-Bold.otf +0 -0
  673. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/fonts/MonaspaceNeon/MonaspaceNeon-BoldItalic.otf +0 -0
  674. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/fonts/MonaspaceNeon/MonaspaceNeon-Italic.otf +0 -0
  675. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/fonts/MonaspaceNeon/MonaspaceNeon-Regular.otf +0 -0
  676. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/fonts/MonaspaceRadon/MonaspaceRadon-Bold.otf +0 -0
  677. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/fonts/MonaspaceRadon/MonaspaceRadon-BoldItalic.otf +0 -0
  678. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/fonts/MonaspaceRadon/MonaspaceRadon-Italic.otf +0 -0
  679. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/fonts/MonaspaceRadon/MonaspaceRadon-Regular.otf +0 -0
  680. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/fonts/MonaspaceXenon/MonaspaceXenon-Bold.otf +0 -0
  681. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/fonts/MonaspaceXenon/MonaspaceXenon-BoldItalic.otf +0 -0
  682. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/fonts/MonaspaceXenon/MonaspaceXenon-Italic.otf +0 -0
  683. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/fonts/MonaspaceXenon/MonaspaceXenon-Regular.otf +0 -0
  684. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/fonts/SpaceMono/OFL.txt +0 -0
  685. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/fonts/SpaceMono/SpaceMono-Bold.ttf +0 -0
  686. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/fonts/SpaceMono/SpaceMono-BoldItalic.ttf +0 -0
  687. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/fonts/SpaceMono/SpaceMono-Italic.ttf +0 -0
  688. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/fonts/SpaceMono/SpaceMono-Regular.ttf +0 -0
  689. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/icon.ico +0 -0
  690. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/icon.png +0 -0
  691. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/icon_tray_busy.ico +0 -0
  692. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/icon_tray_error.ico +0 -0
  693. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/icon_tray_idle.ico +0 -0
  694. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/icon_web.ico +0 -0
  695. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/icon_web.png +0 -0
  696. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/icons/abc.svg +0 -0
  697. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/icons/accessibility.svg +0 -0
  698. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/icons/add.svg +0 -0
  699. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/icons/add_circle.svg +0 -0
  700. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/icons/add_folder.svg +0 -0
  701. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/icons/add_library.svg +0 -0
  702. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/icons/alarm.svg +0 -0
  703. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/icons/apps.svg +0 -0
  704. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/icons/asterisk.svg +0 -0
  705. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/icons/attachment.svg +0 -0
  706. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/icons/attachments.svg +0 -0
  707. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/icons/back.svg +0 -0
  708. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/icons/backspace.svg +0 -0
  709. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/icons/block.svg +0 -0
  710. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/icons/bookmark.svg +0 -0
  711. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/icons/brush.svg +0 -0
  712. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/icons/build.svg +0 -0
  713. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/icons/calendar.svg +0 -0
  714. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/icons/camera.svg +0 -0
  715. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/icons/chat/audio.png +0 -0
  716. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/icons/chat/collapse.png +0 -0
  717. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/icons/chat/copy.png +0 -0
  718. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/icons/chat/delete.png +0 -0
  719. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/icons/chat/edit.png +0 -0
  720. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/icons/chat/join.png +0 -0
  721. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/icons/chat/preview.png +0 -0
  722. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/icons/chat/reload.png +0 -0
  723. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/icons/chat/run.png +0 -0
  724. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/icons/chat.svg +0 -0
  725. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/icons/check.svg +0 -0
  726. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/icons/check_circle.svg +0 -0
  727. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/icons/checklist.svg +0 -0
  728. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/icons/circle.svg +0 -0
  729. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/icons/clear.svg +0 -0
  730. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/icons/clock.svg +0 -0
  731. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/icons/close.svg +0 -0
  732. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/icons/close_circle.svg +0 -0
  733. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/icons/code.svg +0 -0
  734. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/icons/collapse.svg +0 -0
  735. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/icons/computer.svg +0 -0
  736. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/icons/copy.svg +0 -0
  737. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/icons/crop.svg +0 -0
  738. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/icons/cursor.png +0 -0
  739. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/icons/cut.svg +0 -0
  740. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/icons/db.svg +0 -0
  741. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/icons/delete.svg +0 -0
  742. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/icons/done.svg +0 -0
  743. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/icons/download.svg +0 -0
  744. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/icons/draft.svg +0 -0
  745. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/icons/drag.svg +0 -0
  746. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/icons/edit.svg +0 -0
  747. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/icons/emergency.svg +0 -0
  748. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/icons/equalizer.svg +0 -0
  749. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/icons/error.svg +0 -0
  750. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/icons/event_available.svg +0 -0
  751. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/icons/expand.svg +0 -0
  752. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/icons/fast_forward.svg +0 -0
  753. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/icons/fast_rewind.svg +0 -0
  754. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/icons/favorite.svg +0 -0
  755. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/icons/folder.svg +0 -0
  756. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/icons/folder_filled.svg +0 -0
  757. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/icons/forward.svg +0 -0
  758. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/icons/full.svg +0 -0
  759. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/icons/fullscreen.svg +0 -0
  760. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/icons/grid.svg +0 -0
  761. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/icons/hearing.svg +0 -0
  762. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/icons/help.svg +0 -0
  763. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/icons/history.svg +0 -0
  764. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/icons/home.svg +0 -0
  765. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/icons/home_filled.svg +0 -0
  766. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/icons/image.svg +0 -0
  767. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/icons/info.svg +0 -0
  768. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/icons/input.svg +0 -0
  769. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/icons/key.svg +0 -0
  770. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/icons/keyboard.svg +0 -0
  771. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/icons/language.svg +0 -0
  772. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/icons/list.svg +0 -0
  773. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/icons/lock.svg +0 -0
  774. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/icons/logout.svg +0 -0
  775. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/icons/map.svg +0 -0
  776. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/icons/memory.svg +0 -0
  777. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/icons/menu.svg +0 -0
  778. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/icons/mic.svg +0 -0
  779. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/icons/mic_off.svg +0 -0
  780. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/icons/more_horizontal.svg +0 -0
  781. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/icons/mute.svg +0 -0
  782. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/icons/open_tab.svg +0 -0
  783. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/icons/palette.svg +0 -0
  784. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/icons/paste.svg +0 -0
  785. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/icons/pause.svg +0 -0
  786. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/icons/pause_circle.svg +0 -0
  787. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/icons/photos.svg +0 -0
  788. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/icons/pin.svg +0 -0
  789. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/icons/play.svg +0 -0
  790. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/icons/play_pause.svg +0 -0
  791. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/icons/playlist_add.svg +0 -0
  792. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/icons/power.svg +0 -0
  793. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/icons/print.svg +0 -0
  794. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/icons/public_filled.svg +0 -0
  795. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/icons/redo.svg +0 -0
  796. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/icons/reload.svg +0 -0
  797. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/icons/repeat.svg +0 -0
  798. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/icons/replay.svg +0 -0
  799. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/icons/resize.svg +0 -0
  800. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/icons/robot.svg +0 -0
  801. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/icons/router.svg +0 -0
  802. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/icons/save.svg +0 -0
  803. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/icons/schedule.svg +0 -0
  804. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/icons/screenshot.svg +0 -0
  805. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/icons/search.svg +0 -0
  806. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/icons/security.svg +0 -0
  807. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/icons/sensors.svg +0 -0
  808. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/icons/settings.svg +0 -0
  809. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/icons/settings_filled.svg +0 -0
  810. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/icons/share.svg +0 -0
  811. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/icons/shedule.svg +0 -0
  812. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/icons/sort.svg +0 -0
  813. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/icons/split_screen.svg +0 -0
  814. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/icons/stack.svg +0 -0
  815. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/icons/stacks.svg +0 -0
  816. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/icons/star.svg +0 -0
  817. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/icons/stop.svg +0 -0
  818. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/icons/stop_circle.svg +0 -0
  819. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/icons/sync.svg +0 -0
  820. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/icons/tag.svg +0 -0
  821. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/icons/task.svg +0 -0
  822. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/icons/terminal.svg +0 -0
  823. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/icons/text.svg +0 -0
  824. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/icons/textfile.svg +0 -0
  825. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/icons/timer.svg +0 -0
  826. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/icons/today.svg +0 -0
  827. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/icons/tune.svg +0 -0
  828. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/icons/undo.svg +0 -0
  829. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/icons/update.svg +0 -0
  830. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/icons/updater.svg +0 -0
  831. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/icons/upload.svg +0 -0
  832. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/icons/video.svg +0 -0
  833. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/icons/view.svg +0 -0
  834. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/icons/voice.svg +0 -0
  835. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/icons/volume.svg +0 -0
  836. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/icons/warning.svg +0 -0
  837. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/icons/webcam.svg +0 -0
  838. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/icons/webcam_off.svg +0 -0
  839. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/icons/width.svg +0 -0
  840. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/icons/window.svg +0 -0
  841. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/icons/work.svg +0 -0
  842. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/icons/zoom_in.svg +0 -0
  843. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/icons/zoom_out.svg +0 -0
  844. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/DIGESTS.md +0 -0
  845. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/LICENSE +0 -0
  846. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/README.md +0 -0
  847. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/core.js +0 -0
  848. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/core.min.js +0 -0
  849. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/highlight.js +0 -0
  850. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/highlight.min.js +0 -0
  851. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/1c.js +0 -0
  852. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/1c.min.js +0 -0
  853. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/abnf.js +0 -0
  854. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/abnf.min.js +0 -0
  855. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/accesslog.js +0 -0
  856. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/accesslog.min.js +0 -0
  857. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/actionscript.js +0 -0
  858. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/actionscript.min.js +0 -0
  859. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/ada.js +0 -0
  860. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/ada.min.js +0 -0
  861. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/angelscript.js +0 -0
  862. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/angelscript.min.js +0 -0
  863. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/apache.js +0 -0
  864. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/apache.min.js +0 -0
  865. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/applescript.js +0 -0
  866. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/applescript.min.js +0 -0
  867. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/arcade.js +0 -0
  868. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/arcade.min.js +0 -0
  869. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/arduino.js +0 -0
  870. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/arduino.min.js +0 -0
  871. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/armasm.js +0 -0
  872. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/armasm.min.js +0 -0
  873. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/asciidoc.js +0 -0
  874. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/asciidoc.min.js +0 -0
  875. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/aspectj.js +0 -0
  876. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/aspectj.min.js +0 -0
  877. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/autohotkey.js +0 -0
  878. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/autohotkey.min.js +0 -0
  879. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/autoit.js +0 -0
  880. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/autoit.min.js +0 -0
  881. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/avrasm.js +0 -0
  882. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/avrasm.min.js +0 -0
  883. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/awk.js +0 -0
  884. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/awk.min.js +0 -0
  885. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/axapta.js +0 -0
  886. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/axapta.min.js +0 -0
  887. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/bash.js +0 -0
  888. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/bash.min.js +0 -0
  889. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/basic.js +0 -0
  890. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/basic.min.js +0 -0
  891. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/bnf.js +0 -0
  892. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/bnf.min.js +0 -0
  893. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/brainfuck.js +0 -0
  894. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/brainfuck.min.js +0 -0
  895. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/c.js +0 -0
  896. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/c.min.js +0 -0
  897. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/cal.js +0 -0
  898. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/cal.min.js +0 -0
  899. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/capnproto.js +0 -0
  900. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/capnproto.min.js +0 -0
  901. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/ceylon.js +0 -0
  902. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/ceylon.min.js +0 -0
  903. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/clean.js +0 -0
  904. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/clean.min.js +0 -0
  905. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/clojure-repl.js +0 -0
  906. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/clojure-repl.min.js +0 -0
  907. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/clojure.js +0 -0
  908. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/clojure.min.js +0 -0
  909. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/cmake.js +0 -0
  910. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/cmake.min.js +0 -0
  911. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/coffeescript.js +0 -0
  912. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/coffeescript.min.js +0 -0
  913. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/coq.js +0 -0
  914. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/coq.min.js +0 -0
  915. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/cos.js +0 -0
  916. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/cos.min.js +0 -0
  917. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/cpp.js +0 -0
  918. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/cpp.min.js +0 -0
  919. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/crmsh.js +0 -0
  920. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/crmsh.min.js +0 -0
  921. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/crystal.js +0 -0
  922. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/crystal.min.js +0 -0
  923. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/csharp.js +0 -0
  924. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/csharp.min.js +0 -0
  925. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/csp.js +0 -0
  926. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/csp.min.js +0 -0
  927. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/css.js +0 -0
  928. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/css.min.js +0 -0
  929. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/d.js +0 -0
  930. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/d.min.js +0 -0
  931. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/dart.js +0 -0
  932. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/dart.min.js +0 -0
  933. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/delphi.js +0 -0
  934. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/delphi.min.js +0 -0
  935. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/diff.js +0 -0
  936. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/diff.min.js +0 -0
  937. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/django.js +0 -0
  938. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/django.min.js +0 -0
  939. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/dns.js +0 -0
  940. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/dns.min.js +0 -0
  941. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/dockerfile.js +0 -0
  942. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/dockerfile.min.js +0 -0
  943. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/dos.js +0 -0
  944. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/dos.min.js +0 -0
  945. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/dsconfig.js +0 -0
  946. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/dsconfig.min.js +0 -0
  947. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/dts.js +0 -0
  948. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/dts.min.js +0 -0
  949. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/dust.js +0 -0
  950. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/dust.min.js +0 -0
  951. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/ebnf.js +0 -0
  952. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/ebnf.min.js +0 -0
  953. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/elixir.js +0 -0
  954. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/elixir.min.js +0 -0
  955. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/elm.js +0 -0
  956. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/elm.min.js +0 -0
  957. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/erb.js +0 -0
  958. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/erb.min.js +0 -0
  959. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/erlang-repl.js +0 -0
  960. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/erlang-repl.min.js +0 -0
  961. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/erlang.js +0 -0
  962. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/erlang.min.js +0 -0
  963. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/excel.js +0 -0
  964. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/excel.min.js +0 -0
  965. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/fix.js +0 -0
  966. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/fix.min.js +0 -0
  967. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/flix.js +0 -0
  968. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/flix.min.js +0 -0
  969. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/fortran.js +0 -0
  970. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/fortran.min.js +0 -0
  971. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/fsharp.js +0 -0
  972. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/fsharp.min.js +0 -0
  973. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/gams.js +0 -0
  974. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/gams.min.js +0 -0
  975. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/gauss.js +0 -0
  976. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/gauss.min.js +0 -0
  977. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/gcode.js +0 -0
  978. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/gcode.min.js +0 -0
  979. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/gherkin.js +0 -0
  980. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/gherkin.min.js +0 -0
  981. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/glsl.js +0 -0
  982. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/glsl.min.js +0 -0
  983. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/gml.js +0 -0
  984. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/gml.min.js +0 -0
  985. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/go.js +0 -0
  986. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/go.min.js +0 -0
  987. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/golo.js +0 -0
  988. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/golo.min.js +0 -0
  989. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/gradle.js +0 -0
  990. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/gradle.min.js +0 -0
  991. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/graphql.js +0 -0
  992. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/graphql.min.js +0 -0
  993. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/groovy.js +0 -0
  994. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/groovy.min.js +0 -0
  995. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/haml.js +0 -0
  996. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/haml.min.js +0 -0
  997. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/handlebars.js +0 -0
  998. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/handlebars.min.js +0 -0
  999. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/haskell.js +0 -0
  1000. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/haskell.min.js +0 -0
  1001. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/haxe.js +0 -0
  1002. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/haxe.min.js +0 -0
  1003. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/hsp.js +0 -0
  1004. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/hsp.min.js +0 -0
  1005. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/http.js +0 -0
  1006. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/http.min.js +0 -0
  1007. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/hy.js +0 -0
  1008. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/hy.min.js +0 -0
  1009. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/inform7.js +0 -0
  1010. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/inform7.min.js +0 -0
  1011. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/ini.js +0 -0
  1012. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/ini.min.js +0 -0
  1013. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/irpf90.js +0 -0
  1014. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/irpf90.min.js +0 -0
  1015. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/isbl.js +0 -0
  1016. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/isbl.min.js +0 -0
  1017. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/java.js +0 -0
  1018. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/java.min.js +0 -0
  1019. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/javascript.js +0 -0
  1020. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/javascript.min.js +0 -0
  1021. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/jboss-cli.js +0 -0
  1022. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/jboss-cli.min.js +0 -0
  1023. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/json.js +0 -0
  1024. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/json.min.js +0 -0
  1025. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/julia-repl.js +0 -0
  1026. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/julia-repl.min.js +0 -0
  1027. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/julia.js +0 -0
  1028. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/julia.min.js +0 -0
  1029. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/kotlin.js +0 -0
  1030. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/kotlin.min.js +0 -0
  1031. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/lasso.js +0 -0
  1032. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/lasso.min.js +0 -0
  1033. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/latex.js +0 -0
  1034. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/latex.min.js +0 -0
  1035. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/ldif.js +0 -0
  1036. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/ldif.min.js +0 -0
  1037. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/leaf.js +0 -0
  1038. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/leaf.min.js +0 -0
  1039. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/less.js +0 -0
  1040. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/less.min.js +0 -0
  1041. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/lisp.js +0 -0
  1042. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/lisp.min.js +0 -0
  1043. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/livecodeserver.js +0 -0
  1044. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/livecodeserver.min.js +0 -0
  1045. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/livescript.js +0 -0
  1046. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/livescript.min.js +0 -0
  1047. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/llvm.js +0 -0
  1048. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/llvm.min.js +0 -0
  1049. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/lsl.js +0 -0
  1050. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/lsl.min.js +0 -0
  1051. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/lua.js +0 -0
  1052. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/lua.min.js +0 -0
  1053. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/makefile.js +0 -0
  1054. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/makefile.min.js +0 -0
  1055. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/markdown.js +0 -0
  1056. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/markdown.min.js +0 -0
  1057. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/mathematica.js +0 -0
  1058. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/mathematica.min.js +0 -0
  1059. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/matlab.js +0 -0
  1060. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/matlab.min.js +0 -0
  1061. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/maxima.js +0 -0
  1062. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/maxima.min.js +0 -0
  1063. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/mel.js +0 -0
  1064. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/mel.min.js +0 -0
  1065. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/mercury.js +0 -0
  1066. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/mercury.min.js +0 -0
  1067. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/mipsasm.js +0 -0
  1068. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/mipsasm.min.js +0 -0
  1069. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/mizar.js +0 -0
  1070. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/mizar.min.js +0 -0
  1071. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/mojolicious.js +0 -0
  1072. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/mojolicious.min.js +0 -0
  1073. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/monkey.js +0 -0
  1074. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/monkey.min.js +0 -0
  1075. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/moonscript.js +0 -0
  1076. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/moonscript.min.js +0 -0
  1077. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/n1ql.js +0 -0
  1078. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/n1ql.min.js +0 -0
  1079. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/nestedtext.js +0 -0
  1080. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/nestedtext.min.js +0 -0
  1081. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/nginx.js +0 -0
  1082. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/nginx.min.js +0 -0
  1083. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/nim.js +0 -0
  1084. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/nim.min.js +0 -0
  1085. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/nix.js +0 -0
  1086. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/nix.min.js +0 -0
  1087. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/node-repl.js +0 -0
  1088. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/node-repl.min.js +0 -0
  1089. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/nsis.js +0 -0
  1090. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/nsis.min.js +0 -0
  1091. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/objectivec.js +0 -0
  1092. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/objectivec.min.js +0 -0
  1093. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/ocaml.js +0 -0
  1094. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/ocaml.min.js +0 -0
  1095. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/openscad.js +0 -0
  1096. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/openscad.min.js +0 -0
  1097. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/oxygene.js +0 -0
  1098. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/oxygene.min.js +0 -0
  1099. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/parser3.js +0 -0
  1100. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/parser3.min.js +0 -0
  1101. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/perl.js +0 -0
  1102. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/perl.min.js +0 -0
  1103. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/pf.js +0 -0
  1104. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/pf.min.js +0 -0
  1105. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/pgsql.js +0 -0
  1106. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/pgsql.min.js +0 -0
  1107. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/php-template.js +0 -0
  1108. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/php-template.min.js +0 -0
  1109. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/php.js +0 -0
  1110. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/php.min.js +0 -0
  1111. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/plaintext.js +0 -0
  1112. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/plaintext.min.js +0 -0
  1113. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/pony.js +0 -0
  1114. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/pony.min.js +0 -0
  1115. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/powershell.js +0 -0
  1116. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/powershell.min.js +0 -0
  1117. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/processing.js +0 -0
  1118. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/processing.min.js +0 -0
  1119. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/profile.js +0 -0
  1120. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/profile.min.js +0 -0
  1121. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/prolog.js +0 -0
  1122. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/prolog.min.js +0 -0
  1123. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/properties.js +0 -0
  1124. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/properties.min.js +0 -0
  1125. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/protobuf.js +0 -0
  1126. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/protobuf.min.js +0 -0
  1127. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/puppet.js +0 -0
  1128. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/puppet.min.js +0 -0
  1129. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/purebasic.js +0 -0
  1130. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/purebasic.min.js +0 -0
  1131. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/python-repl.js +0 -0
  1132. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/python-repl.min.js +0 -0
  1133. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/python.js +0 -0
  1134. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/python.min.js +0 -0
  1135. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/q.js +0 -0
  1136. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/q.min.js +0 -0
  1137. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/qml.js +0 -0
  1138. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/qml.min.js +0 -0
  1139. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/r.js +0 -0
  1140. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/r.min.js +0 -0
  1141. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/reasonml.js +0 -0
  1142. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/reasonml.min.js +0 -0
  1143. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/rib.js +0 -0
  1144. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/rib.min.js +0 -0
  1145. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/roboconf.js +0 -0
  1146. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/roboconf.min.js +0 -0
  1147. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/routeros.js +0 -0
  1148. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/routeros.min.js +0 -0
  1149. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/rsl.js +0 -0
  1150. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/rsl.min.js +0 -0
  1151. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/ruby.js +0 -0
  1152. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/ruby.min.js +0 -0
  1153. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/ruleslanguage.js +0 -0
  1154. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/ruleslanguage.min.js +0 -0
  1155. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/rust.js +0 -0
  1156. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/rust.min.js +0 -0
  1157. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/sas.js +0 -0
  1158. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/sas.min.js +0 -0
  1159. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/scala.js +0 -0
  1160. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/scala.min.js +0 -0
  1161. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/scheme.js +0 -0
  1162. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/scheme.min.js +0 -0
  1163. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/scilab.js +0 -0
  1164. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/scilab.min.js +0 -0
  1165. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/scss.js +0 -0
  1166. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/scss.min.js +0 -0
  1167. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/shell.js +0 -0
  1168. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/shell.min.js +0 -0
  1169. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/smali.js +0 -0
  1170. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/smali.min.js +0 -0
  1171. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/smalltalk.js +0 -0
  1172. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/smalltalk.min.js +0 -0
  1173. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/sml.js +0 -0
  1174. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/sml.min.js +0 -0
  1175. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/sqf.js +0 -0
  1176. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/sqf.min.js +0 -0
  1177. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/sql.js +0 -0
  1178. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/sql.min.js +0 -0
  1179. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/stan.js +0 -0
  1180. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/stan.min.js +0 -0
  1181. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/stata.js +0 -0
  1182. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/stata.min.js +0 -0
  1183. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/step21.js +0 -0
  1184. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/step21.min.js +0 -0
  1185. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/stylus.js +0 -0
  1186. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/stylus.min.js +0 -0
  1187. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/subunit.js +0 -0
  1188. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/subunit.min.js +0 -0
  1189. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/swift.js +0 -0
  1190. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/swift.min.js +0 -0
  1191. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/taggerscript.js +0 -0
  1192. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/taggerscript.min.js +0 -0
  1193. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/tap.js +0 -0
  1194. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/tap.min.js +0 -0
  1195. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/tcl.js +0 -0
  1196. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/tcl.min.js +0 -0
  1197. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/thrift.js +0 -0
  1198. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/thrift.min.js +0 -0
  1199. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/tp.js +0 -0
  1200. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/tp.min.js +0 -0
  1201. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/twig.js +0 -0
  1202. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/twig.min.js +0 -0
  1203. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/typescript.js +0 -0
  1204. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/typescript.min.js +0 -0
  1205. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/vala.js +0 -0
  1206. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/vala.min.js +0 -0
  1207. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/vbnet.js +0 -0
  1208. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/vbnet.min.js +0 -0
  1209. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/vbscript-html.js +0 -0
  1210. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/vbscript-html.min.js +0 -0
  1211. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/vbscript.js +0 -0
  1212. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/vbscript.min.js +0 -0
  1213. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/verilog.js +0 -0
  1214. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/verilog.min.js +0 -0
  1215. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/vhdl.js +0 -0
  1216. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/vhdl.min.js +0 -0
  1217. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/vim.js +0 -0
  1218. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/vim.min.js +0 -0
  1219. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/wasm.js +0 -0
  1220. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/wasm.min.js +0 -0
  1221. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/wren.js +0 -0
  1222. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/wren.min.js +0 -0
  1223. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/x86asm.js +0 -0
  1224. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/x86asm.min.js +0 -0
  1225. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/xl.js +0 -0
  1226. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/xl.min.js +0 -0
  1227. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/xml.js +0 -0
  1228. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/xml.min.js +0 -0
  1229. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/xquery.js +0 -0
  1230. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/xquery.min.js +0 -0
  1231. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/yaml.js +0 -0
  1232. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/yaml.min.js +0 -0
  1233. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/zephir.js +0 -0
  1234. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/languages/zephir.min.js +0 -0
  1235. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/es/package.json +0 -0
  1236. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/highlight.js +0 -0
  1237. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/highlight.min.js +0 -0
  1238. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/1c.js +0 -0
  1239. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/1c.min.js +0 -0
  1240. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/abnf.js +0 -0
  1241. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/abnf.min.js +0 -0
  1242. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/accesslog.js +0 -0
  1243. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/accesslog.min.js +0 -0
  1244. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/actionscript.js +0 -0
  1245. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/actionscript.min.js +0 -0
  1246. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/ada.js +0 -0
  1247. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/ada.min.js +0 -0
  1248. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/angelscript.js +0 -0
  1249. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/angelscript.min.js +0 -0
  1250. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/apache.js +0 -0
  1251. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/apache.min.js +0 -0
  1252. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/applescript.js +0 -0
  1253. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/applescript.min.js +0 -0
  1254. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/arcade.js +0 -0
  1255. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/arcade.min.js +0 -0
  1256. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/arduino.js +0 -0
  1257. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/arduino.min.js +0 -0
  1258. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/armasm.js +0 -0
  1259. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/armasm.min.js +0 -0
  1260. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/asciidoc.js +0 -0
  1261. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/asciidoc.min.js +0 -0
  1262. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/aspectj.js +0 -0
  1263. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/aspectj.min.js +0 -0
  1264. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/autohotkey.js +0 -0
  1265. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/autohotkey.min.js +0 -0
  1266. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/autoit.js +0 -0
  1267. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/autoit.min.js +0 -0
  1268. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/avrasm.js +0 -0
  1269. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/avrasm.min.js +0 -0
  1270. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/awk.js +0 -0
  1271. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/awk.min.js +0 -0
  1272. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/axapta.js +0 -0
  1273. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/axapta.min.js +0 -0
  1274. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/bash.js +0 -0
  1275. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/bash.min.js +0 -0
  1276. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/basic.js +0 -0
  1277. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/basic.min.js +0 -0
  1278. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/bnf.js +0 -0
  1279. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/bnf.min.js +0 -0
  1280. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/brainfuck.js +0 -0
  1281. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/brainfuck.min.js +0 -0
  1282. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/c.js +0 -0
  1283. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/c.min.js +0 -0
  1284. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/cal.js +0 -0
  1285. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/cal.min.js +0 -0
  1286. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/capnproto.js +0 -0
  1287. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/capnproto.min.js +0 -0
  1288. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/ceylon.js +0 -0
  1289. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/ceylon.min.js +0 -0
  1290. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/clean.js +0 -0
  1291. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/clean.min.js +0 -0
  1292. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/clojure-repl.js +0 -0
  1293. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/clojure-repl.min.js +0 -0
  1294. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/clojure.js +0 -0
  1295. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/clojure.min.js +0 -0
  1296. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/cmake.js +0 -0
  1297. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/cmake.min.js +0 -0
  1298. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/coffeescript.js +0 -0
  1299. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/coffeescript.min.js +0 -0
  1300. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/coq.js +0 -0
  1301. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/coq.min.js +0 -0
  1302. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/cos.js +0 -0
  1303. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/cos.min.js +0 -0
  1304. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/cpp.js +0 -0
  1305. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/cpp.min.js +0 -0
  1306. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/crmsh.js +0 -0
  1307. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/crmsh.min.js +0 -0
  1308. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/crystal.js +0 -0
  1309. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/crystal.min.js +0 -0
  1310. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/csharp.js +0 -0
  1311. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/csharp.min.js +0 -0
  1312. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/csp.js +0 -0
  1313. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/csp.min.js +0 -0
  1314. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/css.js +0 -0
  1315. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/css.min.js +0 -0
  1316. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/d.js +0 -0
  1317. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/d.min.js +0 -0
  1318. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/dart.js +0 -0
  1319. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/dart.min.js +0 -0
  1320. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/delphi.js +0 -0
  1321. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/delphi.min.js +0 -0
  1322. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/diff.js +0 -0
  1323. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/diff.min.js +0 -0
  1324. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/django.js +0 -0
  1325. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/django.min.js +0 -0
  1326. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/dns.js +0 -0
  1327. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/dns.min.js +0 -0
  1328. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/dockerfile.js +0 -0
  1329. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/dockerfile.min.js +0 -0
  1330. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/dos.js +0 -0
  1331. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/dos.min.js +0 -0
  1332. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/dsconfig.js +0 -0
  1333. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/dsconfig.min.js +0 -0
  1334. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/dts.js +0 -0
  1335. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/dts.min.js +0 -0
  1336. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/dust.js +0 -0
  1337. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/dust.min.js +0 -0
  1338. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/ebnf.js +0 -0
  1339. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/ebnf.min.js +0 -0
  1340. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/elixir.js +0 -0
  1341. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/elixir.min.js +0 -0
  1342. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/elm.js +0 -0
  1343. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/elm.min.js +0 -0
  1344. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/erb.js +0 -0
  1345. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/erb.min.js +0 -0
  1346. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/erlang-repl.js +0 -0
  1347. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/erlang-repl.min.js +0 -0
  1348. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/erlang.js +0 -0
  1349. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/erlang.min.js +0 -0
  1350. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/excel.js +0 -0
  1351. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/excel.min.js +0 -0
  1352. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/fix.js +0 -0
  1353. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/fix.min.js +0 -0
  1354. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/flix.js +0 -0
  1355. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/flix.min.js +0 -0
  1356. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/fortran.js +0 -0
  1357. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/fortran.min.js +0 -0
  1358. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/fsharp.js +0 -0
  1359. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/fsharp.min.js +0 -0
  1360. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/gams.js +0 -0
  1361. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/gams.min.js +0 -0
  1362. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/gauss.js +0 -0
  1363. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/gauss.min.js +0 -0
  1364. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/gcode.js +0 -0
  1365. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/gcode.min.js +0 -0
  1366. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/gherkin.js +0 -0
  1367. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/gherkin.min.js +0 -0
  1368. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/glsl.js +0 -0
  1369. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/glsl.min.js +0 -0
  1370. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/gml.js +0 -0
  1371. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/gml.min.js +0 -0
  1372. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/go.js +0 -0
  1373. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/go.min.js +0 -0
  1374. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/golo.js +0 -0
  1375. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/golo.min.js +0 -0
  1376. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/gradle.js +0 -0
  1377. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/gradle.min.js +0 -0
  1378. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/graphql.js +0 -0
  1379. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/graphql.min.js +0 -0
  1380. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/groovy.js +0 -0
  1381. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/groovy.min.js +0 -0
  1382. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/haml.js +0 -0
  1383. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/haml.min.js +0 -0
  1384. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/handlebars.js +0 -0
  1385. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/handlebars.min.js +0 -0
  1386. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/haskell.js +0 -0
  1387. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/haskell.min.js +0 -0
  1388. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/haxe.js +0 -0
  1389. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/haxe.min.js +0 -0
  1390. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/hsp.js +0 -0
  1391. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/hsp.min.js +0 -0
  1392. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/http.js +0 -0
  1393. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/http.min.js +0 -0
  1394. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/hy.js +0 -0
  1395. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/hy.min.js +0 -0
  1396. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/inform7.js +0 -0
  1397. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/inform7.min.js +0 -0
  1398. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/ini.js +0 -0
  1399. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/ini.min.js +0 -0
  1400. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/irpf90.js +0 -0
  1401. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/irpf90.min.js +0 -0
  1402. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/isbl.js +0 -0
  1403. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/isbl.min.js +0 -0
  1404. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/java.js +0 -0
  1405. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/java.min.js +0 -0
  1406. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/javascript.js +0 -0
  1407. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/javascript.min.js +0 -0
  1408. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/jboss-cli.js +0 -0
  1409. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/jboss-cli.min.js +0 -0
  1410. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/json.js +0 -0
  1411. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/json.min.js +0 -0
  1412. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/julia-repl.js +0 -0
  1413. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/julia-repl.min.js +0 -0
  1414. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/julia.js +0 -0
  1415. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/julia.min.js +0 -0
  1416. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/kotlin.js +0 -0
  1417. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/kotlin.min.js +0 -0
  1418. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/lasso.js +0 -0
  1419. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/lasso.min.js +0 -0
  1420. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/latex.js +0 -0
  1421. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/latex.min.js +0 -0
  1422. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/ldif.js +0 -0
  1423. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/ldif.min.js +0 -0
  1424. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/leaf.js +0 -0
  1425. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/leaf.min.js +0 -0
  1426. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/less.js +0 -0
  1427. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/less.min.js +0 -0
  1428. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/lisp.js +0 -0
  1429. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/lisp.min.js +0 -0
  1430. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/livecodeserver.js +0 -0
  1431. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/livecodeserver.min.js +0 -0
  1432. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/livescript.js +0 -0
  1433. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/livescript.min.js +0 -0
  1434. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/llvm.js +0 -0
  1435. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/llvm.min.js +0 -0
  1436. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/lsl.js +0 -0
  1437. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/lsl.min.js +0 -0
  1438. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/lua.js +0 -0
  1439. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/lua.min.js +0 -0
  1440. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/makefile.js +0 -0
  1441. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/makefile.min.js +0 -0
  1442. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/markdown.js +0 -0
  1443. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/markdown.min.js +0 -0
  1444. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/mathematica.js +0 -0
  1445. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/mathematica.min.js +0 -0
  1446. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/matlab.js +0 -0
  1447. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/matlab.min.js +0 -0
  1448. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/maxima.js +0 -0
  1449. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/maxima.min.js +0 -0
  1450. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/mel.js +0 -0
  1451. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/mel.min.js +0 -0
  1452. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/mercury.js +0 -0
  1453. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/mercury.min.js +0 -0
  1454. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/mipsasm.js +0 -0
  1455. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/mipsasm.min.js +0 -0
  1456. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/mizar.js +0 -0
  1457. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/mizar.min.js +0 -0
  1458. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/mojolicious.js +0 -0
  1459. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/mojolicious.min.js +0 -0
  1460. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/monkey.js +0 -0
  1461. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/monkey.min.js +0 -0
  1462. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/moonscript.js +0 -0
  1463. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/moonscript.min.js +0 -0
  1464. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/n1ql.js +0 -0
  1465. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/n1ql.min.js +0 -0
  1466. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/nestedtext.js +0 -0
  1467. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/nestedtext.min.js +0 -0
  1468. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/nginx.js +0 -0
  1469. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/nginx.min.js +0 -0
  1470. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/nim.js +0 -0
  1471. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/nim.min.js +0 -0
  1472. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/nix.js +0 -0
  1473. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/nix.min.js +0 -0
  1474. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/node-repl.js +0 -0
  1475. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/node-repl.min.js +0 -0
  1476. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/nsis.js +0 -0
  1477. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/nsis.min.js +0 -0
  1478. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/objectivec.js +0 -0
  1479. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/objectivec.min.js +0 -0
  1480. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/ocaml.js +0 -0
  1481. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/ocaml.min.js +0 -0
  1482. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/openscad.js +0 -0
  1483. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/openscad.min.js +0 -0
  1484. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/oxygene.js +0 -0
  1485. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/oxygene.min.js +0 -0
  1486. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/parser3.js +0 -0
  1487. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/parser3.min.js +0 -0
  1488. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/perl.js +0 -0
  1489. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/perl.min.js +0 -0
  1490. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/pf.js +0 -0
  1491. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/pf.min.js +0 -0
  1492. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/pgsql.js +0 -0
  1493. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/pgsql.min.js +0 -0
  1494. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/php-template.js +0 -0
  1495. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/php-template.min.js +0 -0
  1496. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/php.js +0 -0
  1497. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/php.min.js +0 -0
  1498. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/plaintext.js +0 -0
  1499. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/plaintext.min.js +0 -0
  1500. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/pony.js +0 -0
  1501. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/pony.min.js +0 -0
  1502. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/powershell.js +0 -0
  1503. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/powershell.min.js +0 -0
  1504. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/processing.js +0 -0
  1505. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/processing.min.js +0 -0
  1506. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/profile.js +0 -0
  1507. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/profile.min.js +0 -0
  1508. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/prolog.js +0 -0
  1509. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/prolog.min.js +0 -0
  1510. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/properties.js +0 -0
  1511. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/properties.min.js +0 -0
  1512. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/protobuf.js +0 -0
  1513. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/protobuf.min.js +0 -0
  1514. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/puppet.js +0 -0
  1515. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/puppet.min.js +0 -0
  1516. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/purebasic.js +0 -0
  1517. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/purebasic.min.js +0 -0
  1518. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/python-repl.js +0 -0
  1519. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/python-repl.min.js +0 -0
  1520. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/python.js +0 -0
  1521. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/python.min.js +0 -0
  1522. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/q.js +0 -0
  1523. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/q.min.js +0 -0
  1524. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/qml.js +0 -0
  1525. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/qml.min.js +0 -0
  1526. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/r.js +0 -0
  1527. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/r.min.js +0 -0
  1528. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/reasonml.js +0 -0
  1529. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/reasonml.min.js +0 -0
  1530. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/rib.js +0 -0
  1531. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/rib.min.js +0 -0
  1532. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/roboconf.js +0 -0
  1533. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/roboconf.min.js +0 -0
  1534. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/routeros.js +0 -0
  1535. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/routeros.min.js +0 -0
  1536. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/rsl.js +0 -0
  1537. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/rsl.min.js +0 -0
  1538. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/ruby.js +0 -0
  1539. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/ruby.min.js +0 -0
  1540. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/ruleslanguage.js +0 -0
  1541. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/ruleslanguage.min.js +0 -0
  1542. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/rust.js +0 -0
  1543. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/rust.min.js +0 -0
  1544. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/sas.js +0 -0
  1545. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/sas.min.js +0 -0
  1546. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/scala.js +0 -0
  1547. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/scala.min.js +0 -0
  1548. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/scheme.js +0 -0
  1549. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/scheme.min.js +0 -0
  1550. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/scilab.js +0 -0
  1551. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/scilab.min.js +0 -0
  1552. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/scss.js +0 -0
  1553. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/scss.min.js +0 -0
  1554. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/shell.js +0 -0
  1555. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/shell.min.js +0 -0
  1556. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/smali.js +0 -0
  1557. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/smali.min.js +0 -0
  1558. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/smalltalk.js +0 -0
  1559. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/smalltalk.min.js +0 -0
  1560. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/sml.js +0 -0
  1561. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/sml.min.js +0 -0
  1562. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/sqf.js +0 -0
  1563. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/sqf.min.js +0 -0
  1564. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/sql.js +0 -0
  1565. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/sql.min.js +0 -0
  1566. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/stan.js +0 -0
  1567. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/stan.min.js +0 -0
  1568. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/stata.js +0 -0
  1569. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/stata.min.js +0 -0
  1570. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/step21.js +0 -0
  1571. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/step21.min.js +0 -0
  1572. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/stylus.js +0 -0
  1573. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/stylus.min.js +0 -0
  1574. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/subunit.js +0 -0
  1575. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/subunit.min.js +0 -0
  1576. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/swift.js +0 -0
  1577. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/swift.min.js +0 -0
  1578. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/taggerscript.js +0 -0
  1579. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/taggerscript.min.js +0 -0
  1580. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/tap.js +0 -0
  1581. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/tap.min.js +0 -0
  1582. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/tcl.js +0 -0
  1583. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/tcl.min.js +0 -0
  1584. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/thrift.js +0 -0
  1585. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/thrift.min.js +0 -0
  1586. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/tp.js +0 -0
  1587. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/tp.min.js +0 -0
  1588. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/twig.js +0 -0
  1589. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/twig.min.js +0 -0
  1590. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/typescript.js +0 -0
  1591. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/typescript.min.js +0 -0
  1592. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/vala.js +0 -0
  1593. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/vala.min.js +0 -0
  1594. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/vbnet.js +0 -0
  1595. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/vbnet.min.js +0 -0
  1596. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/vbscript-html.js +0 -0
  1597. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/vbscript-html.min.js +0 -0
  1598. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/vbscript.js +0 -0
  1599. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/vbscript.min.js +0 -0
  1600. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/verilog.js +0 -0
  1601. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/verilog.min.js +0 -0
  1602. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/vhdl.js +0 -0
  1603. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/vhdl.min.js +0 -0
  1604. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/vim.js +0 -0
  1605. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/vim.min.js +0 -0
  1606. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/wasm.js +0 -0
  1607. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/wasm.min.js +0 -0
  1608. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/wren.js +0 -0
  1609. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/wren.min.js +0 -0
  1610. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/x86asm.js +0 -0
  1611. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/x86asm.min.js +0 -0
  1612. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/xl.js +0 -0
  1613. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/xl.min.js +0 -0
  1614. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/xml.js +0 -0
  1615. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/xml.min.js +0 -0
  1616. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/xquery.js +0 -0
  1617. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/xquery.min.js +0 -0
  1618. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/yaml.js +0 -0
  1619. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/yaml.min.js +0 -0
  1620. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/zephir.js +0 -0
  1621. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/languages/zephir.min.js +0 -0
  1622. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/package.json +0 -0
  1623. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/styles/1c-light.css +0 -0
  1624. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/styles/1c-light.min.css +0 -0
  1625. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/styles/a11y-dark.css +0 -0
  1626. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/styles/a11y-dark.min.css +0 -0
  1627. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/styles/a11y-light.css +0 -0
  1628. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/styles/a11y-light.min.css +0 -0
  1629. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/styles/agate.css +0 -0
  1630. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/styles/agate.min.css +0 -0
  1631. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/styles/an-old-hope.css +0 -0
  1632. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/styles/an-old-hope.min.css +0 -0
  1633. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/styles/androidstudio.css +0 -0
  1634. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/styles/androidstudio.min.css +0 -0
  1635. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/styles/arduino-light.css +0 -0
  1636. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/styles/arduino-light.min.css +0 -0
  1637. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/styles/arta.css +0 -0
  1638. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/styles/arta.min.css +0 -0
  1639. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/styles/ascetic.css +0 -0
  1640. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/styles/ascetic.min.css +0 -0
  1641. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/styles/atom-one-dark-reasonable.css +0 -0
  1642. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/styles/atom-one-dark-reasonable.min.css +0 -0
  1643. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/styles/atom-one-dark.css +0 -0
  1644. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/styles/atom-one-dark.min.css +0 -0
  1645. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/styles/atom-one-light.css +0 -0
  1646. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/styles/atom-one-light.min.css +0 -0
  1647. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/styles/brown-paper.css +0 -0
  1648. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/styles/brown-paper.min.css +0 -0
  1649. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/styles/brown-papersq.png +0 -0
  1650. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/styles/codepen-embed.css +0 -0
  1651. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/styles/codepen-embed.min.css +0 -0
  1652. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/styles/codeschool.css +0 -0
  1653. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/styles/codeschool.min.css +0 -0
  1654. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/styles/color-brewer.css +0 -0
  1655. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/styles/color-brewer.min.css +0 -0
  1656. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/styles/darcula.css +0 -0
  1657. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/styles/darcula.min.css +0 -0
  1658. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/styles/dark.css +0 -0
  1659. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/styles/dark.min.css +0 -0
  1660. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/styles/default-dark.css +0 -0
  1661. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/styles/default-dark.min.css +0 -0
  1662. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/styles/default-light.css +0 -0
  1663. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/styles/default-light.min.css +0 -0
  1664. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/styles/default.css +0 -0
  1665. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/styles/default.min.css +0 -0
  1666. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/styles/devibeans.css +0 -0
  1667. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/styles/devibeans.min.css +0 -0
  1668. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/styles/docco.css +0 -0
  1669. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/styles/docco.min.css +0 -0
  1670. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/styles/far.css +0 -0
  1671. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/styles/far.min.css +0 -0
  1672. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/styles/felipec.css +0 -0
  1673. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/styles/felipec.min.css +0 -0
  1674. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/styles/foundation.css +0 -0
  1675. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/styles/foundation.min.css +0 -0
  1676. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/styles/github-dark-dimmed.css +0 -0
  1677. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/styles/github-dark-dimmed.min.css +0 -0
  1678. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/styles/github-dark.css +0 -0
  1679. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/styles/github-dark.min.css +0 -0
  1680. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/styles/github.css +0 -0
  1681. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/styles/github.min.css +0 -0
  1682. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/styles/gml.css +0 -0
  1683. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/styles/gml.min.css +0 -0
  1684. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/styles/googlecode.css +0 -0
  1685. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/styles/googlecode.min.css +0 -0
  1686. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/styles/gradient-dark.css +0 -0
  1687. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/styles/gradient-dark.min.css +0 -0
  1688. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/styles/gradient-light.css +0 -0
  1689. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/styles/gradient-light.min.css +0 -0
  1690. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/styles/grayscale.css +0 -0
  1691. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/styles/grayscale.min.css +0 -0
  1692. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/styles/hybrid.css +0 -0
  1693. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/styles/hybrid.min.css +0 -0
  1694. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/styles/idea.css +0 -0
  1695. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/styles/idea.min.css +0 -0
  1696. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/styles/intellij-light.css +0 -0
  1697. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/styles/intellij-light.min.css +0 -0
  1698. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/styles/ir-black.css +0 -0
  1699. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/styles/ir-black.min.css +0 -0
  1700. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/styles/isbl-editor-dark.css +0 -0
  1701. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/styles/isbl-editor-dark.min.css +0 -0
  1702. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/styles/isbl-editor-light.css +0 -0
  1703. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/styles/isbl-editor-light.min.css +0 -0
  1704. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/styles/kimbie-dark.css +0 -0
  1705. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/styles/kimbie-dark.min.css +0 -0
  1706. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/styles/kimbie-light.css +0 -0
  1707. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/styles/kimbie-light.min.css +0 -0
  1708. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/styles/lightfair.css +0 -0
  1709. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/styles/lightfair.min.css +0 -0
  1710. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/styles/lioshi.css +0 -0
  1711. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/styles/lioshi.min.css +0 -0
  1712. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/styles/magula.css +0 -0
  1713. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/styles/magula.min.css +0 -0
  1714. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/styles/material-darker.css +0 -0
  1715. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/styles/material-darker.min.css +0 -0
  1716. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/styles/material-lighter.css +0 -0
  1717. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/styles/material-lighter.min.css +0 -0
  1718. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/styles/material-palenight.css +0 -0
  1719. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/styles/material-palenight.min.css +0 -0
  1720. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/styles/material-vivid.css +0 -0
  1721. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/styles/material-vivid.min.css +0 -0
  1722. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/styles/material.css +0 -0
  1723. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/styles/material.min.css +0 -0
  1724. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/styles/mono-blue.css +0 -0
  1725. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/styles/mono-blue.min.css +0 -0
  1726. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/styles/monokai-sublime.css +0 -0
  1727. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/styles/monokai-sublime.min.css +0 -0
  1728. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/styles/monokai.css +0 -0
  1729. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/styles/monokai.min.css +0 -0
  1730. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/styles/night-owl.css +0 -0
  1731. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/styles/night-owl.min.css +0 -0
  1732. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/styles/nnfx-dark.css +0 -0
  1733. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/styles/nnfx-dark.min.css +0 -0
  1734. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/styles/nnfx-light.css +0 -0
  1735. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/styles/nnfx-light.min.css +0 -0
  1736. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/styles/nord.css +0 -0
  1737. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/styles/nord.min.css +0 -0
  1738. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/styles/obsidian.css +0 -0
  1739. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/styles/obsidian.min.css +0 -0
  1740. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/styles/panda-syntax-dark.css +0 -0
  1741. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/styles/panda-syntax-dark.min.css +0 -0
  1742. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/styles/panda-syntax-light.css +0 -0
  1743. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/styles/panda-syntax-light.min.css +0 -0
  1744. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/styles/paraiso-dark.css +0 -0
  1745. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/styles/paraiso-dark.min.css +0 -0
  1746. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/styles/paraiso-light.css +0 -0
  1747. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/styles/paraiso-light.min.css +0 -0
  1748. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/styles/pojoaque.css +0 -0
  1749. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/styles/pojoaque.jpg +0 -0
  1750. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/styles/pojoaque.min.css +0 -0
  1751. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/styles/purebasic.css +0 -0
  1752. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/styles/purebasic.min.css +0 -0
  1753. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/styles/qtcreator-dark.css +0 -0
  1754. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/styles/qtcreator-dark.min.css +0 -0
  1755. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/styles/qtcreator-light.css +0 -0
  1756. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/styles/qtcreator-light.min.css +0 -0
  1757. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/styles/rainbow.css +0 -0
  1758. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/styles/rainbow.min.css +0 -0
  1759. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/styles/routeros.css +0 -0
  1760. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/styles/routeros.min.css +0 -0
  1761. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/styles/school-book.css +0 -0
  1762. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/styles/school-book.min.css +0 -0
  1763. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/styles/shades-of-purple.css +0 -0
  1764. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/styles/shades-of-purple.min.css +0 -0
  1765. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/styles/srcery.css +0 -0
  1766. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/styles/srcery.min.css +0 -0
  1767. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/styles/stackoverflow-dark.css +0 -0
  1768. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/styles/stackoverflow-dark.min.css +0 -0
  1769. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/styles/stackoverflow-light.css +0 -0
  1770. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/styles/stackoverflow-light.min.css +0 -0
  1771. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/styles/sunburst.css +0 -0
  1772. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/styles/sunburst.min.css +0 -0
  1773. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/styles/tokyo-night-dark.css +0 -0
  1774. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/styles/tokyo-night-dark.min.css +0 -0
  1775. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/styles/tokyo-night-light.css +0 -0
  1776. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/styles/tokyo-night-light.min.css +0 -0
  1777. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/styles/tomorrow-night-blue.css +0 -0
  1778. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/styles/tomorrow-night-blue.min.css +0 -0
  1779. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/styles/tomorrow-night-bright.css +0 -0
  1780. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/styles/tomorrow-night-bright.min.css +0 -0
  1781. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/styles/vs.css +0 -0
  1782. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/styles/vs.min.css +0 -0
  1783. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/styles/vs2015.css +0 -0
  1784. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/styles/vs2015.min.css +0 -0
  1785. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/styles/windows-10-light.css +0 -0
  1786. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/styles/windows-10-light.min.css +0 -0
  1787. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/styles/windows-10.css +0 -0
  1788. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/styles/windows-10.min.css +0 -0
  1789. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/styles/xcode.css +0 -0
  1790. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/styles/xcode.min.css +0 -0
  1791. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/styles/xt256.css +0 -0
  1792. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/highlight/styles/xt256.min.css +0 -0
  1793. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/katex/auto-render.min.js +0 -0
  1794. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/katex/fonts/KaTeX_AMS-Regular.ttf +0 -0
  1795. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/katex/fonts/KaTeX_AMS-Regular.woff +0 -0
  1796. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/katex/fonts/KaTeX_AMS-Regular.woff2 +0 -0
  1797. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/katex/fonts/KaTeX_Caligraphic-Bold.ttf +0 -0
  1798. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/katex/fonts/KaTeX_Caligraphic-Bold.woff +0 -0
  1799. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/katex/fonts/KaTeX_Caligraphic-Bold.woff2 +0 -0
  1800. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/katex/fonts/KaTeX_Caligraphic-Regular.ttf +0 -0
  1801. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/katex/fonts/KaTeX_Caligraphic-Regular.woff +0 -0
  1802. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/katex/fonts/KaTeX_Caligraphic-Regular.woff2 +0 -0
  1803. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/katex/fonts/KaTeX_Fraktur-Bold.ttf +0 -0
  1804. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/katex/fonts/KaTeX_Fraktur-Bold.woff +0 -0
  1805. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/katex/fonts/KaTeX_Fraktur-Bold.woff2 +0 -0
  1806. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/katex/fonts/KaTeX_Fraktur-Regular.ttf +0 -0
  1807. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/katex/fonts/KaTeX_Fraktur-Regular.woff +0 -0
  1808. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/katex/fonts/KaTeX_Fraktur-Regular.woff2 +0 -0
  1809. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/katex/fonts/KaTeX_Main-Bold.ttf +0 -0
  1810. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/katex/fonts/KaTeX_Main-Bold.woff +0 -0
  1811. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/katex/fonts/KaTeX_Main-Bold.woff2 +0 -0
  1812. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/katex/fonts/KaTeX_Main-BoldItalic.ttf +0 -0
  1813. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/katex/fonts/KaTeX_Main-BoldItalic.woff +0 -0
  1814. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/katex/fonts/KaTeX_Main-BoldItalic.woff2 +0 -0
  1815. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/katex/fonts/KaTeX_Main-Italic.ttf +0 -0
  1816. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/katex/fonts/KaTeX_Main-Italic.woff +0 -0
  1817. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/katex/fonts/KaTeX_Main-Italic.woff2 +0 -0
  1818. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/katex/fonts/KaTeX_Main-Regular.ttf +0 -0
  1819. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/katex/fonts/KaTeX_Main-Regular.woff +0 -0
  1820. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/katex/fonts/KaTeX_Main-Regular.woff2 +0 -0
  1821. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/katex/fonts/KaTeX_Math-BoldItalic.ttf +0 -0
  1822. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/katex/fonts/KaTeX_Math-BoldItalic.woff +0 -0
  1823. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/katex/fonts/KaTeX_Math-BoldItalic.woff2 +0 -0
  1824. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/katex/fonts/KaTeX_Math-Italic.ttf +0 -0
  1825. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/katex/fonts/KaTeX_Math-Italic.woff +0 -0
  1826. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/katex/fonts/KaTeX_Math-Italic.woff2 +0 -0
  1827. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/katex/fonts/KaTeX_SansSerif-Bold.ttf +0 -0
  1828. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/katex/fonts/KaTeX_SansSerif-Bold.woff +0 -0
  1829. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/katex/fonts/KaTeX_SansSerif-Bold.woff2 +0 -0
  1830. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/katex/fonts/KaTeX_SansSerif-Italic.ttf +0 -0
  1831. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/katex/fonts/KaTeX_SansSerif-Italic.woff +0 -0
  1832. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/katex/fonts/KaTeX_SansSerif-Italic.woff2 +0 -0
  1833. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/katex/fonts/KaTeX_SansSerif-Regular.ttf +0 -0
  1834. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/katex/fonts/KaTeX_SansSerif-Regular.woff +0 -0
  1835. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/katex/fonts/KaTeX_SansSerif-Regular.woff2 +0 -0
  1836. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/katex/fonts/KaTeX_Script-Regular.ttf +0 -0
  1837. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/katex/fonts/KaTeX_Script-Regular.woff +0 -0
  1838. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/katex/fonts/KaTeX_Script-Regular.woff2 +0 -0
  1839. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/katex/fonts/KaTeX_Size1-Regular.ttf +0 -0
  1840. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/katex/fonts/KaTeX_Size1-Regular.woff +0 -0
  1841. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/katex/fonts/KaTeX_Size1-Regular.woff2 +0 -0
  1842. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/katex/fonts/KaTeX_Size2-Regular.ttf +0 -0
  1843. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/katex/fonts/KaTeX_Size2-Regular.woff +0 -0
  1844. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/katex/fonts/KaTeX_Size2-Regular.woff2 +0 -0
  1845. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/katex/fonts/KaTeX_Size3-Regular.ttf +0 -0
  1846. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/katex/fonts/KaTeX_Size3-Regular.woff +0 -0
  1847. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/katex/fonts/KaTeX_Size3-Regular.woff2 +0 -0
  1848. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/katex/fonts/KaTeX_Size4-Regular.ttf +0 -0
  1849. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/katex/fonts/KaTeX_Size4-Regular.woff +0 -0
  1850. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/katex/fonts/KaTeX_Size4-Regular.woff2 +0 -0
  1851. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/katex/fonts/KaTeX_Typewriter-Regular.ttf +0 -0
  1852. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/katex/fonts/KaTeX_Typewriter-Regular.woff +0 -0
  1853. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/katex/fonts/KaTeX_Typewriter-Regular.woff2 +0 -0
  1854. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/katex/katex.min.css +0 -0
  1855. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/js/katex/katex.min.js +0 -0
  1856. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/languages.csv +0 -0
  1857. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/locale/plugin.agent.de.ini +0 -0
  1858. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/locale/plugin.agent.en.ini +0 -0
  1859. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/locale/plugin.agent.es.ini +0 -0
  1860. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/locale/plugin.agent.fr.ini +0 -0
  1861. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/locale/plugin.agent.it.ini +0 -0
  1862. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/locale/plugin.agent.pl.ini +0 -0
  1863. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/locale/plugin.agent.uk.ini +0 -0
  1864. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/locale/plugin.agent.zh.ini +0 -0
  1865. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/locale/plugin.audio_input.de.ini +0 -0
  1866. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/locale/plugin.audio_input.es.ini +0 -0
  1867. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/locale/plugin.audio_input.fr.ini +0 -0
  1868. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/locale/plugin.audio_input.it.ini +0 -0
  1869. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/locale/plugin.audio_input.pl.ini +0 -0
  1870. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/locale/plugin.audio_input.uk.ini +0 -0
  1871. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/locale/plugin.audio_input.zh.ini +0 -0
  1872. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/locale/plugin.audio_output.de.ini +0 -0
  1873. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/locale/plugin.audio_output.es.ini +0 -0
  1874. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/locale/plugin.audio_output.fr.ini +0 -0
  1875. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/locale/plugin.audio_output.it.ini +0 -0
  1876. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/locale/plugin.audio_output.pl.ini +0 -0
  1877. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/locale/plugin.audio_output.uk.ini +0 -0
  1878. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/locale/plugin.audio_output.zh.ini +0 -0
  1879. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/locale/plugin.cmd_api.de.ini +0 -0
  1880. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/locale/plugin.cmd_api.en.ini +0 -0
  1881. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/locale/plugin.cmd_api.es.ini +0 -0
  1882. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/locale/plugin.cmd_api.fr.ini +0 -0
  1883. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/locale/plugin.cmd_api.it.ini +0 -0
  1884. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/locale/plugin.cmd_api.pl.ini +0 -0
  1885. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/locale/plugin.cmd_api.uk.ini +0 -0
  1886. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/locale/plugin.cmd_api.zh.ini +0 -0
  1887. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/locale/plugin.cmd_code_interpreter.de.ini +0 -0
  1888. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/locale/plugin.cmd_code_interpreter.en.ini +0 -0
  1889. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/locale/plugin.cmd_code_interpreter.es.ini +0 -0
  1890. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/locale/plugin.cmd_code_interpreter.fr.ini +0 -0
  1891. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/locale/plugin.cmd_code_interpreter.it.ini +0 -0
  1892. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/locale/plugin.cmd_code_interpreter.pl.ini +0 -0
  1893. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/locale/plugin.cmd_code_interpreter.uk.ini +0 -0
  1894. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/locale/plugin.cmd_code_interpreter.zh.ini +0 -0
  1895. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/locale/plugin.cmd_custom.de.ini +0 -0
  1896. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/locale/plugin.cmd_custom.en.ini +0 -0
  1897. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/locale/plugin.cmd_custom.es.ini +0 -0
  1898. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/locale/plugin.cmd_custom.fr.ini +0 -0
  1899. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/locale/plugin.cmd_custom.it.ini +0 -0
  1900. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/locale/plugin.cmd_custom.pl.ini +0 -0
  1901. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/locale/plugin.cmd_custom.uk.ini +0 -0
  1902. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/locale/plugin.cmd_custom.zh.ini +0 -0
  1903. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/locale/plugin.cmd_files.de.ini +0 -0
  1904. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/locale/plugin.cmd_files.en.ini +0 -0
  1905. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/locale/plugin.cmd_files.es.ini +0 -0
  1906. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/locale/plugin.cmd_files.fr.ini +0 -0
  1907. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/locale/plugin.cmd_files.it.ini +0 -0
  1908. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/locale/plugin.cmd_files.pl.ini +0 -0
  1909. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/locale/plugin.cmd_files.uk.ini +0 -0
  1910. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/locale/plugin.cmd_files.zh.ini +0 -0
  1911. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/locale/plugin.cmd_history.de.ini +0 -0
  1912. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/locale/plugin.cmd_history.en.ini +0 -0
  1913. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/locale/plugin.cmd_history.es.ini +0 -0
  1914. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/locale/plugin.cmd_history.fr.ini +0 -0
  1915. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/locale/plugin.cmd_history.it.ini +0 -0
  1916. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/locale/plugin.cmd_history.pl.ini +0 -0
  1917. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/locale/plugin.cmd_history.uk.ini +0 -0
  1918. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/locale/plugin.cmd_history.zh.ini +0 -0
  1919. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/locale/plugin.cmd_mouse_control.de.ini +0 -0
  1920. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/locale/plugin.cmd_mouse_control.en.ini +0 -0
  1921. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/locale/plugin.cmd_mouse_control.es.ini +0 -0
  1922. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/locale/plugin.cmd_mouse_control.fr.ini +0 -0
  1923. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/locale/plugin.cmd_mouse_control.it.ini +0 -0
  1924. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/locale/plugin.cmd_mouse_control.pl.ini +0 -0
  1925. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/locale/plugin.cmd_mouse_control.uk.ini +0 -0
  1926. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/locale/plugin.cmd_mouse_control.zh.ini +0 -0
  1927. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/locale/plugin.cmd_serial.de.ini +0 -0
  1928. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/locale/plugin.cmd_serial.en.ini +0 -0
  1929. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/locale/plugin.cmd_serial.es.ini +0 -0
  1930. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/locale/plugin.cmd_serial.fr.ini +0 -0
  1931. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/locale/plugin.cmd_serial.it.ini +0 -0
  1932. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/locale/plugin.cmd_serial.pl.ini +0 -0
  1933. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/locale/plugin.cmd_serial.uk.ini +0 -0
  1934. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/locale/plugin.cmd_serial.zh.ini +0 -0
  1935. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/locale/plugin.cmd_system.de.ini +0 -0
  1936. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/locale/plugin.cmd_system.en.ini +0 -0
  1937. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/locale/plugin.cmd_system.es.ini +0 -0
  1938. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/locale/plugin.cmd_system.fr.ini +0 -0
  1939. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/locale/plugin.cmd_system.it.ini +0 -0
  1940. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/locale/plugin.cmd_system.pl.ini +0 -0
  1941. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/locale/plugin.cmd_system.uk.ini +0 -0
  1942. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/locale/plugin.cmd_system.zh.ini +0 -0
  1943. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/locale/plugin.cmd_web.de.ini +0 -0
  1944. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/locale/plugin.cmd_web.en.ini +0 -0
  1945. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/locale/plugin.cmd_web.es.ini +0 -0
  1946. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/locale/plugin.cmd_web.fr.ini +0 -0
  1947. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/locale/plugin.cmd_web.it.ini +0 -0
  1948. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/locale/plugin.cmd_web.pl.ini +0 -0
  1949. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/locale/plugin.cmd_web.uk.ini +0 -0
  1950. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/locale/plugin.cmd_web.zh.ini +0 -0
  1951. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/locale/plugin.crontab.de.ini +0 -0
  1952. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/locale/plugin.crontab.en.ini +0 -0
  1953. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/locale/plugin.crontab.es.ini +0 -0
  1954. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/locale/plugin.crontab.fr.ini +0 -0
  1955. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/locale/plugin.crontab.it.ini +0 -0
  1956. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/locale/plugin.crontab.pl.ini +0 -0
  1957. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/locale/plugin.crontab.uk.ini +0 -0
  1958. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/locale/plugin.crontab.zh.ini +0 -0
  1959. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/locale/plugin.experts.de.ini +0 -0
  1960. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/locale/plugin.experts.en.ini +0 -0
  1961. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/locale/plugin.experts.es.ini +0 -0
  1962. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/locale/plugin.experts.fr.ini +0 -0
  1963. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/locale/plugin.experts.it.ini +0 -0
  1964. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/locale/plugin.experts.pl.ini +0 -0
  1965. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/locale/plugin.experts.uk.ini +0 -0
  1966. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/locale/plugin.experts.zh.ini +0 -0
  1967. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/locale/plugin.extra_prompt.de.ini +0 -0
  1968. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/locale/plugin.extra_prompt.en.ini +0 -0
  1969. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/locale/plugin.extra_prompt.es.ini +0 -0
  1970. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/locale/plugin.extra_prompt.fr.ini +0 -0
  1971. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/locale/plugin.extra_prompt.it.ini +0 -0
  1972. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/locale/plugin.extra_prompt.pl.ini +0 -0
  1973. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/locale/plugin.extra_prompt.uk.ini +0 -0
  1974. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/locale/plugin.extra_prompt.zh.ini +0 -0
  1975. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/locale/plugin.idx_llama_index.de.ini +0 -0
  1976. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/locale/plugin.idx_llama_index.en.ini +0 -0
  1977. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/locale/plugin.idx_llama_index.es.ini +0 -0
  1978. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/locale/plugin.idx_llama_index.fr.ini +0 -0
  1979. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/locale/plugin.idx_llama_index.it.ini +0 -0
  1980. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/locale/plugin.idx_llama_index.pl.ini +0 -0
  1981. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/locale/plugin.idx_llama_index.uk.ini +0 -0
  1982. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/locale/plugin.idx_llama_index.zh.ini +0 -0
  1983. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/locale/plugin.mailer.en.ini +0 -0
  1984. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/locale/plugin.openai_dalle.de.ini +0 -0
  1985. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/locale/plugin.openai_dalle.en.ini +0 -0
  1986. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/locale/plugin.openai_dalle.es.ini +0 -0
  1987. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/locale/plugin.openai_dalle.fr.ini +0 -0
  1988. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/locale/plugin.openai_dalle.it.ini +0 -0
  1989. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/locale/plugin.openai_dalle.pl.ini +0 -0
  1990. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/locale/plugin.openai_dalle.uk.ini +0 -0
  1991. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/locale/plugin.openai_dalle.zh.ini +0 -0
  1992. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/locale/plugin.openai_vision.de.ini +0 -0
  1993. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/locale/plugin.openai_vision.en.ini +0 -0
  1994. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/locale/plugin.openai_vision.es.ini +0 -0
  1995. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/locale/plugin.openai_vision.fr.ini +0 -0
  1996. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/locale/plugin.openai_vision.it.ini +0 -0
  1997. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/locale/plugin.openai_vision.pl.ini +0 -0
  1998. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/locale/plugin.openai_vision.uk.ini +0 -0
  1999. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/locale/plugin.openai_vision.zh.ini +0 -0
  2000. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/locale/plugin.real_time.de.ini +0 -0
  2001. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/locale/plugin.real_time.en.ini +0 -0
  2002. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/locale/plugin.real_time.es.ini +0 -0
  2003. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/locale/plugin.real_time.fr.ini +0 -0
  2004. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/locale/plugin.real_time.it.ini +0 -0
  2005. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/locale/plugin.real_time.pl.ini +0 -0
  2006. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/locale/plugin.real_time.uk.ini +0 -0
  2007. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/locale/plugin.real_time.zh.ini +0 -0
  2008. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/locale/plugin.voice_control.de.ini +0 -0
  2009. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/locale/plugin.voice_control.en.ini +0 -0
  2010. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/locale/plugin.voice_control.es.ini +0 -0
  2011. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/locale/plugin.voice_control.fr.ini +0 -0
  2012. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/locale/plugin.voice_control.it.ini +0 -0
  2013. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/locale/plugin.voice_control.pl.ini +0 -0
  2014. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/locale/plugin.voice_control.uk.ini +0 -0
  2015. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/locale/plugin.voice_control.zh.ini +0 -0
  2016. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/logo.png +0 -0
  2017. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/prompts.csv +0 -0
  2018. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/themes/dark.css +0 -0
  2019. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/themes/dark.xml +0 -0
  2020. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/themes/dark_darker.css +0 -0
  2021. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/themes/dark_darker.xml +0 -0
  2022. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/themes/dark_darkest.css +0 -0
  2023. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/themes/dark_darkest.xml +0 -0
  2024. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/themes/dark_gray.css +0 -0
  2025. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/themes/dark_gray.xml +0 -0
  2026. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/themes/light.css +0 -0
  2027. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/themes/light.xml +0 -0
  2028. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/themes/light_gray.css +0 -0
  2029. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/themes/light_gray.xml +0 -0
  2030. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/win32/README.rtf +0 -0
  2031. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/win32/USER-LICENSE.rtf +0 -0
  2032. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/win32/banner.bmp +0 -0
  2033. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/win32/banner_welcome.bmp +0 -0
  2034. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/win32/pygpt.aip +0 -0
  2035. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/data/win32/qt.conf +0 -0
  2036. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/fonts.qrc +0 -0
  2037. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/fonts_rc.py +0 -0
  2038. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/icons.qrc +0 -0
  2039. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/icons_rc.py +0 -0
  2040. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/item/__init__.py +0 -0
  2041. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/item/assistant.py +0 -0
  2042. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/item/attachment.py +0 -0
  2043. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/item/calendar_note.py +0 -0
  2044. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/item/ctx.py +0 -0
  2045. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/item/index.py +0 -0
  2046. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/item/mode.py +0 -0
  2047. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/item/notepad.py +0 -0
  2048. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/item/preset.py +0 -0
  2049. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/item/prompt.py +0 -0
  2050. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/js.qrc +0 -0
  2051. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/js_rc.py +0 -0
  2052. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/launcher.py +0 -0
  2053. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/migrations/Version20231227152900.py +0 -0
  2054. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/migrations/Version20231230095000.py +0 -0
  2055. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/migrations/Version20231231230000.py +0 -0
  2056. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/migrations/Version20240106060000.py +0 -0
  2057. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/migrations/Version20240107060000.py +0 -0
  2058. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/migrations/Version20240222160000.py +0 -0
  2059. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/migrations/Version20240223050000.py +0 -0
  2060. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/migrations/Version20240303190000.py +0 -0
  2061. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/migrations/Version20240408180000.py +0 -0
  2062. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/migrations/Version20240426050000.py +0 -0
  2063. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/migrations/Version20240501030000.py +0 -0
  2064. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/migrations/Version20241122130000.py +0 -0
  2065. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/migrations/Version20241126170000.py +0 -0
  2066. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/migrations/Version20241215110000.py +0 -0
  2067. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/migrations/__init__.py +0 -0
  2068. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/migrations/base.py +0 -0
  2069. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/plugin/__init__.py +0 -0
  2070. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/plugin/agent/__init__.py +0 -0
  2071. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/plugin/agent/config.py +0 -0
  2072. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/plugin/agent/plugin.py +0 -0
  2073. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/plugin/audio_input/__init__.py +0 -0
  2074. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/plugin/audio_input/config.py +0 -0
  2075. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/plugin/audio_input/worker.py +0 -0
  2076. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/plugin/audio_output/__init__.py +0 -0
  2077. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/plugin/audio_output/config.py +0 -0
  2078. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/plugin/audio_output/plugin.py +0 -0
  2079. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/plugin/audio_output/worker.py +0 -0
  2080. {pygpt_net-2.6.29/src/pygpt_net/provider/agents/llama_index/legacy → pygpt_net-2.6.31/src/pygpt_net/plugin/base}/__init__.py +0 -0
  2081. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/plugin/base/config.py +0 -0
  2082. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/plugin/base/plugin.py +0 -0
  2083. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/plugin/base/signals.py +0 -0
  2084. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/plugin/base/worker.py +0 -0
  2085. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/plugin/bitbucket/__init__.py +0 -0
  2086. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/plugin/bitbucket/config.py +0 -0
  2087. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/plugin/bitbucket/plugin.py +0 -0
  2088. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/plugin/bitbucket/worker.py +0 -0
  2089. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/plugin/cmd_api/__init__.py +0 -0
  2090. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/plugin/cmd_api/config.py +0 -0
  2091. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/plugin/cmd_api/plugin.py +0 -0
  2092. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/plugin/cmd_api/worker.py +0 -0
  2093. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/plugin/cmd_code_interpreter/__init__.py +0 -0
  2094. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/plugin/cmd_code_interpreter/builder.py +0 -0
  2095. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/plugin/cmd_code_interpreter/config.py +0 -0
  2096. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/plugin/cmd_code_interpreter/docker.py +0 -0
  2097. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/plugin/cmd_code_interpreter/ipython/__init__.py +0 -0
  2098. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/plugin/cmd_code_interpreter/ipython/docker_kernel.py +0 -0
  2099. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/plugin/cmd_code_interpreter/ipython/local_kernel.py +0 -0
  2100. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/plugin/cmd_code_interpreter/output.py +0 -0
  2101. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/plugin/cmd_code_interpreter/plugin.py +0 -0
  2102. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/plugin/cmd_code_interpreter/runner.py +0 -0
  2103. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/plugin/cmd_code_interpreter/worker.py +0 -0
  2104. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/plugin/cmd_custom/__init__.py +0 -0
  2105. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/plugin/cmd_custom/config.py +0 -0
  2106. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/plugin/cmd_custom/plugin.py +0 -0
  2107. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/plugin/cmd_custom/worker.py +0 -0
  2108. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/plugin/cmd_files/__init__.py +0 -0
  2109. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/plugin/cmd_files/config.py +0 -0
  2110. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/plugin/cmd_files/output.py +0 -0
  2111. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/plugin/cmd_files/plugin.py +0 -0
  2112. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/plugin/cmd_history/__init__.py +0 -0
  2113. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/plugin/cmd_history/config.py +0 -0
  2114. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/plugin/cmd_history/plugin.py +0 -0
  2115. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/plugin/cmd_history/worker.py +0 -0
  2116. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/plugin/cmd_mouse_control/__init__.py +0 -0
  2117. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/plugin/cmd_mouse_control/config.py +0 -0
  2118. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/plugin/cmd_mouse_control/plugin.py +0 -0
  2119. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/plugin/cmd_mouse_control/worker.py +0 -0
  2120. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/plugin/cmd_serial/__init__.py +0 -0
  2121. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/plugin/cmd_serial/config.py +0 -0
  2122. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/plugin/cmd_serial/plugin.py +0 -0
  2123. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/plugin/cmd_serial/worker.py +0 -0
  2124. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/plugin/cmd_system/__init__.py +0 -0
  2125. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/plugin/cmd_system/config.py +0 -0
  2126. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/plugin/cmd_system/docker.py +0 -0
  2127. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/plugin/cmd_system/output.py +0 -0
  2128. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/plugin/cmd_system/plugin.py +0 -0
  2129. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/plugin/cmd_system/runner.py +0 -0
  2130. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/plugin/cmd_system/worker.py +0 -0
  2131. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/plugin/cmd_web/__init__.py +0 -0
  2132. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/plugin/cmd_web/config.py +0 -0
  2133. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/plugin/cmd_web/plugin.py +0 -0
  2134. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/plugin/cmd_web/websearch.py +0 -0
  2135. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/plugin/cmd_web/worker.py +0 -0
  2136. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/plugin/crontab/__init__.py +0 -0
  2137. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/plugin/crontab/config.py +0 -0
  2138. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/plugin/crontab/plugin.py +0 -0
  2139. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/plugin/experts/__init__.py +0 -0
  2140. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/plugin/experts/config.py +0 -0
  2141. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/plugin/experts/plugin.py +0 -0
  2142. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/plugin/extra_prompt/__init__.py +0 -0
  2143. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/plugin/extra_prompt/config.py +0 -0
  2144. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/plugin/extra_prompt/plugin.py +0 -0
  2145. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/plugin/facebook/__init__.py +0 -0
  2146. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/plugin/facebook/config.py +0 -0
  2147. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/plugin/facebook/plugin.py +0 -0
  2148. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/plugin/facebook/worker.py +0 -0
  2149. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/plugin/github/__init__.py +0 -0
  2150. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/plugin/github/config.py +0 -0
  2151. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/plugin/github/plugin.py +0 -0
  2152. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/plugin/github/worker.py +0 -0
  2153. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/plugin/google/__init__.py +0 -0
  2154. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/plugin/google/config.py +0 -0
  2155. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/plugin/google/plugin.py +0 -0
  2156. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/plugin/google/worker.py +0 -0
  2157. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/plugin/idx_llama_index/__init__.py +0 -0
  2158. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/plugin/idx_llama_index/config.py +0 -0
  2159. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/plugin/idx_llama_index/plugin.py +0 -0
  2160. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/plugin/idx_llama_index/worker.py +0 -0
  2161. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/plugin/mailer/__init__.py +0 -0
  2162. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/plugin/mailer/config.py +0 -0
  2163. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/plugin/mailer/plugin.py +0 -0
  2164. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/plugin/mailer/runner.py +0 -0
  2165. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/plugin/mailer/worker.py +0 -0
  2166. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/plugin/openai_dalle/__init__.py +0 -0
  2167. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/plugin/openai_dalle/config.py +0 -0
  2168. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/plugin/openai_vision/__init__.py +0 -0
  2169. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/plugin/openai_vision/config.py +0 -0
  2170. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/plugin/openai_vision/worker.py +0 -0
  2171. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/plugin/real_time/__init__.py +0 -0
  2172. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/plugin/real_time/config.py +0 -0
  2173. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/plugin/real_time/plugin.py +0 -0
  2174. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/plugin/server/__init__.py +0 -0
  2175. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/plugin/server/config.py +0 -0
  2176. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/plugin/server/plugin.py +0 -0
  2177. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/plugin/server/worker.py +0 -0
  2178. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/plugin/slack/__init__.py +0 -0
  2179. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/plugin/slack/config.py +0 -0
  2180. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/plugin/slack/plugin.py +0 -0
  2181. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/plugin/slack/worker.py +0 -0
  2182. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/plugin/telegram/__init__.py +0 -0
  2183. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/plugin/telegram/config.py +0 -0
  2184. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/plugin/telegram/plugin.py +0 -0
  2185. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/plugin/telegram/worker.py +0 -0
  2186. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/plugin/tuya/__init__.py +0 -0
  2187. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/plugin/tuya/config.py +0 -0
  2188. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/plugin/tuya/plugin.py +0 -0
  2189. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/plugin/tuya/worker.py +0 -0
  2190. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/plugin/twitter/__init__.py +0 -0
  2191. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/plugin/twitter/config.py +0 -0
  2192. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/plugin/twitter/plugin.py +0 -0
  2193. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/plugin/twitter/worker.py +0 -0
  2194. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/plugin/voice_control/__init__.py +0 -0
  2195. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/plugin/voice_control/config.py +0 -0
  2196. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/plugin/voice_control/plugin.py +0 -0
  2197. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/plugin/wikipedia/__init__.py +0 -0
  2198. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/plugin/wikipedia/config.py +0 -0
  2199. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/plugin/wikipedia/plugin.py +0 -0
  2200. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/plugin/wikipedia/worker.py +0 -0
  2201. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/provider/__init__.py +0 -0
  2202. {pygpt_net-2.6.29/src/pygpt_net/provider/agents/llama_index/workflow → pygpt_net-2.6.31/src/pygpt_net/provider/agents}/__init__.py +0 -0
  2203. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/provider/agents/base.py +0 -0
  2204. {pygpt_net-2.6.29/src/pygpt_net/provider/agents/openai → pygpt_net-2.6.31/src/pygpt_net/provider/agents/llama_index}/__init__.py +0 -0
  2205. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/provider/agents/llama_index/codeact_workflow.py +0 -0
  2206. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/provider/agents/llama_index/legacy/openai.py +0 -0
  2207. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/provider/agents/llama_index/legacy/openai_assistant.py +0 -0
  2208. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/provider/agents/llama_index/legacy/planner.py +0 -0
  2209. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/provider/agents/llama_index/legacy/react.py +0 -0
  2210. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/provider/agents/llama_index/openai_workflow.py +0 -0
  2211. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/provider/agents/llama_index/planner_workflow.py +0 -0
  2212. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/provider/agents/llama_index/react_workflow.py +0 -0
  2213. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/provider/agents/llama_index/supervisor_workflow.py +0 -0
  2214. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/provider/agents/llama_index/workflow/codeact.py +0 -0
  2215. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/provider/agents/llama_index/workflow/events.py +0 -0
  2216. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/provider/agents/llama_index/workflow/openai.py +0 -0
  2217. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/provider/agents/llama_index/workflow/planner.py +0 -0
  2218. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/provider/agents/llama_index/workflow/supervisor.py +0 -0
  2219. {pygpt_net-2.6.29/src/pygpt_net/provider/core/prompt → pygpt_net-2.6.31/src/pygpt_net/provider/agents/openai}/__init__.py +0 -0
  2220. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/provider/agents/openai/bots/research_bot/__init__.py +0 -0
  2221. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/provider/agents/openai/bots/research_bot/manager.py +0 -0
  2222. {pygpt_net-2.6.29/src/pygpt_net/provider/gpt → pygpt_net-2.6.31/src/pygpt_net/provider/api/openai}/agents/client.py +0 -0
  2223. {pygpt_net-2.6.29/src/pygpt_net/provider/gpt → pygpt_net-2.6.31/src/pygpt_net/provider/api/openai}/agents/remote_tools.py +0 -0
  2224. {pygpt_net-2.6.29/src/pygpt_net/provider/gpt → pygpt_net-2.6.31/src/pygpt_net/provider/api/openai}/agents/utils.py +0 -0
  2225. {pygpt_net-2.6.29/src/pygpt_net/provider/gpt → pygpt_net-2.6.31/src/pygpt_net/provider/api/openai}/audio.py +0 -0
  2226. {pygpt_net-2.6.29/src/pygpt_net/provider/gpt → pygpt_net-2.6.31/src/pygpt_net/provider/api/openai}/computer.py +0 -0
  2227. {pygpt_net-2.6.29/src/pygpt_net/provider/gpt → pygpt_net-2.6.31/src/pygpt_net/provider/api/openai}/container.py +0 -0
  2228. {pygpt_net-2.6.29/src/pygpt_net/provider/gpt → pygpt_net-2.6.31/src/pygpt_net/provider/api/openai}/summarizer.py +0 -0
  2229. {pygpt_net-2.6.29/src/pygpt_net/provider/gpt → pygpt_net-2.6.31/src/pygpt_net/provider/api/openai}/tools.py +0 -0
  2230. {pygpt_net-2.6.29/src/pygpt_net/provider/gpt → pygpt_net-2.6.31/src/pygpt_net/provider/api/openai}/utils.py +0 -0
  2231. {pygpt_net-2.6.29/src/pygpt_net/provider/llms/llama_index → pygpt_net-2.6.31/src/pygpt_net/provider/api/openai/worker}/__init__.py +0 -0
  2232. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/provider/audio_input/__init__.py +0 -0
  2233. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/provider/audio_input/base.py +0 -0
  2234. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/provider/audio_input/bing_speech_recognition.py +0 -0
  2235. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/provider/audio_input/google_cloud_speech_recognition.py +0 -0
  2236. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/provider/audio_input/google_speech_recognition.py +0 -0
  2237. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/provider/audio_input/openai_whisper_local.py +0 -0
  2238. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/provider/audio_output/__init__.py +0 -0
  2239. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/provider/audio_output/base.py +0 -0
  2240. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/provider/audio_output/eleven_labs.py +0 -0
  2241. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/provider/audio_output/google_tts.py +0 -0
  2242. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/provider/audio_output/ms_azure_tts.py +0 -0
  2243. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/provider/core/__init__.py +0 -0
  2244. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/provider/core/assistant/__init__.py +0 -0
  2245. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/provider/core/assistant/base.py +0 -0
  2246. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/provider/core/assistant/json_file.py +0 -0
  2247. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/provider/core/assistant_file/__init__.py +0 -0
  2248. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/provider/core/assistant_file/base.py +0 -0
  2249. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/provider/core/assistant_file/db_sqlite/__init__.py +0 -0
  2250. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/provider/core/assistant_file/db_sqlite/patch.py +0 -0
  2251. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/provider/core/assistant_file/db_sqlite/provider.py +0 -0
  2252. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/provider/core/assistant_file/db_sqlite/storage.py +0 -0
  2253. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/provider/core/assistant_file/db_sqlite/utils.py +0 -0
  2254. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/provider/core/assistant_store/__init__.py +0 -0
  2255. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/provider/core/assistant_store/base.py +0 -0
  2256. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/provider/core/assistant_store/db_sqlite/__init__.py +0 -0
  2257. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/provider/core/assistant_store/db_sqlite/patch.py +0 -0
  2258. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/provider/core/assistant_store/db_sqlite/provider.py +0 -0
  2259. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/provider/core/assistant_store/db_sqlite/storage.py +0 -0
  2260. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/provider/core/assistant_store/db_sqlite/utils.py +0 -0
  2261. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/provider/core/assistant_store/json_file.py +0 -0
  2262. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/provider/core/attachment/__init__.py +0 -0
  2263. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/provider/core/attachment/base.py +0 -0
  2264. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/provider/core/attachment/json_file.py +0 -0
  2265. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/provider/core/calendar/__init__.py +0 -0
  2266. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/provider/core/calendar/base.py +0 -0
  2267. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/provider/core/calendar/db_sqlite/__init__.py +0 -0
  2268. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/provider/core/calendar/db_sqlite/patch.py +0 -0
  2269. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/provider/core/calendar/db_sqlite/provider.py +0 -0
  2270. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/provider/core/calendar/db_sqlite/storage.py +0 -0
  2271. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/provider/core/config/__init__.py +0 -0
  2272. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/provider/core/config/base.py +0 -0
  2273. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/provider/core/config/json_file.py +0 -0
  2274. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/provider/core/ctx/__init__.py +0 -0
  2275. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/provider/core/ctx/base.py +0 -0
  2276. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/provider/core/ctx/db_sqlite/__init__.py +0 -0
  2277. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/provider/core/ctx/db_sqlite/patch.py +0 -0
  2278. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/provider/core/ctx/db_sqlite/provider.py +0 -0
  2279. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/provider/core/ctx/db_sqlite/storage.py +0 -0
  2280. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/provider/core/ctx/db_sqlite/utils.py +0 -0
  2281. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/provider/core/ctx/json_file.py +0 -0
  2282. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/provider/core/history/__init__.py +0 -0
  2283. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/provider/core/history/base.py +0 -0
  2284. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/provider/core/history/patch.py +0 -0
  2285. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/provider/core/history/txt_file.py +0 -0
  2286. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/provider/core/index/__init__.py +0 -0
  2287. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/provider/core/index/base.py +0 -0
  2288. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/provider/core/index/db_sqlite/__init__.py +0 -0
  2289. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/provider/core/index/db_sqlite/patch.py +0 -0
  2290. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/provider/core/index/db_sqlite/provider.py +0 -0
  2291. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/provider/core/index/db_sqlite/storage.py +0 -0
  2292. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/provider/core/index/db_sqlite/utils.py +0 -0
  2293. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/provider/core/index/json_file.py +0 -0
  2294. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/provider/core/index/patch.py +0 -0
  2295. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/provider/core/mode/__init__.py +0 -0
  2296. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/provider/core/mode/base.py +0 -0
  2297. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/provider/core/mode/json_file.py +0 -0
  2298. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/provider/core/mode/patch.py +0 -0
  2299. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/provider/core/model/__init__.py +0 -0
  2300. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/provider/core/model/base.py +0 -0
  2301. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/provider/core/model/json_file.py +0 -0
  2302. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/provider/core/notepad/__init__.py +0 -0
  2303. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/provider/core/notepad/base.py +0 -0
  2304. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/provider/core/notepad/db_sqlite/__init__.py +0 -0
  2305. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/provider/core/notepad/db_sqlite/patch.py +0 -0
  2306. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/provider/core/notepad/db_sqlite/provider.py +0 -0
  2307. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/provider/core/notepad/db_sqlite/storage.py +0 -0
  2308. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/provider/core/notepad/json_file.py +0 -0
  2309. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/provider/core/plugin_preset/__init__.py +0 -0
  2310. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/provider/core/plugin_preset/base.py +0 -0
  2311. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/provider/core/plugin_preset/json_file.py +0 -0
  2312. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/provider/core/plugin_preset/patch.py +0 -0
  2313. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/provider/core/preset/__init__.py +0 -0
  2314. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/provider/core/preset/base.py +0 -0
  2315. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/provider/core/preset/patch.py +0 -0
  2316. {pygpt_net-2.6.29/src/pygpt_net/provider/llms/llama_index/x_ai → pygpt_net-2.6.31/src/pygpt_net/provider/core/prompt}/__init__.py +0 -0
  2317. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/provider/core/prompt/base.py +0 -0
  2318. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/provider/core/prompt/json_file.py +0 -0
  2319. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/provider/llms/azure_openai.py +0 -0
  2320. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/provider/llms/deepseek_api.py +0 -0
  2321. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/provider/llms/hugging_face.py +0 -0
  2322. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/provider/llms/hugging_face_api.py +0 -0
  2323. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/provider/llms/hugging_face_router.py +0 -0
  2324. {pygpt_net-2.6.29/src/pygpt_net/provider/loaders/hub → pygpt_net-2.6.31/src/pygpt_net/provider/llms/llama_index}/__init__.py +0 -0
  2325. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/provider/llms/llama_index/openai/__init__.py +0 -0
  2326. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/provider/llms/llama_index/openai/base.py +0 -0
  2327. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/provider/llms/llama_index/openai/py.typed +0 -0
  2328. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/provider/llms/llama_index/openai/responses.py +0 -0
  2329. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/provider/llms/llama_index/openai/utils.py +0 -0
  2330. {pygpt_net-2.6.29/src/pygpt_net/provider/loaders/hub/bitbucket → pygpt_net-2.6.31/src/pygpt_net/provider/llms/llama_index/x_ai}/__init__.py +0 -0
  2331. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/provider/llms/llama_index/x_ai/embedding.py +0 -0
  2332. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/provider/llms/local.py +0 -0
  2333. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/provider/llms/mistral.py +0 -0
  2334. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/provider/llms/ollama.py +0 -0
  2335. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/provider/llms/ollama_custom.py +0 -0
  2336. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/provider/llms/open_router.py +0 -0
  2337. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/provider/llms/perplexity.py +0 -0
  2338. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/provider/llms/x_ai.py +0 -0
  2339. {pygpt_net-2.6.29/src/pygpt_net/provider/loaders/hub/chatgpt_retrieval → pygpt_net-2.6.31/src/pygpt_net/provider/loaders}/__init__.py +0 -0
  2340. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/provider/loaders/base.py +0 -0
  2341. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/provider/loaders/file_csv.py +0 -0
  2342. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/provider/loaders/file_docx.py +0 -0
  2343. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/provider/loaders/file_epub.py +0 -0
  2344. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/provider/loaders/file_excel.py +0 -0
  2345. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/provider/loaders/file_html.py +0 -0
  2346. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/provider/loaders/file_image_vision.py +0 -0
  2347. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/provider/loaders/file_ipynb.py +0 -0
  2348. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/provider/loaders/file_json.py +0 -0
  2349. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/provider/loaders/file_markdown.py +0 -0
  2350. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/provider/loaders/file_pdf.py +0 -0
  2351. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/provider/loaders/file_video_audio.py +0 -0
  2352. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/provider/loaders/file_xml.py +0 -0
  2353. {pygpt_net-2.6.29/src/pygpt_net/provider/loaders/hub/database → pygpt_net-2.6.31/src/pygpt_net/provider/loaders/hub}/__init__.py +0 -0
  2354. {pygpt_net-2.6.29/src/pygpt_net/provider/loaders/hub/github → pygpt_net-2.6.31/src/pygpt_net/provider/loaders/hub/bitbucket}/__init__.py +0 -0
  2355. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/provider/loaders/hub/bitbucket/repo.py +0 -0
  2356. {pygpt_net-2.6.29/src/pygpt_net/provider/loaders/hub/google → pygpt_net-2.6.31/src/pygpt_net/provider/loaders/hub/chatgpt_retrieval}/__init__.py +0 -0
  2357. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/provider/loaders/hub/chatgpt_retrieval/base.py +0 -0
  2358. {pygpt_net-2.6.29/src/pygpt_net/provider/loaders/hub/image_vision → pygpt_net-2.6.31/src/pygpt_net/provider/loaders/hub/database}/__init__.py +0 -0
  2359. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/provider/loaders/hub/database/base.py +0 -0
  2360. {pygpt_net-2.6.29/src/pygpt_net/provider/loaders/hub/json → pygpt_net-2.6.31/src/pygpt_net/provider/loaders/hub/github}/__init__.py +0 -0
  2361. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/provider/loaders/hub/github/issues.py +0 -0
  2362. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/provider/loaders/hub/github/repo.py +0 -0
  2363. {pygpt_net-2.6.29/src/pygpt_net/provider/loaders/hub/pandas_excel → pygpt_net-2.6.31/src/pygpt_net/provider/loaders/hub/google}/__init__.py +0 -0
  2364. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/provider/loaders/hub/google/calendar.py +0 -0
  2365. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/provider/loaders/hub/google/docs.py +0 -0
  2366. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/provider/loaders/hub/google/gmail.py +0 -0
  2367. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/provider/loaders/hub/google/keep.py +0 -0
  2368. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/provider/loaders/hub/google/sheets.py +0 -0
  2369. {pygpt_net-2.6.29/src/pygpt_net/provider/loaders/hub/simple_csv → pygpt_net-2.6.31/src/pygpt_net/provider/loaders/hub/image_vision}/__init__.py +0 -0
  2370. {pygpt_net-2.6.29/src/pygpt_net/provider/loaders/hub/video_audio → pygpt_net-2.6.31/src/pygpt_net/provider/loaders/hub/json}/__init__.py +0 -0
  2371. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/provider/loaders/hub/json/base.py +0 -0
  2372. {pygpt_net-2.6.29/src/pygpt_net/provider/loaders/hub/web_page → pygpt_net-2.6.31/src/pygpt_net/provider/loaders/hub/pandas_excel}/__init__.py +0 -0
  2373. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/provider/loaders/hub/pandas_excel/base.py +0 -0
  2374. {pygpt_net-2.6.29/src/pygpt_net/provider/loaders/hub/yt → pygpt_net-2.6.31/src/pygpt_net/provider/loaders/hub/simple_csv}/__init__.py +0 -0
  2375. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/provider/loaders/hub/simple_csv/base.py +0 -0
  2376. {pygpt_net-2.6.29/src/pygpt_net/tools/audio_transcriber/ui → pygpt_net-2.6.31/src/pygpt_net/provider/loaders/hub/video_audio}/__init__.py +0 -0
  2377. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/provider/loaders/hub/video_audio/base.py +0 -0
  2378. {pygpt_net-2.6.29/src/pygpt_net/tools/code_interpreter/ui → pygpt_net-2.6.31/src/pygpt_net/provider/loaders/hub/web_page}/__init__.py +0 -0
  2379. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/provider/loaders/hub/web_page/base.py +0 -0
  2380. {pygpt_net-2.6.29/src/pygpt_net/tools/html_canvas/ui → pygpt_net-2.6.31/src/pygpt_net/provider/loaders/hub/yt}/__init__.py +0 -0
  2381. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/provider/loaders/hub/yt/base.py +0 -0
  2382. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/provider/loaders/hub/yt/utils.py +0 -0
  2383. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/provider/loaders/web_bitbucket.py +0 -0
  2384. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/provider/loaders/web_chatgpt_retrieval.py +0 -0
  2385. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/provider/loaders/web_database.py +0 -0
  2386. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/provider/loaders/web_github_issues.py +0 -0
  2387. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/provider/loaders/web_github_repo.py +0 -0
  2388. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/provider/loaders/web_google_calendar.py +0 -0
  2389. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/provider/loaders/web_google_docs.py +0 -0
  2390. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/provider/loaders/web_google_drive.py +0 -0
  2391. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/provider/loaders/web_google_gmail.py +0 -0
  2392. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/provider/loaders/web_google_keep.py +0 -0
  2393. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/provider/loaders/web_google_sheets.py +0 -0
  2394. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/provider/loaders/web_microsoft_onedrive.py +0 -0
  2395. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/provider/loaders/web_page.py +0 -0
  2396. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/provider/loaders/web_rss.py +0 -0
  2397. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/provider/loaders/web_sitemap.py +0 -0
  2398. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/provider/loaders/web_twitter.py +0 -0
  2399. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/provider/loaders/web_yt.py +0 -0
  2400. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/provider/vector_stores/__init__.py +0 -0
  2401. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/provider/vector_stores/base.py +0 -0
  2402. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/provider/vector_stores/chroma.py +0 -0
  2403. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/provider/vector_stores/ctx_attachment.py +0 -0
  2404. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/provider/vector_stores/elasticsearch.py +0 -0
  2405. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/provider/vector_stores/pinecode.py +0 -0
  2406. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/provider/vector_stores/redis.py +0 -0
  2407. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/provider/vector_stores/simple.py +0 -0
  2408. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/provider/vector_stores/temp.py +0 -0
  2409. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/provider/web/__init__.py +0 -0
  2410. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/provider/web/base.py +0 -0
  2411. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/provider/web/google_custom_search.py +0 -0
  2412. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/provider/web/microsoft_bing.py +0 -0
  2413. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/tools/__init__.py +0 -0
  2414. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/tools/audio_transcriber/__init__.py +0 -0
  2415. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/tools/audio_transcriber/tool.py +0 -0
  2416. {pygpt_net-2.6.29/src/pygpt_net/tools/image_viewer → pygpt_net-2.6.31/src/pygpt_net/tools/audio_transcriber}/ui/__init__.py +0 -0
  2417. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/tools/audio_transcriber/ui/dialogs.py +0 -0
  2418. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/tools/base.py +0 -0
  2419. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/tools/code_interpreter/__init__.py +0 -0
  2420. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/tools/code_interpreter/body.py +0 -0
  2421. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/tools/code_interpreter/tool.py +0 -0
  2422. {pygpt_net-2.6.29/src/pygpt_net/tools/indexer → pygpt_net-2.6.31/src/pygpt_net/tools/code_interpreter}/ui/__init__.py +0 -0
  2423. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/tools/code_interpreter/ui/dialogs.py +0 -0
  2424. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/tools/code_interpreter/ui/html.py +0 -0
  2425. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/tools/code_interpreter/ui/widgets.py +0 -0
  2426. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/tools/html_canvas/__init__.py +0 -0
  2427. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/tools/html_canvas/tool.py +0 -0
  2428. {pygpt_net-2.6.29/src/pygpt_net/tools/media_player → pygpt_net-2.6.31/src/pygpt_net/tools/html_canvas}/ui/__init__.py +0 -0
  2429. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/tools/html_canvas/ui/dialogs.py +0 -0
  2430. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/tools/html_canvas/ui/widgets.py +0 -0
  2431. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/tools/image_viewer/__init__.py +0 -0
  2432. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/tools/image_viewer/tool.py +0 -0
  2433. {pygpt_net-2.6.29/src/pygpt_net/tools/text_editor → pygpt_net-2.6.31/src/pygpt_net/tools/image_viewer}/ui/__init__.py +0 -0
  2434. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/tools/image_viewer/ui/dialogs.py +0 -0
  2435. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/tools/indexer/__init__.py +0 -0
  2436. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/tools/indexer/tool.py +0 -0
  2437. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/tools/indexer/ui/browse.py +0 -0
  2438. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/tools/indexer/ui/ctx.py +0 -0
  2439. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/tools/indexer/ui/dialogs.py +0 -0
  2440. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/tools/indexer/ui/files.py +0 -0
  2441. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/tools/indexer/ui/web.py +0 -0
  2442. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/tools/indexer/ui/widgets.py +0 -0
  2443. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/tools/media_player/__init__.py +0 -0
  2444. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/tools/media_player/tool.py +0 -0
  2445. {pygpt_net-2.6.29/src/pygpt_net/ui/base → pygpt_net-2.6.31/src/pygpt_net/tools/media_player/ui}/__init__.py +0 -0
  2446. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/tools/media_player/ui/dialogs.py +0 -0
  2447. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/tools/media_player/ui/widgets.py +0 -0
  2448. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/tools/text_editor/__init__.py +0 -0
  2449. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/tools/text_editor/tool.py +0 -0
  2450. {pygpt_net-2.6.29/src/pygpt_net/ui/widget/calendar → pygpt_net-2.6.31/src/pygpt_net/tools/text_editor/ui}/__init__.py +0 -0
  2451. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/tools/text_editor/ui/dialogs.py +0 -0
  2452. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/tools/text_editor/ui/widgets.py +0 -0
  2453. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/tools/translator/__init__.py +0 -0
  2454. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/tools/translator/tool.py +0 -0
  2455. {pygpt_net-2.6.29/src/pygpt_net/ui/widget/filesystem → pygpt_net-2.6.31/src/pygpt_net/tools/translator/ui}/__init__.py +0 -0
  2456. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/tools/translator/ui/dialogs.py +0 -0
  2457. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/tools/translator/ui/widgets.py +0 -0
  2458. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/ui/__init__.py +0 -0
  2459. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/ui/base/config_dialog.py +0 -0
  2460. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/ui/base/context_menu.py +0 -0
  2461. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/ui/base/flow_layout.py +0 -0
  2462. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/ui/dialog/__init__.py +0 -0
  2463. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/ui/dialog/about.py +0 -0
  2464. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/ui/dialog/applog.py +0 -0
  2465. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/ui/dialog/assistant.py +0 -0
  2466. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/ui/dialog/assistant_store.py +0 -0
  2467. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/ui/dialog/changelog.py +0 -0
  2468. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/ui/dialog/create.py +0 -0
  2469. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/ui/dialog/db.py +0 -0
  2470. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/ui/dialog/debug.py +0 -0
  2471. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/ui/dialog/dictionary.py +0 -0
  2472. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/ui/dialog/editor.py +0 -0
  2473. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/ui/dialog/find.py +0 -0
  2474. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/ui/dialog/image.py +0 -0
  2475. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/ui/dialog/license.py +0 -0
  2476. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/ui/dialog/logger.py +0 -0
  2477. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/ui/dialog/models.py +0 -0
  2478. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/ui/dialog/models_importer.py +0 -0
  2479. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/ui/dialog/plugins.py +0 -0
  2480. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/ui/dialog/preset_plugins.py +0 -0
  2481. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/ui/dialog/profile.py +0 -0
  2482. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/ui/dialog/rename.py +0 -0
  2483. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/ui/dialog/settings.py +0 -0
  2484. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/ui/dialog/snap.py +0 -0
  2485. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/ui/dialog/start.py +0 -0
  2486. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/ui/dialog/update.py +0 -0
  2487. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/ui/dialog/url.py +0 -0
  2488. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/ui/dialog/workdir.py +0 -0
  2489. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/ui/dialogs.py +0 -0
  2490. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/ui/layout/__init__.py +0 -0
  2491. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/ui/layout/chat/__init__.py +0 -0
  2492. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/ui/layout/chat/attachments.py +0 -0
  2493. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/ui/layout/chat/attachments_ctx.py +0 -0
  2494. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/ui/layout/chat/attachments_uploaded.py +0 -0
  2495. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/ui/layout/chat/calendar.py +0 -0
  2496. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/ui/layout/chat/chat.py +0 -0
  2497. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/ui/layout/chat/explorer.py +0 -0
  2498. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/ui/layout/chat/input.py +0 -0
  2499. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/ui/layout/chat/markdown.py +0 -0
  2500. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/ui/layout/chat/output.py +0 -0
  2501. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/ui/layout/chat/painter.py +0 -0
  2502. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/ui/layout/ctx/__init__.py +0 -0
  2503. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/ui/layout/ctx/ctx.py +0 -0
  2504. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/ui/layout/ctx/ctx_list.py +0 -0
  2505. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/ui/layout/ctx/search_input.py +0 -0
  2506. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/ui/layout/ctx/video.py +0 -0
  2507. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/ui/layout/status.py +0 -0
  2508. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/ui/layout/toolbox/__init__.py +0 -0
  2509. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/ui/layout/toolbox/agent.py +0 -0
  2510. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/ui/layout/toolbox/agent_llama.py +0 -0
  2511. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/ui/layout/toolbox/assistants.py +0 -0
  2512. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/ui/layout/toolbox/computer_env.py +0 -0
  2513. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/ui/layout/toolbox/indexes.py +0 -0
  2514. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/ui/layout/toolbox/mode.py +0 -0
  2515. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/ui/layout/toolbox/model.py +0 -0
  2516. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/ui/layout/toolbox/presets.py +0 -0
  2517. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/ui/layout/toolbox/prompt.py +0 -0
  2518. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/ui/layout/toolbox/toolbox.py +0 -0
  2519. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/ui/layout/toolbox/vision.py +0 -0
  2520. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/ui/menu/__init__.py +0 -0
  2521. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/ui/menu/about.py +0 -0
  2522. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/ui/menu/audio.py +0 -0
  2523. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/ui/menu/config.py +0 -0
  2524. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/ui/menu/debug.py +0 -0
  2525. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/ui/menu/file.py +0 -0
  2526. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/ui/menu/lang.py +0 -0
  2527. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/ui/menu/menu.py +0 -0
  2528. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/ui/menu/plugins.py +0 -0
  2529. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/ui/menu/theme.py +0 -0
  2530. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/ui/menu/tools.py +0 -0
  2531. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/ui/menu/video.py +0 -0
  2532. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/ui/tray.py +0 -0
  2533. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/ui/widget/__init__.py +0 -0
  2534. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/ui/widget/anims/loader.py +0 -0
  2535. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/ui/widget/anims/toggles.py +0 -0
  2536. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/ui/widget/audio/__init__.py +0 -0
  2537. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/ui/widget/audio/bar.py +0 -0
  2538. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/ui/widget/audio/input.py +0 -0
  2539. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/ui/widget/audio/input_button.py +0 -0
  2540. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/ui/widget/audio/output.py +0 -0
  2541. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/ui/widget/calendar/select.py +0 -0
  2542. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/ui/widget/dialog/__init__.py +0 -0
  2543. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/ui/widget/dialog/alert.py +0 -0
  2544. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/ui/widget/dialog/applog.py +0 -0
  2545. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/ui/widget/dialog/assistant_store.py +0 -0
  2546. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/ui/widget/dialog/audio.py +0 -0
  2547. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/ui/widget/dialog/base.py +0 -0
  2548. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/ui/widget/dialog/confirm.py +0 -0
  2549. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/ui/widget/dialog/create.py +0 -0
  2550. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/ui/widget/dialog/db.py +0 -0
  2551. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/ui/widget/dialog/debug.py +0 -0
  2552. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/ui/widget/dialog/editor.py +0 -0
  2553. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/ui/widget/dialog/editor_file.py +0 -0
  2554. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/ui/widget/dialog/find.py +0 -0
  2555. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/ui/widget/dialog/image.py +0 -0
  2556. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/ui/widget/dialog/info.py +0 -0
  2557. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/ui/widget/dialog/license.py +0 -0
  2558. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/ui/widget/dialog/logger.py +0 -0
  2559. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/ui/widget/dialog/model.py +0 -0
  2560. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/ui/widget/dialog/model_importer.py +0 -0
  2561. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/ui/widget/dialog/preset_plugins.py +0 -0
  2562. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/ui/widget/dialog/profile.py +0 -0
  2563. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/ui/widget/dialog/rename.py +0 -0
  2564. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/ui/widget/dialog/settings.py +0 -0
  2565. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/ui/widget/dialog/settings_plugin.py +0 -0
  2566. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/ui/widget/dialog/snap.py +0 -0
  2567. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/ui/widget/dialog/update.py +0 -0
  2568. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/ui/widget/dialog/url.py +0 -0
  2569. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/ui/widget/dialog/workdir.py +0 -0
  2570. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/ui/widget/draw/__init__.py +0 -0
  2571. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/ui/widget/draw/painter.py +0 -0
  2572. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/ui/widget/element/__init__.py +0 -0
  2573. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/ui/widget/element/button.py +0 -0
  2574. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/ui/widget/element/checkbox.py +0 -0
  2575. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/ui/widget/element/group.py +0 -0
  2576. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/ui/widget/element/labels.py +0 -0
  2577. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/ui/widget/filesystem/explorer.py +0 -0
  2578. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/ui/widget/image/__init__.py +0 -0
  2579. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/ui/widget/image/display.py +0 -0
  2580. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/ui/widget/lists/__init__.py +0 -0
  2581. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/ui/widget/lists/assistant.py +0 -0
  2582. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/ui/widget/lists/assistant_store.py +0 -0
  2583. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/ui/widget/lists/attachment.py +0 -0
  2584. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/ui/widget/lists/attachment_ctx.py +0 -0
  2585. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/ui/widget/lists/base.py +0 -0
  2586. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/ui/widget/lists/base_combo.py +0 -0
  2587. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/ui/widget/lists/base_list_combo.py +0 -0
  2588. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/ui/widget/lists/context.py +0 -0
  2589. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/ui/widget/lists/db.py +0 -0
  2590. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/ui/widget/lists/debug.py +0 -0
  2591. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/ui/widget/lists/experts.py +0 -0
  2592. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/ui/widget/lists/index.py +0 -0
  2593. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/ui/widget/lists/index_combo.py +0 -0
  2594. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/ui/widget/lists/llama_mode_combo.py +0 -0
  2595. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/ui/widget/lists/mode.py +0 -0
  2596. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/ui/widget/lists/mode_combo.py +0 -0
  2597. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/ui/widget/lists/model.py +0 -0
  2598. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/ui/widget/lists/model_combo.py +0 -0
  2599. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/ui/widget/lists/model_editor.py +0 -0
  2600. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/ui/widget/lists/model_importer.py +0 -0
  2601. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/ui/widget/lists/plugin.py +0 -0
  2602. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/ui/widget/lists/preset.py +0 -0
  2603. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/ui/widget/lists/preset_plugins.py +0 -0
  2604. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/ui/widget/lists/profile.py +0 -0
  2605. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/ui/widget/lists/settings.py +0 -0
  2606. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/ui/widget/lists/uploaded.py +0 -0
  2607. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/ui/widget/option/__init__.py +0 -0
  2608. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/ui/widget/option/checkbox.py +0 -0
  2609. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/ui/widget/option/checkbox_list.py +0 -0
  2610. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/ui/widget/option/cmd.py +0 -0
  2611. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/ui/widget/option/dictionary.py +0 -0
  2612. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/ui/widget/option/input.py +0 -0
  2613. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/ui/widget/option/prompt.py +0 -0
  2614. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/ui/widget/option/slider.py +0 -0
  2615. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/ui/widget/option/textarea.py +0 -0
  2616. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/ui/widget/option/toggle.py +0 -0
  2617. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/ui/widget/option/toggle_label.py +0 -0
  2618. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/ui/widget/tabs/Input.py +0 -0
  2619. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/ui/widget/tabs/__init__.py +0 -0
  2620. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/ui/widget/tabs/body.py +0 -0
  2621. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/ui/widget/tabs/layout.py +0 -0
  2622. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/ui/widget/tabs/output.py +0 -0
  2623. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/ui/widget/textarea/__init__.py +0 -0
  2624. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/ui/widget/textarea/calendar_note.py +0 -0
  2625. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/ui/widget/textarea/console.py +0 -0
  2626. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/ui/widget/textarea/create.py +0 -0
  2627. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/ui/widget/textarea/editor.py +0 -0
  2628. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/ui/widget/textarea/find.py +0 -0
  2629. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/ui/widget/textarea/html.py +0 -0
  2630. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/ui/widget/textarea/input.py +0 -0
  2631. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/ui/widget/textarea/name.py +0 -0
  2632. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/ui/widget/textarea/notepad.py +0 -0
  2633. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/ui/widget/textarea/output.py +0 -0
  2634. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/ui/widget/textarea/rename.py +0 -0
  2635. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/ui/widget/textarea/search_input.py +0 -0
  2636. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/ui/widget/textarea/url.py +0 -0
  2637. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/ui/widget/textarea/web.py +0 -0
  2638. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/ui/widget/vision/__init__.py +0 -0
  2639. {pygpt_net-2.6.29 → pygpt_net-2.6.31}/src/pygpt_net/ui/widget/vision/camera.py +0 -0
@@ -0,0 +1,2940 @@
1
+ # CHANGELOG
2
+
3
+ ## 2.6.31 (2025-09-01)
4
+
5
+ - Chat with Audio mode renamed to Realtime + audio.
6
+ - Added support for real-time audio models from OpenAI (Realtime API) and Google (Live API), featuring real-time audio integration (beta).
7
+ - Introduced new predefined models: gpt-realtime, gpt-4o-realtime-preview, and gemini-2.5-flash-preview-native-audio-dialog.
8
+ - Included Google Gen AI audio input and output providers in the Audio Input/Output plugins.
9
+ - Added URL Context remote tool support in Google Gen AI.
10
+
11
+ ## 2.6.30 (2025-08-29)
12
+
13
+ - Added native Google GenAI API support (beta); live audio is not supported yet (#132).
14
+ - Added new predefined models for image generation: Google Imagen3 and Imagen4.
15
+ - Optimized token usage in the Responses API.
16
+ - Removed Vision mode (it is now integrated into Chat).
17
+
18
+ ## 2.6.29 (2025-08-28)
19
+
20
+ - Verbose options have been moved to the Developer section in settings.
21
+ - Enhanced logging of embeddings usage.
22
+ - Fixed styles list.
23
+
24
+ ## 2.6.28 (2025-08-27)
25
+
26
+ - Added new plugins: Tuya (IoT) and Wikipedia.
27
+ - Improved formatting of JSON command output.
28
+ - Fixed CSS issues.
29
+
30
+ ## 2.6.27 (2025-08-26)
31
+
32
+ - Simplified audio input: A microphone icon has been added to the input field.
33
+
34
+ ## 2.6.26 (2025-08-26)
35
+
36
+ - Added new provider: OpenRouter (#133).
37
+
38
+ ## 2.6.25 (2025-08-26)
39
+
40
+ - Fixed the empty agent ID issue in OpenAI Agents evaluation.
41
+ - Added the ability to select a custom model for evaluation.
42
+ - Added embedding providers: Anthropic, Deepseek, MistralAI, xAI, VoyageAI.
43
+
44
+ ## 2.6.24 (2025-08-26)
45
+
46
+ - Added a new option: LlamaIndex -> Embeddings -> Default embedding providers for attachments.
47
+ - The same model provider is now used for both embedding and RAG query in attachment indexing.
48
+ - Translations have been added to Agents.
49
+ - Fixed fetching Anthropic models list.
50
+ - Added Google GenAI Embeddings.
51
+
52
+ ## 2.6.23 (2025-08-25)
53
+
54
+ - Added an inline "Add a new chat" button to the right of the tabs.
55
+ - Added an "Add Attachment" button in the input field.
56
+ - Improved file open in the system's file manager
57
+ - Fixed the restoration of input text color when changing themes from light to dark.
58
+ - Fixed last eval step finish if 100% complete.
59
+
60
+ ## 2.6.22 (2025-08-25)
61
+
62
+ - UI refactor and optimizations.
63
+
64
+ ## 2.6.21 (2025-08-24)
65
+
66
+ - Ollama models are now available in OpenAI Agents mode.
67
+ - Improved parsing of responses from Agents.
68
+ - Fix: do not initialize index in Agents mode if not provided.
69
+ - Fix: agent response evaluation steps limit.
70
+ - Fix: do not execute code in agents if Tools are disabled.
71
+ - Refactoring.
72
+
73
+ ## 2.6.20 (2025-08-22)
74
+
75
+ - Added a new plugin: Server (FTP/SSH) - connect to remote servers using FTP, SFTP, and SSH. Execute remote commands, upload, download, and more (beta).
76
+ - Added support for Wayland in Snap/compiled versions.
77
+
78
+ ## 2.6.19 (2025-08-22)
79
+
80
+ - Fixed: added prevention for summarizing an empty context.
81
+ - Improved the speed of context item refreshing.
82
+
83
+ ## 2.6.18 (2025-08-21)
84
+
85
+ - Refactor and optimizations.
86
+ - Fix: Evolve agent stop event calling.
87
+
88
+ ## 2.6.17 (2025-08-21)
89
+
90
+ - Optimized profile switching.
91
+ - Fixed: setting initial splitter size on first launch.
92
+ - Added smoother view reload.
93
+
94
+ ## 2.6.16 (2025-08-20)
95
+
96
+ - Fixed: Attachment string joining.
97
+ - Improved expert function calls.
98
+ - Added sorting to the plugin list.
99
+
100
+ ## 2.6.15 (2025-08-20)
101
+
102
+ - Added: do not change the context menu font size in text editing.
103
+ - Added: do not reload context items on tab change if already loaded.
104
+ - Fixed: appending of names and avatars in the stream chunk.
105
+
106
+ ## 2.6.14 (2025-08-19)
107
+
108
+ - Fixed: Agent evaluation tool runs even if tools are disabled.
109
+ - Extended agent response evaluation by providing the full context of the output.
110
+
111
+ ## 2.6.13 (2025-08-19)
112
+
113
+ - Fix: Do not load the index in experts if it is not provided.
114
+ - Fix: Load remote images in the webview.
115
+ - Fix: Presets list refresh.
116
+ - Optimize context items reload.
117
+
118
+ ## 2.6.12 (2025-08-19)
119
+
120
+ - Optimized web renderer memory cleanup.
121
+
122
+ ## 2.6.11 (2025-08-18)
123
+
124
+ - Added the ability to close the dialog window with the Esc key.
125
+ - Made context item deletion without output refresh.
126
+ - Optimizations.
127
+
128
+ ## 2.6.10 (2025-08-17)
129
+
130
+ - Enhanced the handling of the context list.
131
+ - Integrated RAG into OpenAI Agents.
132
+ - Enhanced RAG management in Agents.
133
+ - Added an option: Config -> Agents -> General -> Auto-retrieve additional context from RAG.
134
+ - Included Google Docs, Maps, and Colab in the Google plugin.
135
+
136
+ ## 2.6.9 (2025-08-17)
137
+
138
+ - Added two new agents for LlamaIndex and OpenAI: Supervisor and Worker (beta).
139
+
140
+ ## 2.6.8 (2025-08-16)
141
+
142
+ - Fixed: updated paragraph color on theme switch.
143
+ - Added switching to duplicated preset after creation.
144
+ - Reduced delay after selecting context.
145
+ - Optimized rendering of mathematical formulas.
146
+
147
+ ## 2.6.7 (2025-08-16)
148
+
149
+ - Fix: missing entity sanitize.
150
+
151
+ ## 2.6.6 (2025-08-16)
152
+
153
+ - Output rendering optimization.
154
+
155
+ ## 2.6.5 (2025-08-16)
156
+
157
+ - Fix: crash when creating a context in a new group.
158
+ - Fix: high CPU usage after switching profiles.
159
+
160
+ ## 2.6.4 (2025-08-15)
161
+
162
+ - Fix: tool execution in OpenAI Agents.
163
+ - Optimizations.
164
+
165
+ ## 2.6.3 (2025-08-15)
166
+
167
+ - Optimized streaming and CPU usage.
168
+ - Fixed crash on set label color and ctx duplicate.
169
+
170
+ ## 2.6.2 (2025-08-15)
171
+
172
+ - Added plugins (beta): Google, Facebook, X/Twitter, Telegram, Slack, GitHub, Bitbucket.
173
+
174
+ ## 2.6.1 (2025-08-14)
175
+
176
+ - LlamaIndex Agents refactored to Workflows.
177
+
178
+ ## 2.6.0 (2025-08-13)
179
+
180
+ - Added split responses to the OpenAI Agents in non-streaming mode.
181
+ - Disabled auto-scroll when manually scrolled to the top.
182
+ - Increased scrollbar width in the light theme.
183
+ - Optimized the clearing of the streaming buffer.
184
+ - Optimized imports.
185
+ - Made CSS improvements.
186
+
187
+ ## 2.5.98 (2025-08-12)
188
+
189
+ - Added support for GPT-5 in LlamaIndex/Chat with Files mode.
190
+ - Experts are now allowed in all OpenAI agent types.
191
+ - Improved the output of OpenAI agents (separated context items).
192
+ - Refactored memory cleanup for thread workers.
193
+ - Optimized streaming.
194
+
195
+ ## 2.5.97 (2025-08-11)
196
+
197
+ - Fix: attribute error in prev ctx.
198
+
199
+ ## 2.5.96 (2025-08-10)
200
+
201
+ - Fixed memory leaks.
202
+
203
+ ## 2.5.95 (2025-08-09)
204
+
205
+ - Added user info personalization in Config -> Personalization, where you can provide information about yourself to the model.
206
+ - Added presets personalization with configurable AI names and avatars.
207
+ - Added a search field in the Translator tool.
208
+ - Fixed <> tags replacement in code blocks.
209
+
210
+ ## 2.5.94 (2025-08-09)
211
+
212
+ - Added a new LLM provider: HuggingFace Router.
213
+ - Introduced a new model: gpt-oss (OpenAI open-source model available in HuggingFace and Ollama).
214
+ - Added a new agent mode in OpenAI Agents: Bot 2 Bot.
215
+ - Fixed: Storing the last used context ID when empty.
216
+ - Fixed: Reloading items when an agent run is stopped.
217
+
218
+ ## 2.5.93 (2025-08-08)
219
+
220
+ - Added a new tool: Translate - in menu Tools - feature #123.
221
+
222
+ ## 2.5.92 (2025-08-08)
223
+
224
+ - Added max files to store config option in Audio -> Cache.
225
+
226
+ ## 2.5.91 (2025-08-08)
227
+
228
+ - Added GPT-5.
229
+ - Added audio cache - #118.
230
+
231
+ ## 2.5.90 (2025-08-07)
232
+
233
+ - Fix: Initialize context summary if a conversation starts with a tool call.
234
+ - Fix: Store splitter positions even if the object is deleted from memory.
235
+ - Update: CSS improvements.
236
+
237
+ ## 2.5.89 (2025-08-07)
238
+
239
+ - Added audio output device selection in Config -> Audio - issue #117
240
+ - Added audio input and output backend selections in Config -> Audio.
241
+
242
+ ## 2.5.88 (2025-08-06)
243
+
244
+ - Optimized the process of unloading tabs from memory.
245
+ - Reduced initial RAM usage on launch.
246
+ - Added a handler for the SIGTERM signal.
247
+
248
+ ## 2.5.87 (2025-08-05)
249
+
250
+ - Optimized memory cleanup.
251
+
252
+ ## 2.5.86 (2025-08-04)
253
+
254
+ - Optimized CPU and memory usage.
255
+ - OpenAI vector stores tool added to Tools menu.
256
+ - Fixed schema parsing for tools in Agent (OpenAI) mode.
257
+ - Fixed multi-threading when uploading to remote vector store.
258
+ - Fixed Urls open in Snap.
259
+
260
+ ## 2.5.85 (2025-08-02)
261
+
262
+ - Added importer for models from providers in Config -> Models -> Import... - #127
263
+ - Fix: options save in models editor.
264
+
265
+ ## 2.5.84 (2025-08-02)
266
+
267
+ - Added a new OpenAI agent mode: Evolve. You can find its description in the documentation under the section Modes -> Agent (OpenAI).
268
+
269
+ ## 2.5.83 (2025-08-01)
270
+
271
+ - Improved streaming in Agent (OpenAI) mode.
272
+ - Improved loading of default options in presets.
273
+ - Added context summary event if the kernel stopped.
274
+ - Implemented dynamic width for opened combo boxes.
275
+
276
+ ## 2.5.82 (2025-08-01)
277
+
278
+ - Added a new OpenAI agents: researcher, planner, feedback.
279
+
280
+ ## 2.5.81 (2025-07-31)
281
+
282
+ - Disabled remote tools by default in non-OpenAI providers in Agent (OpenAI) mode.
283
+ - Removed unsupported models from Agent (OpenAI) mode.
284
+
285
+ ## 2.5.80 (2025-07-30)
286
+
287
+ - Improved the stop command in Agent mode: added saving of current output on break.
288
+ - Fixed the experts providers list in Agent (LlamaIndex): now only Llama providers are displayed.
289
+ - Added max_turns configuration to Agent (OpenAI), shared with Agents -> Max steps configuration option value.
290
+
291
+ ## 2.5.79 (2025-07-30)
292
+
293
+ - Added prevent text break on input send when the cursor is inside the text.
294
+ - Fix: updating expert IDs on preset save.
295
+ - Added notification if no agent is selected.
296
+ - Disabled FFmpeg warnings.
297
+
298
+ ## 2.5.78 (2025-07-30)
299
+
300
+ - Added support for Python 3.13.
301
+ - Fixed history prepare in Agent (LlamaIndex) mode.
302
+
303
+ ## 2.5.77 (2025-07-30)
304
+
305
+ - Fix: history prepare in Agent (OpenAI) mode.
306
+ - Agent response evaluation splitted into two modes: by the percentage of task completion and by accuracy.
307
+
308
+ ## 2.5.76 (2025-07-30)
309
+
310
+ - Added a new mode: Agent (OpenAI) and integrated `openai-agents` into the app (beta).
311
+
312
+ ## 2.5.75 (2025-07-28)
313
+
314
+ - Fix: context append in LlamaIndex agents.
315
+
316
+ ## 2.5.74 (2025-07-28)
317
+
318
+ - Fix: mouse buttons handling in Computer use mode.
319
+ - Added double click handler.
320
+
321
+ ## 2.5.73 (2025-07-28)
322
+
323
+ - Stream rendering optimization, reduced CPU usage.
324
+ - Fix: < and > rendering in math formulas.
325
+ - Fix: do not automatically add tools to the agent when the inline plugin is enabled but the Tools option is not enabled.
326
+ - Fix: corrected saving of the last context element when the stream is interrupted.
327
+ - Fix: unlock response regeneration after stopped event.
328
+
329
+ ## 2.5.72 (2025-07-27)
330
+
331
+ - Improved stop command.
332
+
333
+ ## 2.5.71 (2025-07-27)
334
+
335
+ - Added a new working mode: `Computer use` for autonomous navigation in the user's environment (beta; utilizes the `Computer use` remote tool and the model `computer-use-preview`).
336
+ - Added a new remote tool: `Remote MCP` (with configuration in Settings -> Remote Tools).
337
+ - Added a new remote tool: `File Search` (with configuration in Settings -> Remote Tools).
338
+ - Added a new option `Always continue...` to Agent (autonomous) plugin settings.
339
+
340
+ ## 2.5.70 (2025-07-26)
341
+
342
+ - Added separate config for Responses API for expert instances.
343
+ - Added a new model: mistral-small3.1.
344
+
345
+ ## 2.5.69 (2025-07-25)
346
+
347
+ - The Responses API and remote tools are now allowed in Agent (autonomous) and Expert modes. Default: disabled.
348
+ - Added separate options in the configuration for enabling the Responses API in: Config -> Agents and Experts.
349
+ - Improved expert and agents system prompt.
350
+
351
+ ## 2.5.68 (2025-07-25)
352
+
353
+ - Added a separate configuration to enable or disable native function calls in both agent and expert modes.
354
+
355
+ ## 2.5.67 (2025-07-25)
356
+
357
+ - Added native tool call functionality in Experts.
358
+ - Enhanced the use of multiple tool calls in Experts.
359
+ - Fixed the display of Expert names when responding.
360
+ - Improved context history handling in Experts.
361
+
362
+ ## 2.5.66 (2025-07-24)
363
+
364
+ - Fixed the issue where input focus was lost on the initial context summary.
365
+ - Added input focus at application startup.
366
+
367
+ ## 2.5.65 (2025-07-24)
368
+
369
+ - Improved expert and agent calls and response rendering.
370
+ - Fixed duplicate goal completion in autonomous mode.
371
+
372
+ ## 2.5.64 (2025-07-23)
373
+
374
+ - Updated the system prompts.
375
+ - Allowed native tool calls in Chat with Files when the agent is not enabled.
376
+
377
+ ## 2.5.63 (2025-07-23)
378
+
379
+ - Agent mode improvements.
380
+ - Custom system prompt allowed for all agent types.
381
+
382
+ ## 2.5.62 (2025-07-23)
383
+
384
+ - Enhanced system prompt append to planner agent in Experts.
385
+
386
+ ## 2.5.61 (2025-07-23)
387
+
388
+ - Enhanced expert and autonomous agent modes.
389
+ - Added streaming output from the agent in Chat with Files mode.
390
+ - Introduced a planner agent as the engine for experts.
391
+ - Fixed issue with goal completion in autonomous agent mode.
392
+ - Resolved CSS issues with sliders on Windows.
393
+
394
+ ## 2.5.60 (2025-07-22)
395
+
396
+ - Improved CSS.
397
+ - Added a new color themes: Light, Light:Gray, Dark, Dark:Gray, Dark:Darker.
398
+
399
+ ## 2.5.59 (2025-07-22)
400
+
401
+ - Added missing locales.
402
+ - Fix tab title rename on context rename.
403
+
404
+ ## 2.5.58 (2025-07-21)
405
+
406
+ - Fix: Google API tool prepare requests.
407
+ - Added delay to search input update.
408
+ - Added per provider empty API key monits.
409
+
410
+ ## 2.5.57 (2025-07-21)
411
+
412
+ - Fix: context summary worker initialization.
413
+ - Fix: loading spinner in Assistants mode.
414
+
415
+ ## 2.5.56 (2025-07-21)
416
+
417
+ - Improved data reload after profile switch.
418
+
419
+ ## 2.5.55 (2025-07-21)
420
+
421
+ - Fixed tab title reload.
422
+ - Fixed restore selection after pin/unpin.
423
+ - Added tabs debugger.
424
+ - Removed JSON output string from tool output.
425
+
426
+ ## 2.5.54 (2025-07-20)
427
+
428
+ - Fixed reloading chat items if second column is focused.
429
+ - Increased chat tab titles to 15 chars.
430
+ - Removed gpt-4.5-preview from models - issue #121.
431
+ - Updated CSS for images.
432
+
433
+ ## 2.5.53 (2025-07-19)
434
+
435
+ - Improved context list context menu.
436
+ - Improved presets list context menu.
437
+ - Chat icons changed to SVG.
438
+ - API organization key added to container file download request.
439
+ - Fixed switch to idle after tool call in agent mode.
440
+
441
+ ## 2.5.52 (2025-07-19)
442
+
443
+ - Added automatic files and images download from Response API / remote Code Interpreter containers.
444
+
445
+ ## 2.5.51 (2025-07-18)
446
+
447
+ - Updated CSS, removed uppercase from tabs and buttons.
448
+ - Fixed tab names translations.
449
+
450
+ ## 2.5.50 (2025-07-18)
451
+
452
+ - Improved tabs handling in split-screen.
453
+
454
+ ## 2.5.49 (2025-07-18)
455
+
456
+ - Added binary image output handling to docker kernel in Code Interpreter.
457
+ - Added score display in agent loop/evaluation mode.
458
+ - Added auto-recovery from base config if config file is corrupted.
459
+ - Profile move and duplicate moved to separated thread.
460
+
461
+ ## 2.5.48 (2025-07-17)
462
+
463
+ - Added binary image output handling from Code Interpreter.
464
+ - Added auto-restart IPython kernel on failure or not initialized.
465
+ - Improved agents loop and evaluation.
466
+ - Added LlamaIndex provider config for Grok.
467
+
468
+ ## 2.5.47 (2025-07-17)
469
+
470
+ - Disabled output clear on kernel restart in Code Interpreter.
471
+
472
+ ## 2.5.46 (2025-07-17)
473
+
474
+ - Fix: kernel resume after Docker image rebuild.
475
+ - Fix: update history after output clear in Code Interpreter.
476
+
477
+ ## 2.5.45 (2025-07-16)
478
+
479
+ - Improved IPython kernel restart in Docker container.
480
+ - Fixed Ctrl+F Find shortcut.
481
+ - Decreased tabulation size in text inputs.
482
+ - Added kernel restart and clear output to Code Interpreter RMB context menu.
483
+
484
+ ## 2.5.44 (2025-07-16)
485
+
486
+ - Code syntax highlighting added to the Code Interpreter tool.
487
+ - Image output functionality integrated into the Code Interpreter tool.
488
+ - Improved/fixed connection with Docker containers.
489
+ - Fixed parsing of integer parameters from plugins.
490
+ - Fixed 'Add tool' option in tabs + button.
491
+
492
+ ## 2.5.43 (2025-07-15)
493
+
494
+ - Improved IPython code execution.
495
+ - Added lock for kernel restarting in Code Interepreter to prevent crash if kernel not ready.
496
+
497
+ ## 2.5.42 (2025-07-15)
498
+
499
+ - Connected Run code button in python code blocks to IPython (if enabled).
500
+ - Updated CSS.
501
+
502
+ ## 2.5.41 (2025-07-14)
503
+
504
+ - Fixed: vector stores handling in Assistants API SDK.
505
+ - Added: Run button to Python code blocks for real-time code executing in Code Interpreter.
506
+ - Updated documentation.
507
+
508
+ ## 2.5.40 (2025-07-14)
509
+
510
+ - Enhanced system prompts.
511
+ - Increased default Ollama request timeout to 300s.
512
+ - Improved function calling.
513
+ - Added option 'Tool calls (native)' to models config.
514
+
515
+ ## 2.5.39 (2025-07-13)
516
+
517
+ - Improved multiple notepads handling.
518
+
519
+ ## 2.5.38 (2025-07-13)
520
+
521
+ - Fixed: empty models list in presets editor.
522
+ - Fixed: focus to second column on open Code Interpreter dialog.
523
+ - Added: agent providers names.
524
+ - Added: ReAct (Workflow) agent.
525
+ - Improved: split-screen switch.
526
+
527
+ ## 2.5.37 (2025-07-13)
528
+
529
+ - Improved multi-threading and async calls.
530
+ - Added loading spinner.
531
+ - Added live output from CodeAct agent.
532
+ - UI fixes.
533
+
534
+ ## 2.5.36 (2025-07-12)
535
+
536
+ - Improved UI, updated CSS.
537
+ - Added: collapse/expand button to code blocks.
538
+ - Added: preview code button to HTML code blocks.
539
+ - Added: provider separators in models list.
540
+ - Added: grok-4 model.
541
+
542
+ ## 2.5.35 (2025-07-11)
543
+
544
+ - Improved CodeAct Agent: extended prompt, added work directory handling, auto-installation of missing libraries, and generation of images and plots.
545
+
546
+ ## 2.5.34 (2025-07-11)
547
+
548
+ - Added: tool calls in CodeAct Agent.
549
+ - Added: multimodal/vision in Chat with Files mode.
550
+
551
+ ## 2.5.33 (2025-07-10)
552
+
553
+ - Added: CodeAct Agent, integrated with Code Interpreter plugin (beta).
554
+ - Fixed: IPython kernel restarting in Code Interpreter plugin.
555
+
556
+ ## 2.5.32 (2025-07-10)
557
+
558
+ - Fixed: File manager opening in Snap version.
559
+ - Fixed: Maximum scroll position calculation in the notepad.
560
+ - Fixed: Updating the message list after regenerating/editing a response.
561
+ - Added: Option to hide timestamps in the web view.
562
+
563
+ ## 2.5.31 (2025-07-10)
564
+
565
+ - Added: Mistral AI provider - feature #99.
566
+ - Added: A new option in Config -> Settings -> Indexes (LlamaIndex) -> Chat -> Auto-retrieve additional context.
567
+ - Fixed: Voice control using local Whisper model empty context - issue #113.
568
+
569
+ ## 2.5.30 (2025-07-09)
570
+
571
+ - Fixed: Passing config to placeholders in LlamaIndex model kwargs - issue #112.
572
+ - Fixed: Custom commands plugin unhashable dict bug - issue #108.
573
+ - Fixed: Attempt to read .env in the /home directory in Snap - issue #116.
574
+ - Downgraded Numpy to < 2.0.
575
+
576
+ ## 2.5.29 (2025-07-09)
577
+
578
+ - Fixed: context auto-summary if history is disable.
579
+ - Added: Anthropic base provider.
580
+ - Added: multimodal config in models.
581
+ - Added: vision in non-GPT models in Chat mode.
582
+
583
+ ## 2.5.28 (2025-07-08)
584
+
585
+ - Fixed: Restoring the scrollbar value in the notepad.
586
+ - Fixed: Improved math formula rendering.
587
+ - Fixed: "Save as Text" option functionality.
588
+ - Added: Set the model key to equal the model ID when saving in the model editor.
589
+
590
+ ## 2.5.27 (2025-07-01)
591
+
592
+ - Added Code Interpreter tool to Responses API. Disabled by default, you can enable in: Settings -> Remote Tools.
593
+ - Added a new models: o3-deep-research, o4-mini-deep-research, codex-mini-latest.
594
+ - Added a new option in Settings -> Indexes: Use ReAct agent for Tool calls in Chat with Files mode.
595
+
596
+ ## 2.5.26 (2025-07-01)
597
+
598
+ - Improved mode switch in background.
599
+
600
+ ## 2.5.25 (2025-07-01)
601
+
602
+ - Tool calls in Chat with Files mode moved to ReAct agent.
603
+
604
+ ## 2.5.24 (2025-06-30)
605
+
606
+ - Added attachments and image edits in Image mode.
607
+ - Extended tool calls in LlamaIndex mode.
608
+ - Added llama-index-llms-google-genai to dependencies.
609
+
610
+ ## 2.5.23 (2025-06-30)
611
+
612
+ - Perplexity added to LlamaIndex providers.
613
+ - OpenAI Responses API support (with built-in tools) added to LlamaIndex and Agent modes.
614
+ - Improved models and indexes configuration in plugins.
615
+
616
+ ## 2.5.22 (2025-06-29)
617
+
618
+ - Improved models editor.
619
+
620
+ ## 2.5.21 (2025-06-28)
621
+
622
+ - Fixed JS errors in logger.
623
+ - Updated CSS.
624
+
625
+ ## 2.5.20 (2025-06-28)
626
+
627
+ - LlamaIndex upgraded to 0.12.44.
628
+ - Langchain removed from the list of modes and dependencies.
629
+ - Improved tools execution.
630
+ - Simplified model configuration.
631
+ - Added endpoint configuration for non-OpenAI APIs.
632
+
633
+ ## 2.5.19 (2025-06-27)
634
+
635
+ - Added option to enable/disable `Responses API` in `Config -> Settings -> API Keys -> OpenAI`.
636
+ - Added support for xAI / Grok models, added grok-3 models.
637
+
638
+ ## 2.5.18 (2025-06-26)
639
+
640
+ - Non-GPT models are now available in standard Chat mode.
641
+ - Added a new remote tool: `image_generation` in Responses API -> disabled by default, enable in `Config -> Settings -> Remote Tools`. Enables native image generation and editing of uploaded images in Chat mode.
642
+ - Added a new model `gpt-image-1` and improved image generation.
643
+ - Other small fixes.
644
+
645
+ ## 2.5.17 (2025-06-25)
646
+
647
+ - Added settings for enable/disable Remote Tools via Responses API in Chat mode: Config -> Settings -> Remote tools. Currently only web-search-preview tool is available, rest of tools coming soon.
648
+ - Fixed context summarization in Ollama provider.
649
+
650
+ ## 2.5.16 (2025-06-25)
651
+
652
+ - OpenAI API upgraded to 1.91.0.
653
+ - Chat mode migrated to Responses API with native built-in web search tool. (beta)
654
+ - Fixed file_read tool in I/O plugin.
655
+
656
+ ## 2.5.15 (2025-06-24)
657
+
658
+ - Added Ollama models importer in "Settings -> Models -> Import from Ollama".
659
+ - Fixed Ollama provider in the newest LlamaIndex.
660
+ - Added the ability to set a custom base URL for Ollama -> ENV: OLLAMA_API_BASE.
661
+
662
+ ## 2.5.14 (2025-06-23)
663
+
664
+ - Fix: crash if empty shortcuts in config.
665
+ - Fix: UUID serialization.
666
+
667
+ ## 2.5.13 (2025-06-22)
668
+
669
+ - Disabled auto-switch to vision mode in Painter.
670
+ - UI fixes.
671
+
672
+ ## 2.5.12 (2025-06-22)
673
+
674
+ - Fixed send-mode radio buttons switch.
675
+ - Added a new models: qwen2.5-coder, OpenAI gpt-4.1-mini.
676
+
677
+ ## 2.5.11 (2025-06-21)
678
+
679
+ - Added a new models: OpenAI o1-pro and o3-pro, Anthropic Claude 4.0 Opus and Claude 4.0 Sonnet, Alibaba Qwen and Qwen2.
680
+ - Updated Bielik model from v2.2 to v2.3 / merged PR #101.
681
+ - Fixed HTML output formatting.
682
+ - Fixed empty index in chat mode.
683
+
684
+ ## 2.5.10 (2025-03-06)
685
+
686
+ - Added a new model: Claude 3.7 Sonnet.
687
+ - Fixed the context switch issue when the column changed and the tab is not a chat tab.
688
+ - LlamaIndex upgraded to 0.12.22.
689
+ - LlamaIndex LLMs upgraded to recent versions.
690
+
691
+ ## 2.5.9 (2025-03-05)
692
+
693
+ - Improved formatting of HTML code in the output.
694
+ - Disabled automatic indentation parsing as code blocks.
695
+ - Disabled automatic scrolling of the notepad when opening a tab.
696
+
697
+ ## 2.5.8 (2025-03-02)
698
+
699
+ - Added a new mode: Research (Perplexity) powered by: https://perplexity.ai - beta.
700
+ - Added Perplexity models: sonar, sonar-pro, sonar-deep-research, sonar-reasoning, sonar-reasoning-pro, r1-1776.
701
+ - Added a new OpenAI model: gpt-4.5-preview.
702
+
703
+ ## 2.5.7 (2025-02-26)
704
+
705
+ - Stream mode has been enabled in o1 models.
706
+ - CSS styling for <think> tags (reasoning models) has been added.
707
+ - The search input has been moved to the top.
708
+ - The ChatGPT-based style is now set as default.
709
+ - Fix: Display of max tokens in models with a context window greater than 128k.
710
+
711
+ ## 2.5.6 (2025-02-03)
712
+
713
+ - Fix: disabled index initialization if embedding provider is OpenAI and no API KEY is provided.
714
+ - Fix: embedding provider initialization on empty index.
715
+
716
+ ## 2.5.5 (2025-02-02)
717
+
718
+ - Fix: system prompt apply.
719
+ - Added calendar live update on tab change.
720
+ - Added API Key monit at launch displayed only once.
721
+
722
+ ## 2.5.4 (2025-02-02)
723
+
724
+ - Added new models: `o3-mini` and `gpt-4o-mini-audio-preview`.
725
+ - Enabled tool calls in Chat with Audio mode.
726
+ - Added a check to verify if Ollama is running and if the model is available.
727
+
728
+ ## 2.5.3 (2025-02-01)
729
+
730
+ - Fix: Snap permission denied bug.
731
+ - Fix: column focus on tab change.
732
+ - Datetime separators in groups moved to right side.
733
+
734
+ ## 2.5.2 (2025-02-01)
735
+
736
+ - Fix: spinner update after inline image generation.
737
+ - Added Ollama suffix to Ollama-models in models list.
738
+
739
+ ## 2.5.1 (2025-02-01)
740
+
741
+ - PySide6 upgraded to 6.6.2.
742
+ - Disabled Transformers startup warnings.
743
+
744
+ ## 2.5.0 (2025-01-31)
745
+
746
+ - Added provider for DeepSeek (in Chat with Files mode, beta).
747
+ - Added new models: OpenAI o1, Llama 3.3, DeepSeek V3 and R1 (API + local, with Ollama).
748
+ - Added tool calls for OpenAI o1.
749
+ - Added native vision for OpenAI o1.
750
+ - Fix: tool calls in Ollama provider.
751
+ - Fix: error handling in stream mode.
752
+ - Fix: added check for active plugin tools before tool call.
753
+
754
+ ## 2.4.57 (2025-01-19)
755
+
756
+ - Logging fix.
757
+
758
+ ## 2.4.56 (2025-01-19)
759
+
760
+ - Improved tab switching and focus change.
761
+ - Improved global keyboard shortcuts handling.
762
+
763
+ ## 2.4.55 (2025-01-18)
764
+
765
+ - Added a new option in settings: Audio -> Recording timeout.
766
+ - Added a new option in settings: Audio -> Enable timeout in continuous mode.
767
+
768
+ ## 2.4.54 (2025-01-18)
769
+
770
+ - Audio output switched from PyGame to PyAudio. It may be necessary to manually connect Alsa in Snap version with: "sudo snap connect pygpt:alsa".
771
+ - Added audio output volume progress bar.
772
+
773
+ ## 2.4.53 (2025-01-17)
774
+
775
+ - Fix: issue #89
776
+
777
+ ## 2.4.52 (2025-01-17)
778
+
779
+ - Improved audio input button visibility toggle.
780
+ - Fix: check for required arguments - issue #88.
781
+ - UI Fixes.
782
+
783
+ ## 2.4.51 (2025-01-17)
784
+
785
+ - Added a "Continuous recording" mode under Audio Input in the Notepad tab, allowing for recording long voice notes and real-time auto-transcription. (beta)
786
+ - A new option has been added in Settings -> Audio -> Continuous recording auto-transcribe interval.
787
+
788
+ ## 2.4.50 (2025-01-16)
789
+
790
+ - Refactored audio input core.
791
+ - Added audio input volume progress bar.
792
+
793
+ ## 2.4.49 (2025-01-16)
794
+
795
+ - Fix: stream render in Assistants mode.
796
+ - Fix: items remove in context regen/edit.
797
+
798
+ ## 2.4.48 (2025-01-16)
799
+
800
+ - Fix: parsing lists in data loaders configuration.
801
+ - Fix: crash on Windows on PySide6 v6.6.0.
802
+ - Added Gemini embeddings to LlamaIndex settings.
803
+ - LlamaIndex upgraded to 0.12.11.
804
+ - Security updates.
805
+
806
+ ## 2.4.47 (2025-01-14)
807
+
808
+ - Added support for Python 3.12.
809
+ - Added a new model to Chat with Files: gemini-2.0-flash-exp.
810
+ - PySide6 upgraded to 6.6.0.
811
+
812
+ ## 2.4.46 (2024-12-16)
813
+
814
+ - Added a new tab in Settings: "API Keys", where the API keys configuration for Google and Anthropic models has been relocated.
815
+ - Introduced a new mode in "Chat with Files": "Retrieve Only", which allows for retrieving raw documents from the index.
816
+ - Fixed a bug related to tool calls in the Gemini provider when using Chat with Files mode.
817
+
818
+ ## 2.4.45 (2024-12-16)
819
+
820
+ - Enhanced web data loaders UI.
821
+
822
+ ## 2.4.44 (2024-12-16)
823
+
824
+ - Enhanced web data loaders.
825
+ - Web loaders have been added to attachments, allowing external web content to be attached to context via the "+Web" button in the Attachments tab.
826
+ - Improved handling of attachments in groups and added an attachment icon when a group contains attachments.
827
+
828
+ ## 2.4.43 (2024-12-15)
829
+
830
+ - Fix: Bug on attachment upload.
831
+ - Added: Attachments uploaded in groups are now available for all contexts in the group (beta).
832
+
833
+ ## 2.4.42 (2024-12-15)
834
+
835
+ - Added Mailer plugin, which allows sending and retrieving emails from the server, and reading them. It currently supports only SMTP.
836
+ - Added 'web_request' command to the Web Search plugin, enabling GET/POST/PUT and other connections to any address and API endpoint. It also supports sending POST data, files, headers, cookies, and more.
837
+ - Improved audio output.
838
+ - Enhanced visibility of the Video menu.
839
+ - Other fixes.
840
+
841
+ ## 2.4.41 (2024-12-14)
842
+
843
+ - Improved switching between columns on a split screen.
844
+ - Added visual identification of the active column.
845
+
846
+ ## 2.4.40 (2024-12-13)
847
+
848
+ - Enhanced Split Screen mode, now promoted from beta to stable.
849
+ - Python Code Interpreter tool added to the Tabs.
850
+ - HTML/JS Canvas tool added to the Tabs.
851
+ - Added attachment icon to the context list if context has attachments.
852
+ - Improved audio playback.
853
+ - Improved web search.
854
+ - Added a thumbnail image to web search results.
855
+ - Added a new commands to web search: "extract_images" and "extract_links".
856
+ - Added the option "Use raw content (without summarization)" to the web search plugin, which provides a more detailed result to the main model.
857
+ - Extended the default maximum result characters to 50,000 in the web search plugin.
858
+
859
+ ## 2.4.39 (2024-12-09)
860
+
861
+ - Added "Split Screen" mode (accessible via the switch in the bottom-right corner of the screen), which allows you to work in two windows simultaneously. It is currently experimental (beta). Future updates will include Code Interpreter and Canvas running in tabs.
862
+
863
+ - Fixed: Language switch.
864
+
865
+ ## 2.4.38 (2024-12-08)
866
+
867
+ - Added the ability to select a style for chat display between: Blocks, ChatGPT-like, and ChatGPT-like Wide. New option in the menu: Config -> Theme -> Style...
868
+ - Added configuration options for audio input in Settings -> Audio -> Audio Input Device, Channels, and Sampling rate.
869
+
870
+ ## 2.4.37 (2024-11-30)
871
+
872
+ - The `Query only` mode in `Uploaded` tab has been renamed to `RAG`.
873
+ - New options have been added under `Settings -> Files and Attachments`:
874
+ - `Use history in RAG query`: When enabled, the content of the entire conversation will be used when preparing a query if the mode is set to RAG or Summary.
875
+ - `RAG limit`: This option is applicable only if 'Use history in RAG query' is enabled. It specifies the limit on how many recent entries in the conversation will be used when generating a query for RAG. A value of 0 indicates no limit.
876
+ - Cache: dynamic parts of the system prompt (from plugins) have been moved to the very end of the prompt stack to enable the use of prompt cache mechanisms in OpenAI.
877
+
878
+ ## 2.4.36 (2024-11-28)
879
+
880
+ - Added a new command-line argument: --workdir="/path/to/workdir" to explicitly set the current working directory.
881
+ - Fix: start image generation in Image mode.
882
+
883
+ ## 2.4.35 (2024-11-28)
884
+
885
+ - Docker removed from dependencies in Snap version #82
886
+ - Refactored documentation.
887
+ - Fix: toggles real-time update hook.
888
+ - Fix: missing edit icons.
889
+ - Added tokens from attachments to counters if mode == Full context.
890
+
891
+ ## 2.4.34 (2024-11-26)
892
+
893
+ - Added a new mode: `Chat with Audio`, with built-in multimodal support for audio input/output. Currently in beta, the execution of commands and tools in this mode is temporarily unavailable.
894
+ - Added new models: `gpt-4o-audio-preview`, `gpt-4o-2024-11-20`, `chatgpt-4o-latest`.
895
+ - Force disabled integration with the native system menu.
896
+
897
+ ## 2.4.33 (2024-11-26)
898
+
899
+ - Improved CSS and rendering of file and image lists.
900
+ - Added displaying of used attachments in the chat window.
901
+
902
+ ## 2.4.32 (2024-11-26)
903
+
904
+ - The "Add URL" option added to the "Attachments" tab allows users to include content from a given website as additional context. Currently, it only supports standard web pages and video transcription for YouTube links. More "web" options will be added in the future.
905
+ - Added UTF-8 as default in attachments content text read/write.
906
+
907
+ ## 2.4.31 (2024-11-25)
908
+
909
+ - Added an option checkbox `Auto-index on upload` in the `Attachments` tab:
910
+
911
+ **Tip:** To use the `RAG` mode, the file must be indexed in the vector database. This occurs automatically at the time of upload if the `Auto-index on upload` option in the `Attachments` tab is enabled. When uploading large files, such indexing might take a while - therefore, if you are using the `Full context` option, which does not use the index, you can disable the `Auto-index` option to speed up the upload of the attachment. In this case, it will only be indexed when the `RAG` option is called for the first time, and until then, attachment will be available in the form of `Full context` and `Summary`.
912
+
913
+ - Added context menu options in `Uploaded attachments` tab: `Open`, `Open Source directory` and `Open Storage directory`.
914
+
915
+ ## 2.4.30 (2024-11-25)
916
+
917
+ - Added instruction to model about mapped data directory in both legacy and IPython code interepreter.
918
+ - Updated locales for plugins.
919
+
920
+ ## 2.4.29 (2024-11-25)
921
+
922
+ - Added a local IPython interpreter - you can now choose between local and sandbox (Docker) in the plugin settings.
923
+ - Added the ability to configure mapped volumes and ports for Docker containers in the plugin settings.
924
+ - Optimized and speed-up the Llama-index plugin (inline).
925
+ - Checkboxes replaced with Toggle buttons.
926
+ - Improved settings dialogs.
927
+ - Slight modification of the layout.
928
+ - Fix: Dockerfile formatting in Code Interpreter config.
929
+ - Fix: experts inline plugin execution.
930
+
931
+ ## 2.4.28 (2024-11-24)
932
+
933
+ - Fix: issue #78
934
+
935
+ ## 2.4.27 (2024-11-24)
936
+
937
+ - Profile switch fix.
938
+
939
+ ## 2.4.26 (2024-11-24)
940
+
941
+ - Fix: issue #77
942
+
943
+ ## 2.4.25 (2024-11-24)
944
+
945
+ - Added new plugin: System (OS), with optional sandbox support.
946
+ - Execution of system commands moved to the System plugin.
947
+ - Improved sandbox/Docker management.
948
+ - Enhanced plugin settings.
949
+ - Commands renamed to Tools, simplified layout.
950
+ - Fix: handling of the Mouse and Keyboard plugin.
951
+ - Fix: switching to a new context from a non-chat tab.
952
+ - Fix: camera screenshots when the camera is not started.
953
+
954
+ ## 2.4.24 (2024-11-23)
955
+
956
+ - Added the ability to use ZIP and TAR archives as attachments (they are now unpacked "on the fly").
957
+ - Added the ability to index ZIP and TAR archives (it may be necessary to remove .zip and .tar from the blacklist in the settings).
958
+ - Fix: error when uploading to the /data directory using the Upload files button.
959
+
960
+ ## 2.4.23 (2024-11-23)
961
+
962
+ - Condensed layout widgets margins.
963
+ - Added filename info to provided additional context from attachments.
964
+ - Fixed auto-clear in attachments in Assistants mode.
965
+
966
+ ## 2.4.22 (2024-11-23)
967
+
968
+ - Added the ability to use attachments with images, audio, and video as additional context. Tip: to enable the use of images as additional context, you need to enable the option: `Files and attachments -> Allow images as additional context`.
969
+ - Edit icons in the chat window are enabled by default.
970
+
971
+ ## 2.4.21 (2024-11-23)
972
+
973
+ - Added the ability to send additional context from attachments without needing to activate the "Chat with Files" mode. Now, you just need to attach a file, and the additional context from the file will be available in the conversation. More information can be found in the "Files and attachments" section of the documentation.
974
+
975
+ ## 2.4.20 (2024-11-22)
976
+
977
+ - Fixed freeze in Windows installer. #75
978
+ - Small fixes.
979
+
980
+ ## 2.4.19 (2024-11-22)
981
+
982
+ - Added new LLM providers for Llama-index: HuggingFaceAPI and LocalAI.
983
+ - The IPython interpreter now returns local paths to generated files and images (mapped to: %workdir%/ipython/).
984
+ - Refactored legacy Agent and Expert modes.
985
+ - Fixed Expert mode initialization.
986
+ - Added an option in Settings -> Layout to disable animations.
987
+
988
+ ## 2.4.18 (2024-11-21)
989
+
990
+ - Refactored kernel status and state handling.
991
+ - Fixed: audio input execution.
992
+ - Improved output from tools in Agents.
993
+ - Added status loading animation indicator.
994
+ - Other fixes.
995
+
996
+ ## 2.4.17 (2024-11-20)
997
+
998
+ - Refactored kernel and render events.
999
+ - Added multiple formatted extra outputs from plugins.
1000
+ - Added a 'Reset (clear)' option in the context list for clearing the current context.
1001
+ - Improved agents steps output handling.
1002
+ - Fixed the audio button.
1003
+ - Improved the stop event.
1004
+ - Other small fixes.
1005
+
1006
+ ## 2.4.16 (2024-11-19)
1007
+
1008
+ - Code Interpreter and Files I/O input/output is now displayed in chat window, using syntax highlight.
1009
+ - Refactored plugins structure.
1010
+ - Fix: command execution in Chat in Files mode when no index is selected.
1011
+ - Fix: missing translations in Agent mode.
1012
+
1013
+ ## 2.4.15 (2024-11-18)
1014
+
1015
+ - Vision analysis added to all modes.
1016
+ - Added commands for the Vision plugin: image analysis from an attachment, screenshot analysis, camera image analysis - performed in the background in every mode, without switching to vision mode.
1017
+ - Improved execution of multiple commands at once..
1018
+ - Improved integration with IPython and extended instructions for the model.
1019
+ - Other fixes and improvements.
1020
+
1021
+ ## 2.4.14 (2024-11-17)
1022
+
1023
+ - Added a `Loop / evaluate` mode for Llama-index agents, allowing them to work autonomously in a loop and evaluates the correctness of received results using a percentage scale from 0% to 100%, and automatically continue and correct responses below expected value.
1024
+ - Updated layout: mode and model lists replaced with comboboxes.
1025
+
1026
+ ## 2.4.13 (2024-11-16)**
1027
+
1028
+ - Introduced `Code Interpreter (v2)` with `IPython`: Enables session state retention on a kernel and building on previous computations, allowing for a Jupyter-like workflow, which is useful for iterative development and data analysis. Supports magic commands like `!pip install <package_name>` for package installation within the session. (currently in beta)
1029
+
1030
+ ## 2.4.12 (2024-11-15)
1031
+
1032
+ - Added httpx-socks to the dependencies, enabling the use of SOCKS proxies.
1033
+
1034
+ ## 2.4.11 (2024-11-15)
1035
+
1036
+ - Added a new Llama-index agent: OpenAI Assistant.
1037
+ - Added proxy settings to the configuration dialog.
1038
+ - Added more models to the Agent (Llama-index) mode.
1039
+ - Improved the agents/presets dialog window.
1040
+ - Disabled the "OpenAI API KEY is not set" Llama-index error when using a local model in Chat with Files mode. You can now use local embeddings, such as Llama3 via Ollama, and use local models without any warnings.
1041
+
1042
+ ## 2.4.10 (2024-11-14)
1043
+
1044
+ - Added support for Llama Index agents. (beta)
1045
+ - Introduced a new working mode: Agent (Llama Index).
1046
+ - Added 3 Llama Index agents: OpenAI Agent, ReAct Agent, and Structured Planner Agent.
1047
+ - Fixed: passing an embed model to vector stores on indexing.
1048
+ - Fixed: python3-tk error in snap version.
1049
+
1050
+ ## 2.4.9 (2024-11-12)
1051
+
1052
+ - Mouse movement has been moved to the PyAutoGUI library for seamless operation.
1053
+ - Bridge calls have been moved to an asynchronous thread.
1054
+ - Fixed the DALL-E call in Image mode.
1055
+ - Speed improvements and optimizations.
1056
+
1057
+ ## 2.4.8 (2024-11-12)
1058
+
1059
+ - Fix: restoring order of notepads.
1060
+ - Fix: mouse move offset in Mouse and Keyboard plugin.
1061
+
1062
+ ## 2.4.7 (2024-11-11)
1063
+
1064
+ - Added a new tool: `HTML/JS Canvas`, connected to the `Code Interpreter` plugin. This feature enables real-time rendering of HTML/JS code in a Chromium-based output by using two new `Code Interpreter` commands: `render_html_output` and `get_html_output`.
1065
+ - Added an SVG icon to the New Tab button.
1066
+ - Improved the system prompt and execution flow in the `Mouse And Keyboard` plugin and introduced a new option Auto-focus to the plugin settings (default: False).
1067
+
1068
+ ## 2.4.6 (2024-11-10)
1069
+
1070
+ - Fixed notepad tab titles in Copy To menu.
1071
+
1072
+ ## 2.4.5 (2024-11-09)
1073
+
1074
+ - Added a new [+] tab button to the right of the tabs.
1075
+ - Fixed the issue where the tab name disappeared when creating a new tab.
1076
+ - Fixed the broken find option (CTRL+F) in the chat window.
1077
+
1078
+ ## 2.4.4 (2024-11-09)
1079
+
1080
+ - Added a new plugin: Mouse And Keyboard. The plugin allows the model to control the mouse and keyboard, control the cursor position, click mouse buttons, use scroll, type text, and press keys on the keyboard.
1081
+
1082
+ ## 2.4.3 (2024-11-08)
1083
+
1084
+ - Added button to hide output from tools/plugins.
1085
+ - Added tooltips on the preset list showing the system prompt of the preset.
1086
+ - Added restoration of tooltips for chat tabs.
1087
+ - Removed disruptive tooltips from the plugin settings window.
1088
+ - Improved reading of current tab information in event reading with speech synthesis.
1089
+ - Minor improvements.
1090
+
1091
+ ## 2.4.2 (2024-11-08)
1092
+
1093
+ - Improved commands and tools handling.
1094
+ - Improved autonomous mode.
1095
+
1096
+ ## 2.4.1 (2024-11-08)
1097
+
1098
+ - Added titles for conversations in tabs.
1099
+ - Tab tools added to the tools menu.
1100
+ - Fix: Reload tabs after changing profile.
1101
+ - Other fixes.
1102
+
1103
+ ## 2.4.0 (2024-11-06)
1104
+
1105
+ - Added the ability to have conversations in multiple tabs (right-click on the tab bar to add new tabs via "Add a new chat", similar to a web browser).
1106
+ - Added the option to add notepad tabs using the right-click context menu and selecting "Add a new notepad".
1107
+ - Added tab reorganization via drag and drop (you can now arrange tabs freely using the mouse).
1108
+ - Added the ability to name tabs.
1109
+
1110
+ ## 2.3.4 (2024-11-03)
1111
+
1112
+ - Support for LaTeX: Mathematical formulas can now be displayed in the chat window using `KaTeX`library (https://katex.org/). This enhancement allows for real-time rendering of complex mathematical expressions.
1113
+
1114
+ ## 2.3.3 (2024-11-03)
1115
+
1116
+ - Added support for models: OpenAI `o1` and `o1-mini` and `SpeakLeash/bielik-11b-v2.2` (Polish LLM: https://bielik.ai).
1117
+
1118
+ ## 2.3.2 (2024-08-29)
1119
+
1120
+ - Date count fix in SQL query.
1121
+
1122
+ ## 2.3.1 (2024-08-29)
1123
+
1124
+ - Fixed timezone detection and date conversions in calendar and context search.
1125
+ - Added icon indicators showing labels in context items in the calendar (to show if any day has a context with the selected label).
1126
+ - Added custom prompt templates in the input context menu (for saving, editing, and deleting custom prompts).
1127
+
1128
+ ## 2.3.0 (2024-08-28)
1129
+
1130
+ - Refactored and optimized the chat engine.
1131
+ - Refactored and optimized command execution.
1132
+ - Fixed: execution of assistant tool calls.
1133
+ - Fixed: flow in the expert plugin.
1134
+ - Fixed: flow in the agent plugin.
1135
+ - Fixed: console errors in highlight.js.
1136
+ - Fixed: logging of the context used in the "Chat with Files" plugin.
1137
+ - Improved the stop command.
1138
+ - Added a reply stack.
1139
+ - Other minor fixes.
1140
+
1141
+ ## 2.2.33 (2024-08-28)
1142
+
1143
+ - Improved model compatibility across different modes.
1144
+ - Enhanced appending of Llama-index response metadata (sources) to context.
1145
+ - Added scrolling to the selected item when choosing the current context from the File -> Select current menu.
1146
+ - Hidden clear preset button.
1147
+ - Fixed duplicated UUIDs in expert presets.
1148
+ - Extended context and events debugging.
1149
+ - Added non-GPT models to Agent and Expert modes.
1150
+
1151
+ ## 2.2.32 (2024-08-27)
1152
+
1153
+ - Fixed the selection of the chosen index for use in Agent mode if the internal mode for Agent is Llama-index.
1154
+ - Added the ability to select an index for use by experts.
1155
+ - Added automatic, in background mode switching if the given mode is not supported by the selected model in Agent mode and for experts (this allows the use of models available only through Llama-index or Langchain in modes such as Agent or Experts).
1156
+
1157
+ ## 2.2.31 (2024-08-27)
1158
+
1159
+ - Improved behavior of agent and expert calls.
1160
+ - Improved chat window auto scroll.
1161
+ - Added a new option "Always continue..." to Agent mode (as opposed to the Auto-stop option).
1162
+ - Added a new prompt: Config -> Settings -> Prompts -> Agent: continue (always, more steps).
1163
+
1164
+ ## 2.2.30 (2024-08-25)
1165
+
1166
+ - Added link to Discord server in About -> Discord.
1167
+
1168
+ ## 2.2.29 (2024-08-25)
1169
+
1170
+ - Fix: Removed 'Index not prepared' monit when index not created yet.
1171
+
1172
+ ## 2.2.28 (2024-08-25)
1173
+
1174
+ - Fix: Added mechanism to prevent the current index from being deselected when saving settings.
1175
+ - Added models: llama3.1:70b, llama3.1:405b, and mistral-large.
1176
+ - Added configuration option: Indexes (llama-index) -> Chat -> Chat mode.
1177
+ - Split prompt templates context menu into alphabetical submenus.
1178
+
1179
+ ## 2.2.27 (2024-08-22)
1180
+
1181
+ - Added functionality to hide the date suffix if date period separators are enabled.
1182
+ - Added a new option: Context -> Show date separators in pinned items on the context list, default: False.
1183
+
1184
+ ## 2.2.26 (2024-08-22)
1185
+
1186
+ - Added separators for date intervals in the context list.
1187
+ - Added a new option: Context -> Show context groups on top of the context list, default: False.
1188
+ - Added a new option: Context -> Show date separators on the context list, default: True.
1189
+ - Added a new option: Context -> Show date separators in groups on the context list, default: True.
1190
+
1191
+ ## 2.2.25 (2024-08-22)
1192
+
1193
+ - Improved native API functions handling.
1194
+ - Improved expert prompts.
1195
+ - Fixed/improved inline plugin commands handling.
1196
+
1197
+ ## 2.2.24 (2024-08-21)
1198
+
1199
+ - Added a STOP button that allows stopping indexing at any time.
1200
+ - Improved conversion of ENUM types when generating a native list of functions for the API.
1201
+ - Disabled adding functions to the list when the option to execute commands is unchecked.
1202
+
1203
+ ## 2.2.23 (2024-08-21)
1204
+
1205
+ - Improved context summarization in Llama-index provider.
1206
+
1207
+ ## 2.2.22 (2024-08-20)
1208
+
1209
+ - Added new API models for "Chat with Files": Google Gemini and Anthropic Claude (see the new section in the documentation: Managing models -> "Using other models (non-GPT)" for more information on how to set API keys)
1210
+ - Added new local models for "Chat with Files": Llama 3.1, Mistral, Codellama, and Llama2-Uncensored (requires Ollama installed on the local machine - see the new section in the documentation: Managing models -> "Using other models (non-GPT)" for more information on how to enable local model support).
1211
+ - Added ability for context summarization using Llama-index models (local models can be used to summarize context titles now).
1212
+ - Added a new option in Config -> Indexes (llama-index) -> Indexing: "Stop indexing on error". If enabled, indexing will stop whenever an error occurs.
1213
+
1214
+ ## 2.2.21 (2024-08-20)
1215
+
1216
+ - Added inline execution for external function calls.
1217
+ - Added a stop to file indexing if an error occurs.
1218
+
1219
+ ## 2.2.20 (2024-08-20)
1220
+
1221
+ - Llama-index upgraded to 0.10.65
1222
+ - Langchain upgraded to 0.2.14
1223
+ - OpenAI API upgraded to 1.41.0
1224
+ - Code syntax highlight changed from Pygments to highlight.js (better performance)
1225
+ - Added new model: gpt-4o-mini
1226
+ - Added native API function calls by default
1227
+ - Added functions importer (from plugins) into assistants
1228
+ - Fixed: input message disappear on command response in stream mode
1229
+ - Fixed: assistants tool outputs submitting
1230
+
1231
+ ## 2.2.19 (2024-05-16)
1232
+
1233
+ - Added a newest multimodal model: GPT-4 "omni": https://openai.com/index/hello-gpt-4o
1234
+
1235
+ ## 2.2.18 (2024-05-05)
1236
+
1237
+ - Fix: prevent crash if no audio to play.
1238
+
1239
+ ## 2.2.17 (2024-05-05)
1240
+
1241
+ - Fix: Added prevent try to play audio if empty output.
1242
+ - Disabled playing finish event on audio or voice control enabled.
1243
+
1244
+ ## 2.2.16 (2024-05-05)
1245
+
1246
+ - Escape key now stops response generation and audio output (if playing).
1247
+ - Voice control options added to the Audio menu.
1248
+ - Added cache on disk for generated static audio content.
1249
+ - Added plugin translations for other languages.
1250
+
1251
+ ## 2.2.15 (2024-05-04)
1252
+
1253
+ - Added audio output stop on audio input start.
1254
+ - Added notify about unrecognized command.
1255
+ - Voice control improvements.
1256
+
1257
+ ## 2.2.14 (2024-05-04)
1258
+
1259
+ - Added a 'Voice Control (inline)' plugin that allows for voice command control directly during a conversation.
1260
+ - Added configuration in 'Settings -> Accessibility' for a blacklist of actions available as voice commands.
1261
+
1262
+ ## 2.2.13 (2024-05-03)
1263
+
1264
+ - Added stretch to dictionary config fields.
1265
+ - Removed redundant attachments clear event.
1266
+
1267
+ ## 2.2.12 (2024-05-03)
1268
+
1269
+ - Improved speech recognition.
1270
+ - Added minimum required length of audio input.
1271
+ - Added missing translations.
1272
+ - Fixed settings hooks triggering on profile switch.
1273
+
1274
+ ## 2.2.11 (2024-05-03)
1275
+
1276
+ - Added a blacklist for events for the voice event description in settings.
1277
+ - Added a delay to playing audio when describing events.
1278
+ - Sorted the list of events in the configuration.
1279
+
1280
+ ## 2.2.10 (2024-05-03)
1281
+
1282
+ - Extended voice control commands list.
1283
+ - Extended actions and keyboard shortcuts.
1284
+
1285
+ ## 2.2.9 (2024-05-02)
1286
+
1287
+ - Added more commands to voice control: search for contexts, clear search, add, read and clear calendar memos, context rename.
1288
+
1289
+ ## 2.2.8 (2024-05-02)
1290
+
1291
+ - Added support for disabled people, including voice control and screen event translation with audio synthesis.
1292
+ - A new section in Settings called 'Accessibility' has been added with options for assistance: voice control, keyboard shortcut definitions for actions, and screen event translation using audio synthesis.
1293
+ - A new section called 'Accessibility' has been added to the Documentation.
1294
+
1295
+ ## 2.2.7 (2024-05-01)
1296
+
1297
+ - A new experimental work mode has been added: 'Experts', which allows the creation of separate background instances with their own instructions that can be consulted for help. See the documentation: 'Work Modes / Experts'.
1298
+ - Added a new plugin: 'Experts (inline)`.
1299
+ - Improved the Agent mode by adding the ability to configure and invoke defined Experts.
1300
+ - Improved the prompts that control the autonomous mode.
1301
+ - The main prompt controlling the agents has been moved from presets to the application's settings window.
1302
+
1303
+ ## 2.2.6 (2024-04-30)
1304
+
1305
+ - Added a new model: 'gpt-4-turbo'.
1306
+ - Vision integrated into Chat mode, without any plugins, if the model supports Vision - currently available for: 'gpt-4-turbo' and 'gpt-4-turbo-2024-04-09'.
1307
+ - Store importer connected with Logger.
1308
+ - Fixed: issue with batch unassigning remote files from vector stores.
1309
+
1310
+ ## 2.2.5 (2024-04-30)
1311
+
1312
+ - Fix: import button handler in Assistants.
1313
+ - Refactored and improved stores batch actions events handling.
1314
+ - Added missing translations.
1315
+
1316
+ ## 2.2.4 (2024-04-29)
1317
+
1318
+ - Batch actions splitted into 'Current store' and 'All stores' in Assistants remote vector stores importer.
1319
+ - Added sync current/all context menu options to Sync button.
1320
+ - Improved remote stores handling.
1321
+
1322
+ ## 2.2.3 (2024-04-29)
1323
+
1324
+ - Fixed Assistants files sync btn.
1325
+ - Added batch upload files or directory in Assistants vector stores dialog.
1326
+
1327
+ ## 2.2.2 (2024-04-29)
1328
+
1329
+ - Added 'Application environment' option to Config -> General for setting up custom env vars on app load.
1330
+ - Added chunk render/parse throttling to prevent high CPU load on huge text chunks.
1331
+ - Optimized and improved Code interpreter output rendering in stream mode in Assistants.
1332
+ - Improved run stopping in Assistants.
1333
+ - Fixed syntax theme and 'Edit' icon restore on profile switch.
1334
+
1335
+ ## 2.2.1 (2024-04-28)
1336
+
1337
+ - Improved data reload on profile switch.
1338
+
1339
+ ## 2.2.0 (2024-04-28)
1340
+
1341
+ - Improved code interpreter stream handling in Assistant mode.
1342
+ - Improved preset plugins reloading on profile switch.
1343
+ - Fixes and core improvements.
1344
+ - Updated docs to v2.2.0.
1345
+
1346
+ ## 2.1.83 (2024-04-27)
1347
+
1348
+ - Index list in 'Chat with files' mode moved to combo-box at bottom.
1349
+ - Enabled display of remote images in chat output.
1350
+ - Updated docs.
1351
+
1352
+ ## 2.1.82 (2024-04-27)
1353
+
1354
+ - Fixed correct store id saving if hidden thread stores on list.
1355
+
1356
+ ## 2.1.81 (2024-04-27)
1357
+
1358
+ - Improved remote vector stores management.
1359
+
1360
+ ## 2.1.80 (2024-04-27)
1361
+
1362
+ - Fixed missing selection in Assistant store select combo.
1363
+ - Fixed store deletion.
1364
+ - Added tooltip to Stores button.
1365
+
1366
+ ## 2.1.79 (2024-04-26)
1367
+
1368
+ - OpenAI API upgraded to version 1.23.6.
1369
+ - Assistants API: added tool: File search and removed deprecated tool: Retrieval.
1370
+ - Support for remote Assistant Vector Stores added (accessible through the Assistants API).
1371
+ - Remote Vector Stores management tool introduced (right-click on an Assistant, select 'Edit', then click the database icon to open Remote Vector Stores editor).
1372
+ - Importer for Remote Assistant Vector Stores and files included.
1373
+ - Files uploaded in Assistants mode can now be shared between threads using Vector Stores.
1374
+
1375
+ ## 2.1.78 (2024-04-25)
1376
+
1377
+ - Removed redundant names in block view.
1378
+ - Scrollbars background integrated with blocks bg.
1379
+
1380
+ ## 2.1.77 (2024-04-25)
1381
+
1382
+ - Added the "tree" command to the I/O Files plugin to retrieve the full directory tree.
1383
+
1384
+ ## 2.1.76 (2024-04-25)
1385
+
1386
+ - Chat items now displayed in blocks.
1387
+
1388
+ ## 2.1.75 (2024-04-24)
1389
+
1390
+ - Copy to clipboard in web view fixed and moved to JS bridge.
1391
+
1392
+ ## 2.1.74 (2024-04-24)
1393
+
1394
+ - Added syntax highlight choose to Theme menu.
1395
+ - Syntax highlight style colors integrated with Dark/Light app themes.
1396
+
1397
+ ## 2.1.73 (2024-04-24)
1398
+
1399
+ - Fixed issue #50 - missing type key in config.
1400
+
1401
+ ## 2.1.72 (2024-04-24)
1402
+
1403
+ - Fixed context initialization in web view on app load.
1404
+ - Improved and optimized items rendering.
1405
+ - Refactored web view CSS.
1406
+ - Rendering optimization.
1407
+ - Added real-time items reload and append.
1408
+ - Added theme CSS to scrollbars.
1409
+ - Added JS console debug to Logger window.
1410
+
1411
+ ## 2.1.71 (2024-04-23)
1412
+
1413
+ - Added 160+ prompt templates from ["Awesome ChatGPT Prompts"](https://github.com/f/awesome-chatgpt-prompts) repository - to use them, right-click on the input or system prompt textarea and select the "Paste from template..." option.
1414
+
1415
+ ## 2.1.70 (2024-04-22)
1416
+
1417
+ - Added web view CSS reload on theme switch.
1418
+ - Fixed time display CSS in web view.
1419
+
1420
+ ## 2.1.69 (2024-04-22)
1421
+
1422
+ - Added html buffer to speed-up context initialization in web view.
1423
+ - Fixed items append in web view in agent mode.
1424
+
1425
+ ## 2.1.68 (2024-04-22)
1426
+
1427
+ - Fix: CPU usage on multiple items.
1428
+
1429
+ ## 2.1.67 (2024-04-22)
1430
+
1431
+ - Optimized items rendering.
1432
+
1433
+ ## 2.1.66 (2024-04-22)
1434
+
1435
+ - Improved content formatting in HTML export.
1436
+
1437
+ ## 2.1.65 (2024-04-22)
1438
+
1439
+ - Improved save as in Web View output.
1440
+ - Added save as text and save as html separated options.
1441
+
1442
+ ## 2.1.64 (2024-04-22)
1443
+
1444
+ - Improved real-time CSS reloading.
1445
+
1446
+ ## 2.1.63 (2024-04-22)
1447
+
1448
+ - Improved rendering output.
1449
+ - Updated CSS.
1450
+
1451
+ ## 2.1.62 (2024-04-22)
1452
+
1453
+ - Added default lexer for code syntax highlighting if no language provided.
1454
+
1455
+ ## 2.1.61 (2024-04-21)
1456
+
1457
+ - Added real-time HTML formatting of text chunks in stream mode.
1458
+
1459
+ ## 2.1.60 (2024-04-21)
1460
+
1461
+ - Fixed "Save as" option in WebEngine view.
1462
+ - Added hiding of empty groups on search.
1463
+ - Updated formatting and CSS.
1464
+
1465
+ ## 2.1.59 (2024-04-20)
1466
+
1467
+ - Added output renderer: WebEngine/Chromium – with full HTML/CSS/JS support. (Experimental)
1468
+ - Added a new option to choose a render engine in Settings -> General -> Rendering engine to select between WebEngine / Chromium mode and the Legacy mode (old, with simple markdown CSS support only - for compatibility reasons and troubleshooting).
1469
+ - Added syntax highlighting to code blocks – issue #43.
1470
+ - Added a new option in Settings -> Layout -> Code syntax highlight to select a highlight theme.
1471
+ - Added a new option in Settings -> Context -> Convert lists to paragraphs to enable/disable converting ul and li into p for better copying.
1472
+ - Copy to clipboard and regenerate response icons are now visible by default.
1473
+
1474
+ ## 2.1.58 (2024-04-19)
1475
+
1476
+ - Fixed Markdown rendering if the content starts with a code block.
1477
+ - Added a "Switch to created profile" option in the profile creation/duplication dialogs.
1478
+ - Updated the locale.
1479
+ - Added a donate option.
1480
+
1481
+ ## 2.1.57 (2024-04-17)
1482
+
1483
+ - Fixed new ctx create on empty profile if previously group was selected.
1484
+
1485
+ ## 2.1.56 (2024-04-17)
1486
+
1487
+ - Added a new menu option: Clear history + groups.
1488
+ - Improved profile switching.
1489
+
1490
+ ## 2.1.55 (2024-04-17)
1491
+
1492
+ - Improved result handling from Indexer tool.
1493
+
1494
+ ## 2.1.54 (2024-04-17)
1495
+
1496
+ - Added data loaders reload and loaders config reload in real time on profile switch.
1497
+
1498
+ ## 2.1.53 (2024-04-17)
1499
+
1500
+ - Added a new tool: Indexer, for manually indexing files, contexts, and web content, as well as managing indexes. (beta)
1501
+
1502
+ ## 2.1.52 (2024-04-15)
1503
+
1504
+ - Added real-time output from code interpreter in Assistants mode.
1505
+ - Added new option in Settings > Context: Show code interpreter output.
1506
+
1507
+ ## 2.1.51 (2024-04-14)
1508
+
1509
+ - Added RMB context menu to the New... context button.
1510
+ - Added filesize info to attachments and uploaded files lists.
1511
+ - Improved Assistants API stream handling.
1512
+
1513
+ ## 2.1.50 (2024-04-14)
1514
+
1515
+ - Fixed selection update after group rename.
1516
+ - Added img resolution and filesize info in image preview dialog title.
1517
+ - Added filesize info in text editor dialog title.
1518
+
1519
+ ## 2.1.49 (2024-04-14)
1520
+
1521
+ - Improved context group handling.
1522
+
1523
+ ## 2.1.48 (2024-04-14)
1524
+
1525
+ - OpenAI API upgraded to version 1.17.1.
1526
+ - Added a stream mode to the Assistant mode (beta).
1527
+ - Fixed an issue where context group ID were not copied when duplicating context.
1528
+
1529
+ ## 2.1.47 (2024-04-12)
1530
+
1531
+ - Added auto-creating new context in current group if the group is active.
1532
+ - Added sending input also with Ctrl+Enter in Shift+Enter mode.
1533
+ - Extended light style markdown CSS.
1534
+
1535
+ ## 2.1.46 (2024-04-12)
1536
+
1537
+ - Improved code blocks formatting.
1538
+ - Improved attachment copy/paste.
1539
+
1540
+ ## 2.1.45 (2024-04-11)
1541
+
1542
+ - Added the ability to paste images as attachments using Ctrl+V in chat input and to copy-paste images in the draw/painter.
1543
+ - Added a "Copy to Clipboard" option in code blocks.
1544
+ - Introduced a new model: gpt-4-turbo-2024-04-09.
1545
+
1546
+ ## 2.1.44 (2024-04-11)
1547
+
1548
+ - Optimized "Find" option.
1549
+ - Added copy database and copy data dir checkbox options in profile duplicate dialog.
1550
+ - Added ability to reset current active profile.
1551
+ - Added missing translations.
1552
+
1553
+ ## 2.1.43 (2024-04-11)
1554
+
1555
+ - The "Find" option has been extended and added to all text fields.
1556
+ - Fixed menu reload issue when switching profiles.
1557
+ - Other small fixes and improvements.
1558
+
1559
+ ## 2.1.42 (2024-04-10)
1560
+
1561
+ - Improved profile switching.
1562
+ - Added interpreter internal files to excluded when indexing.
1563
+
1564
+ ## 2.1.41 (2024-04-10)
1565
+
1566
+ - Added support for multiple profiles (separated config, settings and workdir), menu: Config -> Profile...
1567
+ - Added context groups for context items organizing, menu: File -> New context group...
1568
+ - Added ability to change the model on response edit and regenerate.
1569
+ - Added real-time updating number of notepads.
1570
+ - UI/theme fixes.
1571
+
1572
+ ## 2.1.40-post1 (2024-04-08)
1573
+
1574
+ - Llama-index core downgraded to 0.10.13 due to issue #41
1575
+
1576
+ ## 2.1.40 (2024-04-08)
1577
+
1578
+ - Added "Find" option - text search and highlighting of the found phrase in the chat and notepad window, available via CTRL + F or right-click menu / Find... (beta)
1579
+ - Added GitHub's Monaspace font family: Argon, Krypton, Neon, Radon, Xenon (reset CSS to defaults or manual replacement in CSS files is required for older versions of application to take effect).
1580
+ - Added an "Restore Default CSS" option in the "Config / Edit CSS" menu.
1581
+ - Added the ability to use custom .ttf and .otf fonts (just place them in %workdir%/fonts directory).
1582
+
1583
+ ## 2.1.39 (2024-03-26)
1584
+
1585
+ - Added "Change working directory..." option in "Config" menu.
1586
+ - Improved handling reply from multiple commands at once.
1587
+ - Tools have been moved to separate parts of the app.
1588
+ - Added the ability to create custom Tools, with an example tool in the "examples" directory.
1589
+
1590
+ ## 2.1.38 (2024-03-20)
1591
+
1592
+ - Added new Tools menu, with: Media player, Transcribe audio/video files, Image viewer, Text editor and Code interpreter.
1593
+ - Improved tools.
1594
+
1595
+ ## 2.1.37 (2024-03-19)
1596
+
1597
+ - Added generation of audio transcriptions from audio/video files.
1598
+
1599
+ ## 2.1.36 (2024-03-19)
1600
+
1601
+ - Added split screen view (output/edit) to code interpreter.
1602
+
1603
+ ## 2.1.35 (2024-03-19)
1604
+
1605
+ - Added text files editor and image viewer.
1606
+ - Improved video player and code interpreter.
1607
+
1608
+ ## 2.1.34 (2024-03-18)
1609
+
1610
+ - Added video player.
1611
+ - Fixed audio input message append in agent mode.
1612
+
1613
+ ## 2.1.33 (2024-03-18)
1614
+
1615
+ - Code interpreter enabled even if interpreter plugin is disabled.
1616
+ - Added "Connect to the Python code interpreter window" config option in Code interpreter plugin.
1617
+ - Added Monospace font support - issue #37.
1618
+ - Improved raw JSON command outputs.
1619
+
1620
+ ## 2.1.32 (2024-03-17)
1621
+
1622
+ - Global prompts config moved to a separated settings section "Prompts".
1623
+ - Added auto-clear option in code interpreter.
1624
+ - Added "Use extra context output" config option in "Settings -> Context".
1625
+
1626
+ ## 2.1.31 (2024-03-17)
1627
+
1628
+ - Improved code interpreter integration with sandbox/docker.
1629
+ - Added display of hidden files in Files explorer.
1630
+ - Added "Use as image" context menu action in Files explorer.
1631
+
1632
+ ## 2.1.30 (2024-03-16)
1633
+
1634
+ - Improved real-time Python code interpreter: added edit mode and whole code execution (history).
1635
+
1636
+ ## 2.1.29 (2024-03-16)
1637
+
1638
+ - Added real-time Python code interpreter (<> icon), connected with the Code Interpreter plugin's input and output.
1639
+ - Improved plugin command execution.
1640
+
1641
+ ## 2.1.28 (2024-03-15)
1642
+
1643
+ - Fixed local commands handling in Assistant API.
1644
+ - Fixed system prompt replace after mode changed on app start.
1645
+ - Improved related links rendering in chat output.
1646
+ - Added RPM limit config option for Embeddings API.
1647
+ - UI improvements.
1648
+
1649
+ ## 2.1.27 (2024-03-13)
1650
+
1651
+ - Added the "find" command to the Files I/O plugin for searching for files and directories.
1652
+ - Added "Append metadata" config option in Chat with files plugin.
1653
+ - Added missing locales to translations.
1654
+
1655
+ ## 2.1.26 (2024-03-13)
1656
+
1657
+ - Added async command execution in History and Chat with files plugins.
1658
+ - Improved plugin prompts.
1659
+ - Improved command execution in autonomous mode.
1660
+ - Improved logging and debugging.
1661
+
1662
+ ## 2.1.25 (2024-03-13)
1663
+
1664
+ - Llama index logging improvement.
1665
+
1666
+ ## 2.1.24 (2024-03-13)
1667
+
1668
+ - Added AzureOpenAI embeddings provider.
1669
+ - Added metadata append to indexed context from DB.
1670
+
1671
+ ## 2.1.23 (2024-03-12)
1672
+
1673
+ - Added configuration options for embeddings model and provider in Settings -> Llama-Index.
1674
+ - Added plain-text responses in web_open commands.
1675
+ - Improved web_open commands in Web Search plugin.
1676
+ - Added a check to determine if the provided URL is an image when sending URLs within text.
1677
+
1678
+ ## 2.1.22 (2024-03-12)
1679
+
1680
+ - Added custom metadata appending to indexing documents for web/external loaders.
1681
+
1682
+ ## 2.1.21 (2024-03-12)
1683
+
1684
+ - Refactored commands core and command handling to a JSON schema-based config.
1685
+ - Fixed calls in the API plugin.
1686
+ - Fixed web_urls in the Web search plugin.
1687
+ - Fixed adding new notes in the Calendar plugin.
1688
+
1689
+ ## 2.1.19 (2024-03-11)
1690
+
1691
+ - Added "Force exclude files" config option to force exclude extensions in: Settings -> Llama-index -> Indexing (enables file extension exclusion even if a data loader for the extension is available).
1692
+ - Added custom metadata appending to indexing documents via list in: Settings -> Llama-index -> Indexing.
1693
+ - Added base API endpoint config arguments in models params.
1694
+
1695
+ ## 2.1.18 (2024-03-10)
1696
+
1697
+ - Added horizontal splitters and min width for lists in settings dialogs - issue #30.
1698
+ - Added audio icon display config option in Settings -> Context.
1699
+
1700
+ ## 2.1.17 (2024-03-10)
1701
+
1702
+ - Improved audio handling.
1703
+ - Added options to context debug.
1704
+ - Added context meta load on demand if not on list.
1705
+
1706
+ ## 2.1.16 (2024-03-10)
1707
+
1708
+ - Added "merge" icon in context responses (allows merging selected response with the previous response).
1709
+ - Added display of Llama-index used sources in the context response.
1710
+ - Fixed word-wrap in code blocks - issue #27.
1711
+ - Fixed context visibility when filters are applied and new ctx is created in the background.
1712
+ - Improved audio playback status indication for responses.
1713
+
1714
+ ## 2.1.15 (2024-03-09)
1715
+
1716
+ - Added Edit mode in chat output with options: read response (audio), copy to clipboard, regenerate response, edit and regenerate, and delete context item.
1717
+ - Added dynamic max output tokens calculation in completion mode - issue #28.
1718
+ - Added config option "Modes to auto-index" in Llama-index settings.
1719
+ - Fixed typo in gpt-4-turbo-preview model config args for Llama-index provider - issue #29.
1720
+
1721
+ ## 2.1.14 (2024-03-09)
1722
+
1723
+ - Added restoration of "All counters" checkbox status in calendar on tab init.
1724
+ - Added new line with Shift+Enter in input if sending mode is "Enter" - issue #26.
1725
+
1726
+ ## 2.1.13 (2024-03-08)
1727
+
1728
+ - Fixed context auto-indexing in autonomous/agent mode - issue #23.
1729
+ - Added AzureOpenAI provider for Llama.
1730
+ - Added configuration option for the model in query file/web options in plugins.
1731
+ - Added removal of temporary index from memory after use.
1732
+
1733
+ ## 2.1.12 (2024-03-08)
1734
+
1735
+ - Added config option for max requests per minute (RPM) in `Settings -> Model` - issue #23.
1736
+ - Added config for continue prompt in `Settings -> Agent`.
1737
+ - Added config option for custom API endpoint URL in `Settings -> General` - issue #21.
1738
+ - Added `Allow context item delete` option in `Settings -> Context`.
1739
+ - Added checkbox `All counters` in filters in Calendar view - when disabled, calendar displays filtered record counters instead of all records.
1740
+ - Improved the reset to default option in `Settings` to persist all non-settings config options.
1741
+
1742
+ ## 2.1.11 (2024-03-07)
1743
+
1744
+ - Fixed search query if multiple labels selected
1745
+ - Added prevent from saving empty notes in calendar
1746
+ - Added display empty dates in DB Viewer if timestamp = 0
1747
+
1748
+ ## 2.1.10 (2024-03-06)
1749
+
1750
+ - Added `DB Viewer` in Developer menu.
1751
+ - Added label color filter in context list - issue #23
1752
+ - Added context item delete option - issue #23
1753
+ - Added presets for plugins - issue #23
1754
+ - Fixed and improved autonomous agents run - issue #23
1755
+ - Chinese language added to locales - issue #24
1756
+
1757
+ ## 2.1.9 (2024-03-04)
1758
+
1759
+ - A new option has been added to the `Web Search` plugin: `web_index_query`, which allows for indexing a web and external content in a temporary index (in memory) and quickly querying its content. Works similar to `query_file` command.
1760
+ - The `read_file` command has been expanded to handle multiple files at once.
1761
+ - Added `Log and debug events` option to Developer settings.
1762
+
1763
+ ## 2.1.8 (2024-03-03)
1764
+
1765
+ - A new option has been added to the `Files I/O` plugin: `query_file`, which allows for indexing a file in a temporary index (in memory) and quickly querying its content. This enables the use of Llama-index for fast querying or adding context from individual files. From now on, you can ask questions about individual files without indexing them to the main vector store. See the "Querying single files" in "Modes -> Chat with files" section in a README for more info.
1766
+ - The `read_file` command has been expanded to return just the exact file content, without wrapping it in JSON.
1767
+ - Improved prompt for preparing queries in the Chat with files plugin.
1768
+ - Updated docs.
1769
+
1770
+ ## 2.1.7 (2024-03-03)
1771
+
1772
+ - Enhanced the Llama-index plugin with additional options for automatically refining queries before requesting additional context from Llama-index.
1773
+
1774
+ ## 2.1.6 (2024-03-03)
1775
+
1776
+ - Added Twitter/X data loader.
1777
+ - Added check if message is not a reply when calling Llama-index using a plugin.
1778
+ - Added list of Agent indexes auto-reload after Llama-index list has changed.
1779
+ - Disabled anonymized telemetry in Chroma by default.
1780
+
1781
+ ## 2.1.5 (2024-03-02)
1782
+
1783
+ - Recompiled SVG resources.
1784
+ - Fixed file explorer update after file commands execute.
1785
+ - Updated docs.
1786
+
1787
+ ## 2.1.4 (2024-03-02)
1788
+
1789
+ - PySide6 downgraded to 6.4.2 due to a bug in signals emitting.
1790
+
1791
+ ## 2.1.3 (2024-03-01)
1792
+
1793
+ - Added data loaders: Bitbucket, ChatGPT Retrieval Plugin, SQL Databases, GitHub, Microsoft OneDrive.
1794
+ - Added indexing configuration tab in `Web Search` plugin.
1795
+
1796
+ ## 2.1.2 (2024-03-01)
1797
+
1798
+ - Added data loaders: Google Drive, Google Docs, Google Gmail, Google Calendar, Google Sheets, Google Keep.
1799
+ - Added data loaders: Video/Audio and Images, with local model and API modes.
1800
+ - Added Whisper (local hosted) model to `Audio Input` providers, available only in Python version.
1801
+
1802
+ ## 2.1.1 (2024-02-29)
1803
+
1804
+ - Llama-index settings split into tabs.
1805
+ - Added keyword argument settings for data loaders.
1806
+ - Added data loaders for RSS, XML sitemaps, IPYNB notebooks, and XML and HTML files.
1807
+ - Added audio notes - simply use speech recognition in the Notepad tab to append transcribed audio to the Notepad.
1808
+ - Added an icon for quick toggling of video camera capture.
1809
+ - Added a Video menu.
1810
+ - Moved video capture toggle checkboxes to the Video menu.
1811
+
1812
+ ## 2.1.0 (2024-02-28)
1813
+
1814
+ - Upgraded Llama-index from the legacy version `0.9` to the current version `0.10` (note: upgrading PyPi version of PyGPT to `2.1.0` requires reinstallation in a virtual environment to remove old library versions).
1815
+ - Upgraded Langchain to `0.1.9`.
1816
+ - Upgraded PyInstaller (and compiled versions) to version `6`.
1817
+ - Removed LlamaHub and restored support for Python `3.12`.
1818
+ - Fixed imports for Llama-index in the compiled versions.
1819
+ - Added icons for quickly toggling audio input/output.
1820
+ - UI fixes.
1821
+
1822
+ ## 2.0.171 (2024-02-27)
1823
+
1824
+ - Added core for loading web resources (not only webpages) to Llama-index.
1825
+ - Added a data loader for transcriptions of YouTube videos (simply ask for index a YouTube video URL using the `Web Search` plugin - the `web_index` command must be enabled).
1826
+ - Fixed the "Initial token count exceeds token limit" error in Chat with files mode.
1827
+ - Added missing translations for dictionary items in settings dialogs.
1828
+
1829
+ ## 2.0.170 (2024-02-26)
1830
+
1831
+ - Added "simplified" mode to the "Audio Input" plugin, now set as default, allowing for faster and simpler speech recognition without requiring any configuration. Meanwhile, all current options have been moved to "advanced" mode.
1832
+ - Improved microphone support in Snap version.
1833
+ - Improved file browser update after performing file operations.
1834
+ - Added check for file availability for indexing in the file browser.
1835
+
1836
+ ## 2.0.169 (2024-02-25)
1837
+
1838
+ - Improved and refactored debugging
1839
+
1840
+ ## 2.0.168 (2024-02-25)
1841
+
1842
+ - Added auto index file on read option in the `Files I/O` plugin
1843
+ - Improved debugger
1844
+ - Fixed Bing speech recognition
1845
+
1846
+ ## 2.0.167 (2024-02-25)
1847
+
1848
+ - Fixed empty API key dialog.
1849
+
1850
+ ## 2.0.166 (2024-02-25)
1851
+
1852
+ - Enabled the use of data loaders from Llama-index in the `Files I/O` plugin for reading files, which allows for reading not only text files using the plugin's `read_file` command.
1853
+ - Added a command for indexing files to the `Files I/O` plugin.
1854
+ - The `self_loop` plugin has been internally renamed to the `agent` plugin.
1855
+ - Fixed the display of pinned contexts when the indexed filter is enabled.
1856
+
1857
+ ## 2.0.165 (2024-02-25)
1858
+
1859
+ - Added search provider: `Bing`.
1860
+ - Added audio output providers: `Google` and `Eleven Labs`.
1861
+ - Added audio input providers: `Google`, `Google Cloud`, and `Bing`.
1862
+ - Added a new plugin: `API calls` which allows defining commands for API calls to external services.
1863
+ - Added an `Excluded file extensions` configuration option in `Settings -> Llama-index`.
1864
+ - Fixed audio input listener initialization in the Audio Input plugin.
1865
+
1866
+ ## 2.0.164 (2024-02-24)
1867
+
1868
+ - Refactored the Audio Input, Audio Output, and Google Web Search plugins to support multiple audio and search engine providers.
1869
+ - Introduced the option to add your own audio input, output, and web search providers.
1870
+
1871
+ ## 2.0.163 (2024-02-23)
1872
+
1873
+ - Added storage of indexed urls
1874
+ - Added info about used library versions in About dialog
1875
+
1876
+ ## 2.0.162 (2024-02-23)
1877
+
1878
+ - Index data storage migrated from JSON to DB.
1879
+ - Added add/remove to index context menu on ctx list.
1880
+ - Added last indexed info on ctx list.
1881
+ - Added option "Replace old document versions in the index during re-indexing" in "Settings -> Llama-index".
1882
+ - Refactored, optimized and improved file and context indexing.
1883
+ - Fixed context search SQL query.
1884
+
1885
+ ## 2.0.161 (2024-02-22)
1886
+
1887
+ - Added the option to search within conversation content, not just by titles (disabled by default, can be enabled in: "Settings -> Context -> Search also in conversation content, not only in titles").
1888
+ - Added a "download" subdirectory for files downloaded in Assistants mode and an option to configure the directory in: "Settings -> Files and attachments -> Directory for file downloads")
1889
+ - Added logging of options available in: "Config -> Debug" to the logger window, not just to the console.
1890
+ - Added descriptions in the models editor.
1891
+
1892
+ ## 2.0.160 (2024-02-21)
1893
+
1894
+ - Added auto-replacement of sandbox download links in Assistants with links to downloaded local files.
1895
+ - Added setup for Poetry.
1896
+ - Added connection timeout config option to Google Search plugin.
1897
+ - Fixed recursion error on app exit.
1898
+ - Updated dependencies.
1899
+
1900
+ ## 2.0.159 (2024-02-21)
1901
+
1902
+ - Added workdir placeholders to images stored from Assistants.
1903
+ - Added tooltips on modes list.
1904
+ - Added force synchronous command call if more than one command to execute.
1905
+
1906
+ ## 2.0.158 (2024-02-21)
1907
+
1908
+ - Improved Assistants: added annotations handling, added async function outputs submit
1909
+ - Fixed creating function duplicates on re-import existing Assistant
1910
+
1911
+ ## 2.0.157 (2024-02-20)
1912
+
1913
+ - Added webpage (URL) indexing using Llama-Index; new options were added to the Google Search plugin: the command "web_index" for indexing a specified page (just ask to index any URL) and "Auto-index", which enables automatic indexing of URLs used by the plugin (disabled by default).
1914
+ - Decreased the default chunk size in the Google Search plugin.
1915
+ - Assistant run creation and message sending moved to an async thread.
1916
+ - Improved files receive from Assistants.
1917
+
1918
+ ## 2.0.156 (2024-02-19)
1919
+
1920
+ - Added disable SSL verify option for search engine calls (not only for search results) in `Google Search plugin` - issue #20.
1921
+ - Updated certifi to 2024.2.2.
1922
+ - Added custom launcher, custom plugin, custom vector store, custom LLM provider and custom data loader code examples in `examples` directory in repository.
1923
+ - Updated documentation.
1924
+
1925
+ ## 2.0.155 (2024-02-18)
1926
+
1927
+ - Importing assistants and assistant files (from API) has been moved to an asynchronous thread.
1928
+ - Upgraded OpenAI API to 1.12.0.
1929
+
1930
+ ## 2.0.154 (2024-02-18)
1931
+
1932
+ - Fixed hidden user input in Assistants mode
1933
+ - Fixed system prompt change when switching to Assistants mode without selected Assistant
1934
+
1935
+ ## 2.0.153 (2024-02-17)
1936
+
1937
+ - Added image display in the chat window when a file received from the Assistant is an image
1938
+ - Added color labels in color select combo boxes
1939
+ - Added dialog window position save and restore (+ option in Settings to enable/disable this feature)
1940
+ - Added command "web_url_raw" to the Google Search Plugin which allows you to get the raw HTML/txt content from web pages (without summary)
1941
+ - Fixed CSS backup path
1942
+ - Updated documentation
1943
+
1944
+ ## 2.0.152 (2024-02-16)
1945
+
1946
+ - Improved updater, added direct links to new releases
1947
+ - Improved command execute system prompt
1948
+ - Added `cwd` command to `Files I/O` plugin
1949
+ - Added automatic current working directory passing to `sys_exec` command prompt in `Code Interpreter`.
1950
+ - Added `Refresh` option in File Explorer
1951
+ - Added monit about camera connect in Snap version with command to execute
1952
+ - Disabled MenuRoles on MacOS-affected menu items - issue #19
1953
+
1954
+ ## 2.0.151 (2024-02-16)
1955
+
1956
+ - Improved integration between Chat and Vision when functions are provided
1957
+
1958
+ ## 2.0.150 (2024-02-16)
1959
+
1960
+ - Added a new command for the `Google Web Search` plugin - `get_urls`, which allows retrieving a full list of searched URLs and passing it to the model for further use.
1961
+ - Implemented execution of `functions` defined in the API and their full integration with modes: `Chat` and `Assistant`. For more details, see the new section in the documentation: `Functions and commands`.
1962
+ - Fixed the tray icon change while the model is generating a response.
1963
+ - Improved stopping of agents using `Stop`.
1964
+
1965
+ ## 2.0.149 (2024-02-15)
1966
+
1967
+ - Fixed and improved Assistants API (file handling, run handling, token usage, stopping)
1968
+ - Added vertical canvas resolutions in Painter
1969
+ - Added brush settings restore in Painter
1970
+ - Added log file viewer in Debug menu
1971
+ - Added log level switch in runtime (Developer settings)
1972
+ - Added functions defining and handling in Presets (works in ChatCompletion API)
1973
+ - Improved presets and assistants editor dialogs
1974
+ - Improved debugger and Developer settings
1975
+
1976
+ ## 2.0.148 (2024-02-07)
1977
+
1978
+ - Fixed input/output timestamps in renderer
1979
+ - Added aspect ratio check and fit on image open in Painter tool
1980
+
1981
+ ## 2.0.147 (2024-02-04)
1982
+
1983
+ - Added `@` tags for quick access to context from previous discussions in the `Context History` plugin (must be enabled in plugin settings, default: disabled).
1984
+ - Added automatic passing of the day of the week in the `Context History` and `Real Time` plugins.
1985
+
1986
+ ## 2.0.146 (2024-02-03)
1987
+
1988
+ - Disabled online loaders for Llama-index if compiled version is detected (they work properly only in Python version)
1989
+
1990
+ ## 2.0.145 (2024-02-03)
1991
+
1992
+ - Enabled the use of the Context history plugin in inline mode (without the need for the Command execution option).
1993
+ - Added automatic provision of the current date in the Context History plugin if the Real-Time plugin is disabled.
1994
+ - Added the ability to count contexts within a specified date range.
1995
+ - Added an option to limit the maximum number of contexts retrieved per query.
1996
+ - Enabled the "undo" option in the painter when clearing and opening a new image.
1997
+
1998
+ ## 2.0.144 (2024-02-02)
1999
+
2000
+ - Improved Context history plugin prompts
2001
+
2002
+ ## 2.0.143 (2024-02-02)
2003
+
2004
+ - Added a new plugin: `Context history (calendar)`
2005
+ - Added a new feature to context list: `Pin on top`
2006
+ - Added `Minimize to tray on exit` option
2007
+
2008
+ ## 2.0.142 (2024-02-01)
2009
+
2010
+ - Added tray notification on scheduled task run.
2011
+ - Added tray notification on Agent goal achieved.
2012
+ - Small fixes.
2013
+
2014
+ ## 2.0.141 (2024-02-01)
2015
+
2016
+ - Improved window hide/restore from tray icon
2017
+ - Removed capture disable/enable options and Start minimized from settings dialog
2018
+
2019
+ ## 2.0.140 (2024-02-01)
2020
+
2021
+ - Fixed preset duplicating
2022
+
2023
+ ## 2.0.139 (2024-02-01)
2024
+
2025
+ - Improved the generation of names for preset duplicates.
2026
+ - Added background updates check (with an option in settings to disable it).
2027
+ - Added dialog to accept license terms at the first launch.
2028
+ - Fixed calendar content save on month change.
2029
+ - Small UI improvements.
2030
+
2031
+ ## 2.0.138 (2024-02-01)
2032
+
2033
+ - Added "Duplicate" option to current * (default) presets
2034
+ - Added "Restore to default" option to current * (default) presets
2035
+ - Added "Minimize to tray" settings option
2036
+ - Fixed preset selection when clicked on list with RMB
2037
+ - Improved calendar records count on month break
2038
+
2039
+ ## 2.0.137 (2024-01-31)
2040
+
2041
+ - Improved Agent / Autonomous mode handling
2042
+ - Added "Remove file from index" option in file-explorer
2043
+ - Other small fixes
2044
+
2045
+ ## 2.0.136 (2024-01-31)
2046
+
2047
+ - Improved integration of Agent mode with llama-index sub-mode
2048
+ - Updated documentation and locales
2049
+
2050
+ ## 2.0.135 (2024-01-31)
2051
+
2052
+ - Fixed issue where the agent would stop after the first run in Agent mode when the number of iterations was set to non-infinity.
2053
+ - Added "Agent" section in the settings, with options to select the sub-mode to use (Chat, Completion, Langchain, Llama-index, etc.) and an option to choose the index to use.
2054
+ - Implemented a feature to display the current run status in Agent mode.
2055
+
2056
+ ## 2.0.134 (2024-01-30)
2057
+
2058
+ - Updated models list
2059
+
2060
+ ## 2.0.133 (2024-01-30)
2061
+
2062
+ - Added the ability for autonomous image generation using the `DALL-E (inline)` plugin in `Agent mode`.
2063
+ - Added a `Redo` option to the `Painter/Draw` tool.
2064
+ - Enabled Vision in `Agent mode`.
2065
+
2066
+ ## 2.0.132 (2024-01-30)
2067
+
2068
+ - Experimental: Added new working mode: `Agent (autonomous)`, which works similarly to the `Autonomous Mode` plugin but as a separate mode with editable system prompt presets.
2069
+ - Renamed `Autonomous Mode` plugin to `Autonomous Mode (inline)`.
2070
+ - Fixed real-time system prompt tokens calculation update.
2071
+ - Fixed preset saving in editor.
2072
+ - Updated icons' fill color.
2073
+
2074
+ ## 2.0.131 (2024-01-30)
2075
+
2076
+ - Fix: set a limited height for list items in editable lists within the options.
2077
+ - Added new plugin: `System Prompt Extra`: plugin appends additional system prompts (extra data) from a list to every current system prompt. You can enhance every system prompt with extra instructions that will be automatically appended to the system prompt.
2078
+ - Added a list of prompts for define and use in the `Autonomous Mode` plugin (the previous division into "normal" and "extended" prompts has been replaced with an unlimited, user-editable list).
2079
+ - Added textarea stretch on dialog resize in dictionary options editor
2080
+ - Introduced a new `duplicate` option in the context list (it copies the selected context to a new one).
2081
+
2082
+ ## 2.0.130 (2024-01-29)
2083
+
2084
+ - Added status indicator in Tray - feature [#12](https://github.com/szczyglis-dev/py-gpt/issues/12)
2085
+ - Added icons to tabs, tray and context menus
2086
+ - Added "Files and attachments" section in Settings
2087
+
2088
+ ## 2.0.129 (2024-01-29)
2089
+
2090
+ - Added Material Design SVG icons (by Google)
2091
+ - Added icon resources compiler script
2092
+ - Improved file explorer
2093
+
2094
+ ## 2.0.128 (2024-01-29)
2095
+
2096
+ - Added improvements to RMB context menu handling in Files
2097
+ - Improved generation of names for duplicated files
2098
+
2099
+ ## 2.0.127 (2024-01-28)
2100
+
2101
+ - Added ability to auto-store (in the `%workdir%/upload` directory) local copies of attachments uploaded from outside the workdir.
2102
+ - Added an option in the general settings dialog: `Store attachments in the workdir upload directory`, default: True
2103
+ - Added an option for storing everything in the `data` directory: `Store images, capture and uploads in data directory`, default: False
2104
+
2105
+ ## 2.0.126 (2024-01-28)
2106
+
2107
+ - New features in file explorer (`Files` tab):
2108
+
2109
+ - Create empty file
2110
+ - Create directory
2111
+ - Upload files to selected directory
2112
+ - Download file or directory
2113
+ - Duplicate file or directory
2114
+ - Use as attachment
2115
+ - Ask for read this file
2116
+ - Copy working/system path to input and clipboard
2117
+
2118
+ ## 2.0.125 (2024-01-28)
2119
+
2120
+ - Fixed chars encoding in save text to file option
2121
+
2122
+ ## 2.0.124 (2024-01-28)
2123
+
2124
+ - Fixed Vision checkbox visibility when switching to plain-text mode
2125
+ - Added RMB context menu option "Save as..." to selected text for saving selected text (or whole document) to a text file
2126
+ - Added remembering the last used directory for uploading attachments/saving files
2127
+
2128
+ ## 2.0.123 (2024-01-27)
2129
+
2130
+ - Standarized models names
2131
+ - Added `Recursive directory indexing` option in `Settings / Indexes (Llama-index)` (default: False)
2132
+
2133
+ ## 2.0.122 (2024-01-27)
2134
+
2135
+ - Added new OpenAI model released on 2024-01-25: `gpt-4-0125-preview`
2136
+ - Added ability to add custom offline data loaders for Llama-index
2137
+ - Improved debugging and logging, added debug levels, and introduced a new section `Debugging and Logging` in the documentation
2138
+ - Moved inline styles to external CSS classes
2139
+ - Renamed `pygpt_net.provider.llm` to `pygpt_net.provider.llms`
2140
+
2141
+ ## 2.0.121 (2024-01-27)
2142
+
2143
+ - Fixed query error when using Query mode in Chat with files mode with enabled plugins
2144
+ - Added a bridge/abstraction layer between modes
2145
+ - Hid the assistant checkbox in the preset editor
2146
+
2147
+ ## 2.0.120 (2024-01-26)
2148
+
2149
+ - Fixed font-size restore when switching between plain text and markdown renderer
2150
+ - Added RMB context menu option "Clear files" to input Attachments tab.
2151
+
2152
+ ## 2.0.119 (2024-01-25)
2153
+
2154
+ - Fixed list selection loose after async command execution
2155
+ - Added "Start minimized" option in settings
2156
+ - Updated docs
2157
+
2158
+ ## 2.0.118 (2024-01-25)
2159
+
2160
+ - Added "Show tray icon" option in "Settings"
2161
+ - Added launcher arguments
2162
+ - Updated docs
2163
+ - Small fixes
2164
+
2165
+ ## 2.0.117 (2024-01-24)
2166
+
2167
+ - Added a new feature to the `Files I/O` plugin - `Get and upload file as attachment`. It lets automatically read files from `data` folder and send them as attachments - just ask to send a file as an attachment and the model will send it to itself (like sending an image for analysis). Option is disabled by default in the plugin`s settings.
2168
+ - Added a new plugin: `Serial port / USB`. This plugin lets you read and send any commands to USB ports (so you can control robots now ;) ).
2169
+ - Made it possible to use URLs for images when not using the vision feature.
2170
+ - Fixed saving and reloading prompts in Assistant mode.
2171
+ - Removed display of empty external images from the output.
2172
+
2173
+ ## 2.0.116 (2024-01-24)
2174
+
2175
+ - Fixed font color in light themes
2176
+ - Fixed layout display on Windows systems
2177
+ - Theme, Language and Debug menus moved to Config menu - feature [#10](https://github.com/szczyglis-dev/py-gpt/issues/10)
2178
+ - Added Developer section in Settings
2179
+ - Fixed list options editing
2180
+ - Refactored code and updated tests
2181
+
2182
+ ## 2.0.115 (2024-01-22)
2183
+
2184
+ - Added token recalculation after the attachments list is changed and upon copy/pasting into the input field.
2185
+ - Added descriptions to the settings.
2186
+ - Improved the "Copy selected text to..." option.
2187
+
2188
+ ## 2.0.114 (2024-01-21)
2189
+
2190
+ - Fixed broken CSS on Windows
2191
+ - Added support for Vector Store databases: `Chroma`, `Elasticsearch`, `Pinecone` and `Redis` (beta)
2192
+ - Added config options for selecting and configuring Vector Store providers
2193
+ - Added ability to extend PyGPT with custom Vector Store providers
2194
+ - Added commands to the `Vision (inline)` plugin: get camera capture and make screenshot. Options must be enabled in the plugin settings. When enabled, they allow the model to capture images from the camera and make screenshots itself.
2195
+ - Added `Query index only (without chat)` option to `Chat with files` mode.
2196
+ - Added stream mode support to query index mode in `Chat with files`.
2197
+
2198
+ ## 2.0.113 (2024-01-20)
2199
+
2200
+ - Added %workdir% placeholder to attachments and images files paths storage for more flexibility in moving data between environments
2201
+ - Refactored base plugin options handling
2202
+
2203
+ ## 2.0.112 (2024-01-19)
2204
+
2205
+ - Fixed image variants slider in image mode
2206
+ - Fixed vision checkbox visibility
2207
+ - Fixed user directory path when handling different directories/symlinks
2208
+ - Added config option for disable opening image dialog after image generate
2209
+ - Added Scheduled tasks entry in taskbar dropdown
2210
+ - Added * (asterisk) indicator after date modified if newer than last indexed time
2211
+ - Date of modified in file explorer changed to format YYYY-MM-DD HH:MM:SS
2212
+
2213
+ ## 2.0.111 (2024-01-19)
2214
+
2215
+ - Fixed: opening files and directories in Snap and Windows versions
2216
+ - Fixed: camera capture handling between mode switch
2217
+ - Added: info about snap connect camera in Snap version (if not connected)
2218
+ - Added: missing app/tray icon in compiled versions
2219
+
2220
+ ## 2.0.110 (2024-01-19)
2221
+
2222
+ - Fixed bug: history file clear on ctx remove - Issue [#9](https://github.com/szczyglis-dev/py-gpt/issues/9)
2223
+ - Vision inline allowed in modes: Langchain and Chat with files (llama-index)
2224
+ - Event names moved to Event class
2225
+
2226
+ ## 2.0.109 (2024-01-18)
2227
+
2228
+ - Fixed bug: float inputs value update behaviour - Issue [#8](https://github.com/szczyglis-dev/py-gpt/issues/8)
2229
+ - Added: plugin description tooltips - Issue [#7](https://github.com/szczyglis-dev/py-gpt/issues/7)
2230
+ - Added: focus window on "New context..." in tray - Issue [#13](https://github.com/szczyglis-dev/py-gpt/issues/13)
2231
+ - Added: Ask with screenshot option to tray menu - Issue [#11](https://github.com/szczyglis-dev/py-gpt/issues/11)
2232
+ - Added: Open Notepad option to tray menu - Issue [#14](https://github.com/szczyglis-dev/py-gpt/issues/14)
2233
+
2234
+ ## 2.0.108 (2024-01-16)
2235
+
2236
+ - Added confirmation dialogs on indexing
2237
+ - Added missing translations
2238
+ - Updated dependencies: openai, cryptography, certifi, urllib, jinja
2239
+
2240
+ ## 2.0.107 (2024-01-16)
2241
+
2242
+ - Fixed model change in vision plugin
2243
+ - Fixed completion API error
2244
+ - Removed deprecated davinci and replaced with 3.5-turbo-instruct model
2245
+
2246
+ ## 2.0.106 (2024-01-15)
2247
+
2248
+ - Added "undo" action in drawing window
2249
+ - Refactored locale handling
2250
+ - Improved locale and theme overriding
2251
+
2252
+ ## 2.0.105 (2024-01-15)
2253
+
2254
+ - Extended `Theme` menu with new options
2255
+ - `Index (llama-index)` mode changed name to `Chat with files` mode
2256
+ - Refactored theme controller
2257
+ - Fixed model config providing to llama-index mode
2258
+
2259
+ ## 2.0.104 (2024-01-14)
2260
+
2261
+ - Langchain support refactored and fixed
2262
+ - Added editor for models
2263
+ - Added options for customize arguments and environment vars passed to langchain and llama providers
2264
+ - Added context length limit in modes: langchain and llama-index
2265
+ - Models configuration integrated between GPT/Langchain/Llama-index
2266
+
2267
+ ## 2.0.103 (2024-01-13)
2268
+
2269
+ - Llama-index mode, now integrated with context from the database, streaming, plugins, and more, can be utilized as any other mode and is no longer limited to just querying indexes.
2270
+
2271
+ ## 2.0.102 (2024-01-13)
2272
+
2273
+ - Added presets for llama-index mode
2274
+ - Added custom system prompt in llama-index mode
2275
+ - Added option to use online data loaders in settings
2276
+ - Added hiding of chat footer in non-chat tabs
2277
+ - Added missing libraryfor epub data loader
2278
+
2279
+ ## 2.0.101 (2024-01-13)
2280
+
2281
+ - User interface improvements
2282
+ - Added help tips
2283
+
2284
+ ## 2.0.100 (2024-01-13)
2285
+
2286
+ - Llama-index integrated with database - you can now indexing all conversations and use them as additional context
2287
+ - Added support for multiple indexes at once
2288
+ - Added configuration for llama-indexes
2289
+ - Data-dir in home directory changed name from 'output' to 'data'
2290
+
2291
+ ## 2.0.99 (2024-01-12)
2292
+
2293
+ - Added configuration sections in settings dialog
2294
+ - Added translations to file explorer
2295
+ - Langchain migrated to langchain community
2296
+ - Config patchers moved to separated classes
2297
+ - Fixed some UI issues
2298
+
2299
+ ## 2.0.98 (2024-01-12)
2300
+
2301
+ - UI fixes
2302
+
2303
+ ## 2.0.97 (2024-01-11)
2304
+
2305
+ - DALL-E config fix
2306
+
2307
+ ## 2.0.96 (2024-01-11)
2308
+
2309
+ - Added integration with Llama-index (experimental): you can now index/embed files from the data directory and use them as additional data in context.
2310
+ - Added an inline plugin for Llama-index (allows providing additional context from Llama-index in any chat mode).
2311
+ - Built-in file loaders: text files, pdf, csv, md, docx, json, epub, xlsx
2312
+ - Added a new mode: Index (llama-index), it is a mode for querying the index directly.
2313
+ - Improved DALL-E 3 configuration, 16:9 images set as default, added config option for standard and HD mode.
2314
+ - Improved drawing mode.
2315
+
2316
+ ## 2.0.95 (2024-01-10)
2317
+
2318
+ - Added capture from camera feature in image drawing mode
2319
+
2320
+ ## 2.0.94 (2024-01-10)
2321
+
2322
+ - Improved drawing: added canvas, image load/save, store and restore drawing on start and more
2323
+ - Improved dict option editor: added type fields
2324
+
2325
+ ## 2.0.93 (2024-01-10)
2326
+
2327
+ - Added painter (simple image drawing) - it allows to quick draw images and provide them into vision model
2328
+ - Small UI fixes
2329
+
2330
+ ## 2.0.92 (2024-01-10)
2331
+
2332
+ - Fixed bug with system prompt append from main window
2333
+ - Added editor for list options (via RMB -> Edit...)
2334
+ - User/AI names and temperature removed from main window
2335
+ - UI fixes
2336
+
2337
+ ## 2.0.91 (2024-01-09)
2338
+
2339
+ - Added new plugin: Crontab / Task scheduler: the plugin provides cron-based job scheduling - you can now schedule tasks/prompts to be sent at any time using cron-based syntax for task setup.
2340
+ - Added combo-box to configuration option types
2341
+ - Fixed incorrect contexts count in date calculation when timezone is different from UTC
2342
+ - Fixed incorrect paragraph formatting after command DIV in the last line of response
2343
+ - Other small fixes and improvements
2344
+
2345
+ ## 2.0.90 (2024-01-08)
2346
+
2347
+ - Fixed config load defaults bug
2348
+ - Refactored configurations core
2349
+ - Small UI fixes
2350
+
2351
+ ## 2.0.89 (2024-01-07)
2352
+
2353
+ - Added secondary, extended prompt to autonomous mode configuration (it allows quick switching between standard and more extended reasoning).
2354
+ - Fixed user input disappearance in history when appending inside autonomous mode.
2355
+
2356
+ ## 2.0.88 (2024-01-07)
2357
+
2358
+ - Added color labels to context items (you can now mark item on list with 'Set label color...' context menu option)
2359
+ - Improved storage of notepad and calendar items
2360
+
2361
+ ## 2.0.87 (2024-01-07)
2362
+
2363
+ - Fixed paragraph formatting and font color.
2364
+ - Implemented automatic database backup creation prior to all migrations.
2365
+ - Added functionality to search contexts using both fields in a single query: search string and date range.
2366
+
2367
+ ## 2.0.86 (2024-01-07)
2368
+
2369
+ - Fixed window state saving on exit
2370
+ - Added focus on input on creating new context
2371
+
2372
+ ## 2.0.85 (2024-01-07)
2373
+
2374
+ - Improved Autonomous mode
2375
+ - Added synchronous command execution from plugins, which now allows the Autonomous mode to use the output of other plugins (such as access to the websearch engine, access to filesystem and code execution or generating images in DALL-E) and retrieve and use response from them internally
2376
+ - Fixed system prompt for Autonomous mode: resolved the problem of command generation interruptions between responses, and incorporated the capability for user to send additional instructions and update goals in real-time
2377
+ - Fixed loss of selection on the modes and models list in Autonomous mode
2378
+
2379
+ ## 2.0.84 (2024-01-06)
2380
+
2381
+ - The "Self-Loop" plugin has been completely redesigned, improved, and renamed to the Autonomous Mode, which enables the launch of autonomous reasoning in a looped AI-with-AI conversation mode.
2382
+ - A system prompt option has been added to the plugin configuration with instructions for the autonomous mode.
2383
+ - Auto-stop after goal is reached option is added also to plugin settings.
2384
+
2385
+ ## 2.0.83 (2024-01-06)
2386
+
2387
+ - Added calendar, day notes (memos) and color labels
2388
+ - Added context search filter by date (days selected in calendar)
2389
+ - Added 'clear' icon in search input
2390
+ - Small fixes and improvements
2391
+
2392
+ ## 2.0.82 (2024-01-05)
2393
+
2394
+ - Plain text append scroll fix
2395
+
2396
+ ## 2.0.81 (2024-01-05)
2397
+
2398
+ - Added Edit context menu option in models list (JSON file edit)
2399
+ - Fixed link color in light theme css
2400
+ - Fixed font color restore when switching to plain text
2401
+
2402
+ ## 2.0.80 (2024-01-05)
2403
+
2404
+ - Added Plain Text checkbox at the bottom of chat window
2405
+ - Removed datetime append when copying text to notepad
2406
+ - Improved plain-text mode
2407
+
2408
+ ## 2.0.79 (2024-01-05)
2409
+
2410
+ - Fixed bug: notepad save/load content from DB
2411
+
2412
+ ## 2.0.78 (2024-01-05)
2413
+
2414
+ - Improved markdown formatting
2415
+ - Output text renderers moved to separated modules
2416
+ - Added plain-text render option in settings
2417
+ - Vision inline disabled in unsupported modes (Image generation and Assistant) and hidden in Vision (always enabled here)
2418
+ - Updated OpenAI Chat Completion API
2419
+
2420
+ ## 2.0.77 (2024-01-05)
2421
+
2422
+ - Fixed inline plugins disable when pausing command plugins by unchecking '+ Tools' checkbox
2423
+ - Added real-time image appending into chat window when generating images in Image Generation mode
2424
+ - Added automatic creation of context after deletion from the list when no other context is selected
2425
+ - Updated docs
2426
+
2427
+ ## 2.0.76 (2024-01-04)
2428
+
2429
+ - Markdown post-process changed from markdown extension to BS4 html parser.
2430
+
2431
+ ## 2.0.75 (2024-01-04)
2432
+
2433
+ - Improved default theme for markdown styling
2434
+ - Added "Check for updates on start-up" config option in updater dialog
2435
+ - Added custom CSS stylesheets editor in Config menu
2436
+ - Added password show/hide in password/secret input fields (click on the right corner of input reveals plain text)
2437
+ - Fixed JSON files editing (added data reloading after save to prevent overwrite on exit)
2438
+ - Added tests for plugins and extended tests for core/controllers
2439
+
2440
+ ## 2.0.74 (2024-01-03)
2441
+
2442
+ - Fixed timestamp position when appending input to the chat window.
2443
+ - Extended the Markdown parser with an extension for converting `li` to `p` (it allows copying lists bullets with Ctrl-C).
2444
+ - Added notebook titles to the "Copy to..." context menu.
2445
+ - Added an "Open file" option in the file explorer and attachments list.
2446
+
2447
+ ## 2.0.73 (2024-01-03)
2448
+
2449
+ - Fixed vision prompt appending
2450
+ - Improved inline vision: removed the "keep" option and added a vision indicator with a checkbox for quickly enabling/disabling the vision model if needed (will auto-enable when an image is provided if the plugin is active)
2451
+
2452
+ ## 2.0.72 (2024-01-02)
2453
+
2454
+ - Fixed markdown / HTML formatting
2455
+ - Added config option "Use color theme in chat window" in main settings
2456
+ - Added configuration for system prompt to use with vision in Vision Inline plugin settings
2457
+
2458
+ ## 2.0.71 (2024-01-01)
2459
+
2460
+ - Added Markdown and HTML formatting in the chat window (beta version)
2461
+ - Added the display of images, files and URLs internally in the chat window
2462
+ - Added fully integration with images, attachments, and files inside the chat window
2463
+ - Added vision capture and image generation directly into the chat window (via the DALL-E Inline plugin)
2464
+ - Improved audio speech generation (eliminated the silence that prematurely truncated the previous audio output before generating the next speech synthesis)
2465
+
2466
+ ## 2.0.70 (2023-12-31)
2467
+
2468
+ - Added commands part strip from speech generation
2469
+ - Added img check for links sending to vision in auto mode
2470
+
2471
+ ## 2.0.69 (2023-12-31)
2472
+
2473
+ - Added a new plugin: GPT-4 Vision (inline - in any chat). Plugin integrates vision capabilities with any chat mode, not just Vision mode. When the plugin is enabled, the model temporarily switches to vision in the background when an image attachment or vision capture is provided.
2474
+
2475
+
2476
+ ## 2.0.68 (2023-12-31)
2477
+
2478
+ - Added a new plugin: DALL-E 3 Image Generation (inline) which enables image generation in any chat and mode, seamlessly in the background - just request an image from any model, like GPT-4, and it will generate it "inline."
2479
+ - User Interface optimizations.
2480
+ - Added type hints to the code.
2481
+ - Fixed issue with sending attachments in Assistant mode.
2482
+
2483
+ ## 2.0.67 (2023-12-30)
2484
+
2485
+ - Notepad restore fix
2486
+
2487
+ ## 2.0.66 (2023-12-30)
2488
+
2489
+ - Added "Rename" option to Notepad Tabs (via RMB)
2490
+ - Improved language switching
2491
+
2492
+ ## 2.0.65 (2023-12-30)
2493
+
2494
+ - Image generation, vision capture and assistants run listeners moved to async threadpool
2495
+ - Added saving state of scroll value in chat window
2496
+ - Added search string save and restore
2497
+ - Added input text save and restore
2498
+ - Updated tests and code cleanup
2499
+ - Added translations (only main app): DE, ES, FR, IT, UA
2500
+ - Small fixes and optimizations
2501
+
2502
+ ## 2.0.64 (2023-12-29)
2503
+
2504
+ - Commands and plugins execution moved to asynchronous native QT threadpool
2505
+ - Improved theme switching
2506
+ - Improved debugger window
2507
+ - Small fixes and optimizations
2508
+
2509
+ ## 2.0.63 (2023-12-28)
2510
+
2511
+ - Fixed context append bug
2512
+ - Improved layout resize
2513
+
2514
+ ## 2.0.62 (2023-12-28)
2515
+
2516
+ - Fixed date display on context list
2517
+ - Added mode display in context tooltips
2518
+ - Added "Contexts list records limit" config option in settings
2519
+ - Added tokens calculator tooltips
2520
+
2521
+ ## 2.0.61 (2023-12-28)
2522
+
2523
+ - DALL-E multiple messages in one context fix
2524
+
2525
+ ## 2.0.60 (2023-12-28)
2526
+
2527
+ - Message append fix
2528
+
2529
+ ## 2.0.59 (2023-12-28)
2530
+
2531
+ - Storage of context has been changed from JSON files to SQLite database, automatic migration is included - you will not lose your existing data after update :)
2532
+ - Added "Search" functionality for contexts and a search input at the bottom.
2533
+ - Updated contexts now automatically land at the top of the list.
2534
+ - Added the ability to store more information about each context.
2535
+ - Integration of searching, utilizing SQLite, and vector database search coming soon.
2536
+ - Improved DALL-E image generation.
2537
+
2538
+ ## 2.0.58 (2023-12-27)
2539
+
2540
+ - Code refactor
2541
+ - Added stream response mode to Vision mode
2542
+ - Added token calculation to Langchain mode
2543
+ - Optimizations and small fixes
2544
+
2545
+ ## 2.0.57 (2023-12-26)
2546
+
2547
+ - Added threadpool for async workers handling
2548
+ - Fixed segmentation fault error on app exit
2549
+ - Refactored class names
2550
+
2551
+ ## 2.0.56 (2023-12-25)
2552
+
2553
+ - Reorganized project structure
2554
+ - Relative imports changed to absolute imports
2555
+ - Updated core paths
2556
+ - Fixed plugin response hanging
2557
+ - Fixed recursion problem in error logger
2558
+ - Fixed platform module name
2559
+
2560
+ ## 2.0.55 (2023-12-25)
2561
+
2562
+ - Fixed max model ctx tokens
2563
+
2564
+ ## 2.0.54 (2023-12-25)
2565
+
2566
+ - Updater new version check moved to post-setup
2567
+ - Fixed default assistant preset
2568
+ - Added link to Snap Store to updater window
2569
+
2570
+ ## 2.0.52 (2023-12-25)
2571
+
2572
+ - Added DPI option in settings: enable/disable and scale factor
2573
+ - Fixed font-size change with mouse scroll on notepad window
2574
+
2575
+ ## 2.0.51 (2023-12-25)
2576
+
2577
+ - Added auto-content truncate before tokens limit exceeded
2578
+ - Added dynamic max tokens switching
2579
+ - Fixed real-time tokens calculation
2580
+
2581
+ ## 2.0.50 (2023-12-25)
2582
+
2583
+ - Fixed async logging
2584
+ - Updated tests
2585
+
2586
+ ## 2.0.49 (2023-12-24)
2587
+
2588
+ - Fixed crash on async command call
2589
+ - Fixed UI issues
2590
+ - Added data providers
2591
+ - Refactored classes
2592
+
2593
+ ## 2.0.48 (2023-12-23)
2594
+
2595
+ - Added custom errors handler with logging.
2596
+
2597
+ ## 2.0.47 (2023-12-23)
2598
+
2599
+ - Added "Copy to Notepad/Input" to the context menu for selected text.
2600
+ - Added an option to read selected text using speech synthesis in the Notepad window.
2601
+ - Added a configurable number of notepads.
2602
+ - Refactored UI classes.
2603
+ - Added a thread-safe plugin debugger/logger.
2604
+ - Fixed UI issues.
2605
+
2606
+ ## 2.0.46 (2023-12-22)
2607
+
2608
+ - Improved tokens calculation (added extra tokens from plugins to real-time calculation)
2609
+ - Added new context menu option to selected text in output/input: "Read with speech synthesis"
2610
+
2611
+ ## 2.0.45 (2023-12-22)
2612
+
2613
+ - Added "light" themes
2614
+ - Fixed tokens calculation
2615
+ - Updated tests
2616
+
2617
+ ## 2.0.44 (2023-12-21)
2618
+
2619
+ - Fixed language switch in plugins settings
2620
+
2621
+ ## 2.0.43 (2023-12-21)
2622
+
2623
+ - PyGPT publicated at Snap Store: https://snapcraft.io/pygpt
2624
+ - Added link to Snap Store in app menu
2625
+
2626
+ ## 2.0.42 (2023-12-20)
2627
+
2628
+ - Audio output library changed to `PyGame` mixer (instead of `PyDub`)
2629
+ - Added `PyGame` as a dependency and removed `PyDub` and `simpleaudio` dependencies
2630
+ - Added audio input/output stop immediately on plugin disable
2631
+
2632
+ ## 2.0.41 (2023-12-20)
2633
+
2634
+ - Added "sandbox" feature to the Code Interpreter – it allows the use of any Docker image as an environment for code and commands execution.
2635
+ - Context auto-summary moved to an async thread.
2636
+ - Command execution moved to an async thread.
2637
+
2638
+ ## 2.0.40 (2023-12-19)
2639
+
2640
+ - Totally improved material themes support
2641
+ - Added QSS-configurable themes to chat output window and code highlighter
2642
+ - Added ability to overriding styles per any theme in user directory
2643
+ - Fixed UI layout elements
2644
+ - Fixed DPI issues in Windows systems
2645
+
2646
+ ## 2.0.39 (2023-12-18)
2647
+
2648
+ - Fixed dialogs closing with the Esc key
2649
+ - Added an indicator for "can append to context in this mode"
2650
+ - Added functionality to fetch filenames from the API when importing files uploaded to Assistants
2651
+ - Enabled switching to newly created Assistants after creation
2652
+ - Optimized class structure
2653
+
2654
+ ## 2.0.38 (2023-12-18)
2655
+
2656
+ - Multi-language support added to plugins
2657
+ - Implemented feature to override locale and CSS files by overwriting them in the home directory
2658
+ - Bug fixes
2659
+
2660
+ ## 2.0.37 (2023-12-18)
2661
+
2662
+ - Fixed prompt typing in real-time on the right toolbox
2663
+ - Added toolbox font change option
2664
+ - Simplified custom plugins and wrappers for LLMs application (see Docs for more details)
2665
+ - Bug fixes
2666
+ - UI fixes
2667
+
2668
+ ## 2.0.36 (2023-12-18)
2669
+
2670
+ - Improved plugins handling
2671
+ - Added Event Dispatcher and event-based system
2672
+
2673
+ ## 2.0.35 (2023-12-18)
2674
+
2675
+ - Fixed lists focus lost and selection disappearing
2676
+ - Added clickable links to API keys pages
2677
+ - Added scroll position store in notepads
2678
+ - Auto auto-switch to preset after create
2679
+ - Assistants files and thread moved to external classes
2680
+ - UI fixes
2681
+ - Code fixes
2682
+
2683
+ ## 2.0.34 (2023-12-17)
2684
+
2685
+ - Added option "Lock incompatible modes" to prevent mixing of incompatible contexts.
2686
+ - Added PyPI link to the About menu.
2687
+
2688
+ ## 2.0.33 (2023-12-17)
2689
+
2690
+ - Fixed dialog's save/update button handlers
2691
+ - Fixed uploaded files reload in assistants
2692
+ - Fixed focus loss on assistants list
2693
+ - Fixed Output Files header
2694
+ - Fixed UI
2695
+ - Added delete confirmation to dictionary options
2696
+ - Added context change lock before response generation
2697
+ - Added allowed types for contexts
2698
+ - Added a link to the documentation in the menu
2699
+ - Added saving state of opened advanced options in plugins
2700
+ - Disabled mouse scroll on sliders
2701
+
2702
+ ## 2.0.32 (2023-12-16)
2703
+
2704
+ - Added real-time font-size change with CTRL + mouse scroll in input, output and notepad windows
2705
+ - Increased allowed font-size to 42
2706
+ - Fixed line display in plugin settings
2707
+
2708
+ ## 2.0.31 (2023-12-16)
2709
+
2710
+ - Speech recognition (Whisper) small fixes, optimization and improvements
2711
+ - Added advanced internal options to speech recognition config
2712
+
2713
+ ## 2.0.30 (2023-12-15)
2714
+
2715
+ - Speech recognition and synthesis fixes and improvements
2716
+ - Fixed and improved speech recognition via Whisper
2717
+ - Fixed and improved voice synthesis via OpenAI TTS and MS Azure
2718
+ - Added new options to speech recognition: magic words, stop words, auto-send and wait for response
2719
+ - Added new more intuitive voice input/output control panel in UI
2720
+
2721
+ ## 2.0.29 (2023-12-14)
2722
+
2723
+ - Added config and plugin options getters/setters
2724
+ - Changed logo
2725
+ - Small UI fixes
2726
+
2727
+ ## 2.0.28 (2023-12-14)
2728
+
2729
+ - Added new hidden Credentials/API Key field type (asterisks against plain-text)
2730
+ - Simplified presets editing
2731
+ - Fixed Assistants function management
2732
+ - Improved UI
2733
+ - Improved settings editing
2734
+
2735
+ ## 2.0.27 (2023-12-14)
2736
+
2737
+ - Added specified "url open" command to Web Search plugin
2738
+ - Added additional advanced options to above plugins
2739
+ - Improved Web Search and Commands Execution
2740
+ - Improved updater and config patcher
2741
+ - Improved command execution logging
2742
+
2743
+ ## 2.0.26 (2023-12-13)
2744
+
2745
+ - Added advanced config options for plugins
2746
+ - Added additional file operations to Files I/O plugin
2747
+
2748
+ ## 2.0.25 (2023-12-13)
2749
+
2750
+ - Added advanced settings
2751
+ - Added clear on capture config option
2752
+ - Added capture quality config option
2753
+ - Added launcher shortcuts
2754
+ - Improved plugins
2755
+ - Improved WebSearch
2756
+ - Optimized commands response
2757
+ - Fixed UI issues
2758
+
2759
+ ## 2.0.24 (2023-12-12)
2760
+
2761
+ - Fixed empty string in tokens calculator
2762
+ - Added attachments reset before auto-capture from camera
2763
+
2764
+ ## 2.0.23 (2023-12-12)
2765
+
2766
+ - Improved python code execution
2767
+
2768
+ ## 2.0.22 (2023-12-12)
2769
+
2770
+ - Fix: env API KEY name for Langchain mode
2771
+
2772
+ ## 2.0.21 (2023-12-12)
2773
+
2774
+ - Simplified assistant configuration
2775
+ - Added assistant configuration validation
2776
+ - Improved UI
2777
+ - Improved language switcher
2778
+
2779
+ ## 2.0.20 (2023-12-11)
2780
+
2781
+ - Improved Assistants API
2782
+ - Added assistant uploaded files storage
2783
+ - Added assistant uploaded files management
2784
+ - Added assistant remote functions management
2785
+ - Fixed "open in directory" option on Windows in DALL-E image generation
2786
+ - Improved attachments and file upload management
2787
+ - Improved UI and more
2788
+
2789
+ ## 2.0.19 (2023-12-10)
2790
+
2791
+ - Optimized DALL-E prompt generator helper
2792
+
2793
+ ## 2.0.18 (2023-12-10)
2794
+
2795
+ - Config fix
2796
+
2797
+ ## 2.0.17 (2023-12-10)
2798
+
2799
+ - Small fixes
2800
+
2801
+ ## 2.0.16 (2023-12-10)
2802
+
2803
+ - Added multiple cameras config
2804
+ - Added DALL-E prompt generation RAW MODE ON/OFF switch
2805
+ - Improved camera handling
2806
+
2807
+ ## 2.0.15 (2023-12-10)
2808
+
2809
+ - Added camera release / disable on camera off
2810
+
2811
+ ## 2.0.14 (2023-12-10)
2812
+
2813
+ - Added real-time video capture from camera in "Vision" mode
2814
+
2815
+ ## 2.0.13 (2023-12-10)
2816
+
2817
+ - Fixed path resolving in "open in directory" option on Windows OS
2818
+ - Added real-time apply of "layout density" (after "save changes" in Settings)
2819
+ - Default "layout density" changed to 0
2820
+ - Updated locale
2821
+
2822
+ ## 2.0.12 (2023-12-09)
2823
+
2824
+ - Improved system commands execution
2825
+
2826
+ ## 2.0.11 (2023-12-09)
2827
+
2828
+ - Small fixes
2829
+
2830
+ ## 2.0.10 (2023-12-09)
2831
+
2832
+ - Updated locale
2833
+
2834
+ ## 2.0.9 (2023-12-09)
2835
+
2836
+ - Added `Custom Commands` feature; plugin allows to easily create and execute custom commands
2837
+ - Added new features to `Files I/O`: downloading files, copying files and dirs, moving files and dirs
2838
+
2839
+ ## 2.0.8 (2023-12-08)
2840
+
2841
+ - Improved Web Search plugin
2842
+
2843
+ ## 2.0.7 (2023-12-08)
2844
+
2845
+ - Improved code execution with Code Interpreter / Files I/O plugins
2846
+
2847
+ ## 2.0.6 (2023-12-08)
2848
+
2849
+ - Added layout density configuration
2850
+
2851
+ ## 2.0.5 (2023-12-08)
2852
+
2853
+ - Added support for external CSS
2854
+ - Added custom fonts support
2855
+ - Improved material theme support
2856
+
2857
+ ## 2.0.4 (2023-12-08)
2858
+
2859
+ - Added configuration options for plugins: Files I/O, Code Interpreter
2860
+ - UI fixes
2861
+
2862
+ ## 2.0.3 (2023-12-07)
2863
+
2864
+ - Python code execution fix
2865
+
2866
+ ## 2.0.2 (2023-12-07)
2867
+
2868
+ - Added python command template settings
2869
+ - Added layout state restore
2870
+ - Refactored settings
2871
+ - Improved settings window
2872
+ - Bugfixes
2873
+
2874
+ ## 2.0.1 (2023-12-07)
2875
+
2876
+ - Fixed settings dialog initialization
2877
+ - Fixed models.json migration
2878
+ - Added enter key behaviour settings
2879
+ - Added font size settings for input and context list
2880
+ - Added ctx auto-summary settings
2881
+ - Added python command plugin settings
2882
+
2883
+ ## 2.0.0 (2023-12-05)
2884
+
2885
+ New features in version 2.0.0:
2886
+
2887
+ - Added support for new models: GPT-4 Turbo, GPT-4 Vision, and DALL-E 3
2888
+ - Integrated Langchain with support for any model it provides
2889
+ - Assistants API and simple assistant configuration setup
2890
+ - Vision and image analysis capabilities through GPT-4 Vision
2891
+ - Image generation with DALL-E 3
2892
+ - File and attachment support including upload, download, and management
2893
+ - New built-in notepad feature
2894
+ - Multiple assistants support
2895
+ - Command execution support
2896
+ - Filesystem access allows GPT to read and write files
2897
+ - Asynchronous (stream) mode added
2898
+ - Local Python code interpreter that enables code execution by GPT
2899
+ - System command executions directly from GPT
2900
+ - Voice synthesis provided via Microsoft Azure TTS and OpenAI TTS (Text-To-Speech)
2901
+ - Voice recognition provided by OpenAI Whisper
2902
+ - Automatic summarization of context titles
2903
+ - Upgraded Web Browser plugin
2904
+ - More precise token calculation functionality
2905
+ - Added output markup highlight
2906
+ - Improved UX
2907
+ - Bug fixes
2908
+ - Plus additional enhancements and expanded capabilities
2909
+
2910
+ ## 0.9.6 (2023.04.16)
2911
+
2912
+ - Added real-time logger
2913
+ - Improved debug mode
2914
+
2915
+ ## 0.9.5 (2023.04.16)
2916
+
2917
+ - Added web plugin (adds access to the Internet using Google Custom Search Engine and Wikipedia API)
2918
+ - Added voice output plugin (adds voice synthesis using Microsoft Azure)
2919
+
2920
+ ## 0.9.4 (2023.04.15)
2921
+
2922
+ - Added plugins support
2923
+
2924
+ ## 0.9.3 (2023.04.14)
2925
+
2926
+ - Packed into PyPI package
2927
+
2928
+ ## 0.9.2 (2023.04.12)
2929
+
2930
+ - Added theme color settings
2931
+ - Small UI fixes
2932
+
2933
+ ## 0.9.1 (2023.04.11)
2934
+
2935
+ - Added organization key configuration (by @kaneda2004, PR#1)
2936
+ - Added config versions patching
2937
+
2938
+ ## 0.9.0 (2023.04.09)
2939
+
2940
+ - Initial release