pygpt-net 2.4.37__py3-none-any.whl → 2.4.41__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (255) hide show
  1. CHANGELOG.md +29 -0
  2. README.md +44 -115
  3. pygpt_net/CHANGELOG.txt +29 -0
  4. pygpt_net/__init__.py +3 -3
  5. pygpt_net/controller/__init__.py +7 -3
  6. pygpt_net/controller/access/control.py +1 -1
  7. pygpt_net/controller/access/voice.py +11 -5
  8. pygpt_net/controller/agent/experts.py +11 -6
  9. pygpt_net/controller/agent/legacy.py +8 -6
  10. pygpt_net/controller/agent/llama.py +4 -2
  11. pygpt_net/controller/assistant/__init__.py +9 -4
  12. pygpt_net/controller/assistant/batch.py +38 -21
  13. pygpt_net/controller/assistant/editor.py +7 -6
  14. pygpt_net/controller/assistant/files.py +23 -7
  15. pygpt_net/controller/assistant/store.py +20 -7
  16. pygpt_net/controller/assistant/threads.py +34 -8
  17. pygpt_net/controller/attachment.py +29 -10
  18. pygpt_net/controller/audio/__init__.py +25 -4
  19. pygpt_net/controller/calendar/__init__.py +23 -4
  20. pygpt_net/controller/calendar/note.py +57 -11
  21. pygpt_net/controller/camera.py +3 -2
  22. pygpt_net/controller/chat/__init__.py +5 -3
  23. pygpt_net/controller/chat/attachment.py +34 -7
  24. pygpt_net/controller/chat/command.py +4 -2
  25. pygpt_net/controller/chat/common.py +11 -4
  26. pygpt_net/controller/chat/files.py +10 -3
  27. pygpt_net/controller/chat/image.py +17 -5
  28. pygpt_net/controller/chat/input.py +10 -7
  29. pygpt_net/controller/chat/output.py +21 -6
  30. pygpt_net/controller/chat/render.py +100 -21
  31. pygpt_net/controller/chat/response.py +34 -7
  32. pygpt_net/controller/chat/stream.py +4 -2
  33. pygpt_net/controller/chat/text.py +6 -4
  34. pygpt_net/controller/command.py +11 -3
  35. pygpt_net/controller/config/__init__.py +34 -6
  36. pygpt_net/controller/config/field/checkbox.py +7 -4
  37. pygpt_net/controller/config/field/cmd.py +7 -5
  38. pygpt_net/controller/config/field/combo.py +14 -6
  39. pygpt_net/controller/config/field/dictionary.py +14 -11
  40. pygpt_net/controller/config/field/input.py +9 -6
  41. pygpt_net/controller/config/field/slider.py +11 -8
  42. pygpt_net/controller/config/field/textarea.py +8 -5
  43. pygpt_net/controller/config/placeholder.py +52 -21
  44. pygpt_net/controller/ctx/__init__.py +138 -49
  45. pygpt_net/controller/ctx/common.py +15 -4
  46. pygpt_net/controller/ctx/extra.py +11 -3
  47. pygpt_net/controller/ctx/summarizer.py +24 -5
  48. pygpt_net/controller/debug/__init__.py +27 -6
  49. pygpt_net/controller/dialogs/confirm.py +34 -7
  50. pygpt_net/controller/dialogs/debug.py +4 -2
  51. pygpt_net/controller/dialogs/info.py +7 -2
  52. pygpt_net/controller/files.py +48 -10
  53. pygpt_net/controller/finder.py +11 -5
  54. pygpt_net/controller/idx/__init__.py +10 -3
  55. pygpt_net/controller/idx/common.py +4 -2
  56. pygpt_net/controller/idx/indexer.py +25 -17
  57. pygpt_net/controller/idx/settings.py +9 -3
  58. pygpt_net/controller/kernel/__init__.py +34 -8
  59. pygpt_net/controller/kernel/reply.py +12 -3
  60. pygpt_net/controller/kernel/stack.py +5 -3
  61. pygpt_net/controller/lang/custom.py +2 -7
  62. pygpt_net/controller/lang/mapping.py +5 -3
  63. pygpt_net/controller/layout.py +2 -2
  64. pygpt_net/controller/mode.py +16 -4
  65. pygpt_net/controller/model/__init__.py +14 -3
  66. pygpt_net/controller/model/editor.py +8 -3
  67. pygpt_net/controller/notepad.py +26 -12
  68. pygpt_net/controller/painter/capture.py +23 -4
  69. pygpt_net/controller/painter/common.py +9 -7
  70. pygpt_net/controller/plugins/__init__.py +19 -5
  71. pygpt_net/controller/plugins/presets.py +15 -6
  72. pygpt_net/controller/plugins/settings.py +9 -3
  73. pygpt_net/controller/presets/__init__.py +55 -16
  74. pygpt_net/controller/presets/editor.py +26 -10
  75. pygpt_net/controller/settings/__init__.py +3 -2
  76. pygpt_net/controller/settings/editor.py +29 -7
  77. pygpt_net/controller/settings/profile.py +22 -5
  78. pygpt_net/controller/theme/__init__.py +54 -12
  79. pygpt_net/controller/theme/common.py +24 -2
  80. pygpt_net/controller/theme/markdown.py +32 -16
  81. pygpt_net/controller/theme/menu.py +26 -5
  82. pygpt_net/controller/theme/nodes.py +2 -5
  83. pygpt_net/controller/tools/__init__.py +40 -2
  84. pygpt_net/controller/ui/__init__.py +4 -6
  85. pygpt_net/controller/ui/tabs.py +363 -65
  86. pygpt_net/core/access/actions.py +6 -4
  87. pygpt_net/core/access/shortcuts.py +4 -3
  88. pygpt_net/core/access/voice.py +6 -5
  89. pygpt_net/core/agents/legacy.py +4 -2
  90. pygpt_net/core/agents/memory.py +7 -2
  91. pygpt_net/core/agents/observer/evaluation.py +15 -7
  92. pygpt_net/core/agents/provider.py +9 -4
  93. pygpt_net/core/agents/runner.py +61 -15
  94. pygpt_net/core/agents/tools.py +23 -5
  95. pygpt_net/core/assistants/__init__.py +6 -4
  96. pygpt_net/core/assistants/files.py +35 -12
  97. pygpt_net/core/assistants/store.py +20 -10
  98. pygpt_net/core/attachments/__init__.py +54 -15
  99. pygpt_net/core/attachments/context.py +92 -29
  100. pygpt_net/core/audio/__init__.py +71 -3
  101. pygpt_net/core/audio/context.py +7 -2
  102. pygpt_net/core/bridge/__init__.py +22 -6
  103. pygpt_net/core/bridge/context.py +5 -3
  104. pygpt_net/core/calendar/__init__.py +57 -11
  105. pygpt_net/core/chain/__init__.py +8 -2
  106. pygpt_net/core/chain/chat.py +10 -8
  107. pygpt_net/core/chain/completion.py +10 -7
  108. pygpt_net/core/command.py +62 -17
  109. pygpt_net/core/ctx/__init__.py +260 -58
  110. pygpt_net/core/ctx/bag.py +25 -4
  111. pygpt_net/core/ctx/container.py +28 -17
  112. pygpt_net/core/ctx/idx.py +45 -8
  113. pygpt_net/core/ctx/output.py +95 -74
  114. pygpt_net/core/ctx/reply.py +5 -2
  115. pygpt_net/core/db/__init__.py +8 -7
  116. pygpt_net/core/db/viewer.py +17 -11
  117. pygpt_net/core/debug/__init__.py +10 -9
  118. pygpt_net/core/debug/tabs.py +5 -2
  119. pygpt_net/core/docker/__init__.py +11 -5
  120. pygpt_net/core/docker/builder.py +11 -3
  121. pygpt_net/core/events/app.py +5 -3
  122. pygpt_net/core/events/base.py +11 -5
  123. pygpt_net/core/events/control.py +5 -3
  124. pygpt_net/core/events/event.py +17 -7
  125. pygpt_net/core/events/kernel.py +5 -3
  126. pygpt_net/core/events/render.py +5 -3
  127. pygpt_net/core/experts/__init__.py +5 -4
  128. pygpt_net/core/filesystem/__init__.py +52 -34
  129. pygpt_net/core/filesystem/actions.py +8 -5
  130. pygpt_net/core/filesystem/editor.py +13 -3
  131. pygpt_net/core/filesystem/types.py +12 -7
  132. pygpt_net/core/filesystem/url.py +7 -3
  133. pygpt_net/core/idx/__init__.py +34 -25
  134. pygpt_net/core/idx/chat.py +40 -16
  135. pygpt_net/core/idx/context.py +6 -2
  136. pygpt_net/core/idx/indexing.py +84 -35
  137. pygpt_net/core/idx/llm.py +11 -3
  138. pygpt_net/core/idx/metadata.py +13 -3
  139. pygpt_net/core/idx/types/ctx.py +32 -6
  140. pygpt_net/core/idx/types/external.py +41 -7
  141. pygpt_net/core/idx/types/files.py +31 -6
  142. pygpt_net/core/image.py +15 -4
  143. pygpt_net/core/llm/__init__.py +13 -3
  144. pygpt_net/core/locale.py +34 -8
  145. pygpt_net/core/models.py +4 -3
  146. pygpt_net/core/notepad.py +9 -4
  147. pygpt_net/core/plugins.py +7 -6
  148. pygpt_net/core/presets.py +19 -10
  149. pygpt_net/core/profile.py +12 -6
  150. pygpt_net/core/prompt/__init__.py +10 -3
  151. pygpt_net/core/prompt/custom.py +7 -6
  152. pygpt_net/core/prompt/template.py +9 -3
  153. pygpt_net/core/render/base.py +117 -22
  154. pygpt_net/core/render/markdown/body.py +27 -7
  155. pygpt_net/core/render/markdown/renderer.py +119 -22
  156. pygpt_net/core/render/plain/body.py +22 -5
  157. pygpt_net/core/render/plain/renderer.py +97 -21
  158. pygpt_net/core/render/web/body.py +75 -25
  159. pygpt_net/core/render/web/renderer.py +313 -63
  160. pygpt_net/core/settings.py +9 -4
  161. pygpt_net/core/tabs/__init__.py +290 -103
  162. pygpt_net/core/tabs/tab.py +17 -4
  163. pygpt_net/core/tokens.py +44 -11
  164. pygpt_net/core/updater/__init__.py +20 -7
  165. pygpt_net/core/vision/analyzer.py +29 -6
  166. pygpt_net/core/web.py +130 -2
  167. pygpt_net/data/config/config.json +15 -4
  168. pygpt_net/data/config/models.json +3 -3
  169. pygpt_net/data/config/modes.json +3 -3
  170. pygpt_net/data/config/settings.json +55 -10
  171. pygpt_net/data/config/settings_section.json +3 -0
  172. pygpt_net/data/css/style.light.css +1 -0
  173. pygpt_net/data/css/{web.css → web-blocks.css} +162 -133
  174. pygpt_net/data/css/{web.light.css → web-blocks.light.css} +7 -0
  175. pygpt_net/data/css/web-chatgpt.css +350 -0
  176. pygpt_net/data/css/web-chatgpt.dark.css +64 -0
  177. pygpt_net/data/css/web-chatgpt.light.css +75 -0
  178. pygpt_net/data/css/web-chatgpt_wide.css +350 -0
  179. pygpt_net/data/css/web-chatgpt_wide.dark.css +64 -0
  180. pygpt_net/data/css/web-chatgpt_wide.light.css +75 -0
  181. pygpt_net/data/icons/split_screen.svg +1 -0
  182. pygpt_net/data/locale/locale.de.ini +12 -0
  183. pygpt_net/data/locale/locale.en.ini +17 -2
  184. pygpt_net/data/locale/locale.es.ini +12 -0
  185. pygpt_net/data/locale/locale.fr.ini +12 -0
  186. pygpt_net/data/locale/locale.it.ini +12 -0
  187. pygpt_net/data/locale/locale.pl.ini +12 -0
  188. pygpt_net/data/locale/locale.uk.ini +12 -0
  189. pygpt_net/data/locale/locale.zh.ini +12 -0
  190. pygpt_net/data/locale/plugin.cmd_web.de.ini +2 -0
  191. pygpt_net/data/locale/plugin.cmd_web.en.ini +20 -10
  192. pygpt_net/data/locale/plugin.cmd_web.es.ini +2 -0
  193. pygpt_net/data/locale/plugin.cmd_web.fr.ini +2 -0
  194. pygpt_net/data/locale/plugin.cmd_web.it.ini +2 -0
  195. pygpt_net/data/locale/plugin.cmd_web.pl.ini +2 -0
  196. pygpt_net/data/locale/plugin.cmd_web.uk.ini +2 -0
  197. pygpt_net/data/locale/plugin.cmd_web.zh.ini +2 -0
  198. pygpt_net/icons.qrc +1 -0
  199. pygpt_net/icons_rc.py +165 -136
  200. pygpt_net/item/ctx.py +46 -24
  201. pygpt_net/plugin/audio_input/simple.py +21 -5
  202. pygpt_net/plugin/audio_output/__init__.py +4 -1
  203. pygpt_net/plugin/base/config.py +4 -2
  204. pygpt_net/plugin/base/plugin.py +26 -6
  205. pygpt_net/plugin/base/worker.py +37 -9
  206. pygpt_net/plugin/cmd_code_interpreter/__init__.py +39 -37
  207. pygpt_net/plugin/cmd_code_interpreter/runner.py +25 -12
  208. pygpt_net/plugin/cmd_web/__init__.py +46 -6
  209. pygpt_net/plugin/cmd_web/config.py +74 -48
  210. pygpt_net/plugin/cmd_web/websearch.py +61 -28
  211. pygpt_net/plugin/cmd_web/worker.py +79 -13
  212. pygpt_net/provider/core/config/patch.py +43 -1
  213. pygpt_net/provider/core/ctx/base.py +4 -1
  214. pygpt_net/provider/core/ctx/db_sqlite/__init__.py +10 -1
  215. pygpt_net/provider/core/ctx/db_sqlite/storage.py +22 -1
  216. pygpt_net/provider/gpt/assistants.py +10 -9
  217. pygpt_net/provider/gpt/audio.py +3 -2
  218. pygpt_net/provider/gpt/chat.py +8 -7
  219. pygpt_net/provider/gpt/completion.py +6 -4
  220. pygpt_net/provider/gpt/image.py +9 -2
  221. pygpt_net/provider/gpt/store.py +14 -13
  222. pygpt_net/provider/gpt/vision.py +6 -5
  223. pygpt_net/tools/__init__.py +9 -1
  224. pygpt_net/tools/base.py +15 -1
  225. pygpt_net/tools/code_interpreter/__init__.py +174 -75
  226. pygpt_net/tools/code_interpreter/ui/dialogs.py +21 -103
  227. pygpt_net/tools/code_interpreter/ui/widgets.py +284 -9
  228. pygpt_net/tools/html_canvas/__init__.py +78 -23
  229. pygpt_net/tools/html_canvas/ui/dialogs.py +46 -62
  230. pygpt_net/tools/html_canvas/ui/widgets.py +96 -3
  231. pygpt_net/ui/base/context_menu.py +2 -2
  232. pygpt_net/ui/layout/chat/input.py +10 -18
  233. pygpt_net/ui/layout/chat/output.py +26 -44
  234. pygpt_net/ui/layout/ctx/ctx_list.py +13 -4
  235. pygpt_net/ui/layout/toolbox/footer.py +18 -2
  236. pygpt_net/ui/main.py +2 -2
  237. pygpt_net/ui/menu/config.py +7 -11
  238. pygpt_net/ui/menu/debug.py +11 -1
  239. pygpt_net/ui/menu/theme.py +9 -2
  240. pygpt_net/ui/widget/filesystem/explorer.py +2 -2
  241. pygpt_net/ui/widget/lists/context.py +27 -5
  242. pygpt_net/ui/widget/tabs/Input.py +2 -2
  243. pygpt_net/ui/widget/tabs/body.py +2 -1
  244. pygpt_net/ui/widget/tabs/layout.py +195 -0
  245. pygpt_net/ui/widget/tabs/output.py +218 -55
  246. pygpt_net/ui/widget/textarea/html.py +11 -1
  247. pygpt_net/ui/widget/textarea/output.py +10 -1
  248. pygpt_net/ui/widget/textarea/search_input.py +4 -1
  249. pygpt_net/ui/widget/textarea/web.py +49 -9
  250. {pygpt_net-2.4.37.dist-info → pygpt_net-2.4.41.dist-info}/METADATA +45 -116
  251. {pygpt_net-2.4.37.dist-info → pygpt_net-2.4.41.dist-info}/RECORD +255 -247
  252. /pygpt_net/data/css/{web.dark.css → web-blocks.dark.css} +0 -0
  253. {pygpt_net-2.4.37.dist-info → pygpt_net-2.4.41.dist-info}/LICENSE +0 -0
  254. {pygpt_net-2.4.37.dist-info → pygpt_net-2.4.41.dist-info}/WHEEL +0 -0
  255. {pygpt_net-2.4.37.dist-info → pygpt_net-2.4.41.dist-info}/entry_points.txt +0 -0
@@ -49,6 +49,8 @@ action.tab.add.notepad = Ajouter un nouveau bloc-notes
49
49
  action.tab.close = Fermer
50
50
  action.tab.close_all.chat = Fermer tous les chats
51
51
  action.tab.close_all.notepad = Fermer tous les blocs-notes
52
+ action.tab.move.left = Déplacer vers la colonne de gauche
53
+ action.tab.move.right = Déplacer vers la colonne de droite
52
54
  action.touch = Créer un fichier...
53
55
  action.truncate = Tout effacer
54
56
  action.undo = Annuler
@@ -548,6 +550,7 @@ ipython.docker.build.finish = Succès! L'image Docker pour IPython a été const
548
550
  ipython.docker.build.start = Construction de l'image Docker... veuillez patienter...
549
551
  ipython.docker.install = L'exécution d'IPython nécessite l'installation de Docker. Docker n'a pas été détecté sur ce système. Veuillez d'abord installer Docker ; vous pouvez trouver les instructions ici : https://docs.docker.com/engine/install/. L'exécution de la commande actuelle a été mise en pause.
550
552
  ipython.image.build = L'image Docker pour IPython n'a pas encore été construite. Cela va se produire maintenant, et cela peut prendre un certain temps (mais c'est une procédure unique). L'exécution de la commande a été mise en pause. Une fois l'image construite, veuillez exécuter à nouveau la commande.
553
+ layout.split = Écran scindé
551
554
  menu.audio = Audio / Voix
552
555
  menu.audio.cache.clear = Effacer le cache audio...
553
556
  menu.audio.control.global = Contrôle vocal (global)
@@ -612,6 +615,7 @@ menu.theme.dark = Couleur sombre...
612
615
  menu.theme.density = Taille de la mise en page
613
616
  menu.theme.light = Couleur claire...
614
617
  menu.theme.settings = Paramètres...
618
+ menu.theme.style = Style...
615
619
  menu.theme.syntax = Coloration syntaxique du code...
616
620
  menu.theme.tooltips = Afficher les infobulles
617
621
  menu.tools = Outils
@@ -752,6 +756,12 @@ settings.api_key = Clé API OpenAI
752
756
  settings.api_key.desc = Requis pour l'API OpenAI. Si vous souhaitez utiliser des points de terminaison personnalisés ou des API locales, vous pouvez entrer n'importe quelle valeur ici.
753
757
  settings.app.env = Environnement de l'application (os.environ)
754
758
  settings.app.env.desc = Variables d'environnement supplémentaires à définir au démarrage de l'application
759
+ settings.audio.input.channels = Canaux
760
+ settings.audio.input.channels.desc = Canaux d'entrée, par défaut : 1
761
+ settings.audio.input.device = Périphérique d'Entrée Audio
762
+ settings.audio.input.device.desc = Sélectionnez le périphérique audio pour l'entrée du microphone.
763
+ settings.audio.input.rate = Taux d'échantillonnage
764
+ settings.audio.input.rate.desc = Taux d'échantillonnage, par défaut : 44100
755
765
  settings.check_updates = Vérifier les mises à jour au démarrage
756
766
  settings.check_updates.bg = Vérifier les mises à jour en arrière-plan
757
767
  settings.cmd.field.desc = Activer l'outil `{cmd}`.
@@ -857,6 +867,7 @@ settings.render.plain = Désactiver le formatage markdown dans la sortie (mode t
857
867
  settings.restart.required = Un redémarrage de l'application est requis pour que les modifications de cette option soient appliquées.
858
868
  settings.section.access = Accessibilité
859
869
  settings.section.agent = Agents et experts
870
+ settings.section.audio = Audio
860
871
  settings.section.ctx = Contexte
861
872
  settings.section.files = Fichiers et pièces jointes
862
873
  settings.section.general = Général
@@ -870,6 +881,7 @@ settings.store_history = Stocker l'historique
870
881
  settings.store_history_time = Stocker l'heure dans l'historique
871
882
  settings.temperature = Température
872
883
  settings.theme.markdown = Utilisez les couleurs du thème dans la fenêtre de chat
884
+ settings.theme.style = Style (chat)
873
885
  settings.top_p = Top-p
874
886
  settings.upload.data_dir = Stockez les images, captures et téléchargements dans le répertoire de données
875
887
  settings.upload.data_dir.desc = Activez pour stocker tout dans un seul répertoire de données
@@ -49,6 +49,8 @@ action.tab.add.notepad = Aggiungi un nuovo blocco note
49
49
  action.tab.close = Chiudi
50
50
  action.tab.close_all.chat = Chiudi tutte le chat
51
51
  action.tab.close_all.notepad = Chiudi tutti i blocchi note
52
+ action.tab.move.left = Sposta nella colonna di sinistra
53
+ action.tab.move.right = Sposta nella colonna di destra
52
54
  action.touch = Crea file...
53
55
  action.truncate = Cancellare tutto
54
56
  action.undo = Annulla
@@ -548,6 +550,7 @@ ipython.docker.build.finish = Successo! L'immagine Docker per IPython è stata c
548
550
  ipython.docker.build.start = Creazione dell'immagine Docker... per favore aspetta...
549
551
  ipython.docker.install = L'esecuzione di IPython richiede l'installazione di Docker. Docker non è stato rilevato su questo sistema. Si prega di installare prima Docker; puoi trovare le istruzioni qui: https://docs.docker.com/engine/install/. L'esecuzione del comando corrente è stata messa in pausa.
550
552
  ipython.image.build = L'immagine Docker per IPython non è stata ancora costruita. Questo avverrà ora e potrebbe richiedere del tempo (ma è una procedura una tantum). L'esecuzione del comando è stata messa in pausa. Una volta costruita l'immagine, esegui nuovamente il comando.
553
+ layout.split = Schermo diviso
551
554
  menu.audio = Audio / Voce
552
555
  menu.audio.cache.clear = Cancella cache audio...
553
556
  menu.audio.control.global = Controllo vocale (globale)
@@ -612,6 +615,7 @@ menu.theme.dark = Colore scuro...
612
615
  menu.theme.density = Dimensione del layout
613
616
  menu.theme.light = Colore chiaro...
614
617
  menu.theme.settings = Impostazioni...
618
+ menu.theme.style = Stile...
615
619
  menu.theme.syntax = Evidenziazione della sintassi del codice...
616
620
  menu.theme.tooltips = Mostra suggerimenti
617
621
  menu.tools = Strumenti
@@ -753,6 +757,12 @@ settings.api_key = OpenAI API KEY
753
757
  settings.api_key.desc = Richiesto per l'API OpenAI. Se desideri utilizzare endpoint personalizzati o API locali, puoi inserire qui qualsiasi valore.
754
758
  settings.app.env = Ambiente dell'applicazione (os.environ)
755
759
  settings.app.env.desc = Variabili d'ambiente aggiuntive da impostare all'avvio dell'applicazione
760
+ settings.audio.input.channels = Canali
761
+ settings.audio.input.channels.desc = Canali di ingresso, predefinito: 1
762
+ settings.audio.input.device = Dispositivo di Ingresso Audio
763
+ settings.audio.input.device.desc = Seleziona il dispositivo audio per l'ingresso del microfono.
764
+ settings.audio.input.rate = Frequenza di campionamento
765
+ settings.audio.input.rate.desc = Frequenza di campionamento, predefinito: 44100
756
766
  settings.check_updates = Controlla aggiornamenti all'avvio
757
767
  settings.check_updates.bg = Controlla gli aggiornamenti in background
758
768
  settings.cmd.field.desc = Abilita lo strumento `{cmd}`.
@@ -857,6 +867,7 @@ settings.render.code_syntax = Stile di evidenziazione della sintassi del codice
857
867
  settings.restart.required = È necessario riavviare l'applicazione affinché le modifiche a questa opzione siano applicate.
858
868
  settings.section.access = Accessibilità
859
869
  settings.section.agent = Agenti ed esperti
870
+ settings.section.audio = Audio
860
871
  settings.section.ctx = Contesto
861
872
  settings.section.files = File e allegati
862
873
  settings.section.general = Generale
@@ -870,6 +881,7 @@ settings.store_history = Conserva la cronologia
870
881
  settings.store_history_time = Conserva l'orario nella cronologia
871
882
  settings.temperature = Temperatura
872
883
  settings.theme.markdown = Usa i colori del tema nella finestra della chat
884
+ settings.theme.style = Stile (chat)
873
885
  settings.top_p = Top-p
874
886
  settings.upload.data_dir = Memorizza immagini, catture e caricamenti nella directory dei dati
875
887
  settings.upload.data_dir.desc = Abilita per memorizzare tutto in una singola directory dei dati
@@ -49,6 +49,8 @@ action.tab.add.notepad = Dodaj nowy notatnik
49
49
  action.tab.close = Zamknij
50
50
  action.tab.close_all.chat = Zamknij wszystkie czaty
51
51
  action.tab.close_all.notepad = Zamknij wszystkie notatniki
52
+ action.tab.move.left = Przenieś do lewej kolumny
53
+ action.tab.move.right = Przenieś do prawej kolumny
52
54
  action.touch = Utwórz plik...
53
55
  action.truncate = Wyczyść wszystko
54
56
  action.undo = Cofnij
@@ -548,6 +550,7 @@ ipython.docker.build.finish = Sukces! Obraz Docker dla IPython został zbudowany
548
550
  ipython.docker.build.start = Budowanie obrazu Dockera... proszę czekać...
549
551
  ipython.docker.install = Uruchomienie IPython wymaga zainstalowania Dockera. Docker nie został wykryty na tym systemie. Proszę najpierw zainstalować Dockera; instrukcje można znaleźć tutaj: https://docs.docker.com/engine/install/. Wykonywanie bieżącego polecenia zostało wstrzymane.
550
552
  ipython.image.build = Obraz Dockera dla IPython nie został jeszcze zbudowany. Nastąpi to teraz i może to potrwać chwilę (ale to jednorazowa procedura). Wykonywanie polecenia zostało wstrzymane. Po zbudowaniu obrazu możesz ponownie poprosić o wykonanie polecenia.
553
+ layout.split = Podziel ekran
551
554
  menu.audio = Audio / Mowa
552
555
  menu.audio.cache.clear = Wyczyść pamięć podręczną audio...
553
556
  menu.audio.control.global = Kontrola głosowa (globalna)
@@ -612,6 +615,7 @@ menu.theme.dark = Ciemny kolor...
612
615
  menu.theme.density = Rozmiar układu
613
616
  menu.theme.light = Jasny kolor...
614
617
  menu.theme.settings = Ustawienia...
618
+ menu.theme.style = Styl...
615
619
  menu.theme.syntax = Podświetlanie składni kodu...
616
620
  menu.theme.tooltips = Pokaż podpowiedzi
617
621
  menu.tools = Narzędzia
@@ -753,6 +757,12 @@ settings.api_key = Klucz API OpenAI
753
757
  settings.api_key.desc = Wymagany dla API OpenAI. Jeśli chcesz używać niestandardowych punktów końcowych lub lokalnych API, możesz tutaj wprowadzić dowolną wartość.
754
758
  settings.app.env = Środowisko aplikacji (os.environ)
755
759
  settings.app.env.desc = Dodatkowe zmienne środowiskowe do ustawienia przy starcie aplikacji
760
+ settings.audio.input.channels = Kanały
761
+ settings.audio.input.channels.desc = Kanały wejściowe, domyślnie: 1
762
+ settings.audio.input.device = Urządzenie Wejściowe Audio
763
+ settings.audio.input.device.desc = Wybierz urządzenie audio dla wejścia mikrofonu.
764
+ settings.audio.input.rate = Częstotliwość próbkowania
765
+ settings.audio.input.rate.desc = Częstotliwość próbkowania, domyślnie: 44100
756
766
  settings.check_updates = Sprawdź aktualizacje przy starcie
757
767
  settings.check_updates.bg = Sprawdź aktualizacje w tle
758
768
  settings.cmd.field.desc = Włącz narzędzie `{cmd}`.
@@ -858,6 +868,7 @@ settings.render.plain = Wyłącz formatowanie markdown w wyjściu (tryb plain-te
858
868
  settings.restart.required = Restart aplikacji jest wymagany, aby zmiany dla tej opcji zostały wprowadzone.
859
869
  settings.section.access = Dostępność
860
870
  settings.section.agent = Agenci i eksperci
871
+ settings.section.audio = Audio
861
872
  settings.section.ctx = Kontekst
862
873
  settings.section.files = Pliki i załączniki
863
874
  settings.section.general = Ogólne
@@ -871,6 +882,7 @@ settings.store_history = Zapisuj historię
871
882
  settings.store_history_time = Zapisuj czas w historii
872
883
  settings.temperature = Temperatura
873
884
  settings.theme.markdown = Użyj motywu kolorystycznego w oknie czatu
885
+ settings.theme.style = Styl (czat)
874
886
  settings.top_p = Top-p
875
887
  settings.upload.data_dir = Przechowuj obrazy, zrzuty ekranu i przesyłane pliki w katalogu danych
876
888
  settings.upload.data_dir.desc = Włącz, aby przechowywać wszystko w jednym katalogu danych
@@ -49,6 +49,8 @@ action.tab.add.notepad = Додати новий блокнот
49
49
  action.tab.close = Закрити
50
50
  action.tab.close_all.chat = Закрити всі чати
51
51
  action.tab.close_all.notepad = Закрити всі блокноти
52
+ action.tab.move.left = Перемістити в ліву колонку
53
+ action.tab.move.right = Перемістити в праву колонку
52
54
  action.touch = Створити файл...
53
55
  action.truncate = Очистити все
54
56
  action.undo = Скасувати
@@ -547,6 +549,7 @@ ipython.docker.build.finish = Успіх! Образ Docker для IPython ст
547
549
  ipython.docker.build.start = Створення образу Docker... будь ласка, зачекайте...
548
550
  ipython.docker.install = Для запуску IPython необхідно встановити Docker. Docker не було виявлено на цій системі. Будь ласка, спочатку встановіть Docker; інструкції можна знайти тут: https://docs.docker.com/engine/install/. Виконання поточної команди було призупинено.
549
551
  ipython.image.build = Docker-образ для IPython ще не був створений. Це відбудеться зараз, і це може зайняти деякий час (але це одноразова процедура). Виконання команди було призупинено. Після створення образу, будь ласка, виконайте команду знову.
552
+ layout.split = Розділити екран
550
553
  menu.audio = Аудіо / Голос
551
554
  menu.audio.cache.clear = Очистити кеш аудіо...
552
555
  menu.audio.control.global = Контроль голосу (глобальний)
@@ -611,6 +614,7 @@ menu.theme.dark = Темний колір...
611
614
  menu.theme.density = Розмір компонування
612
615
  menu.theme.light = Світлий колір...
613
616
  menu.theme.settings = Налаштування...
617
+ menu.theme.style = Стиль...
614
618
  menu.theme.syntax = Підсвітка синтаксису коду...
615
619
  menu.theme.tooltips = Показувати підказки
616
620
  menu.tools = Інструменти
@@ -752,6 +756,12 @@ settings.api_key = OpenAI API КЛЮЧ
752
756
  settings.api_key.desc = Необхідний для API OpenAI. Якщо ви бажаєте використовувати налаштовані кінцеві точки або локальні API, тоді ви можете ввести будь-яке значення тут.
753
757
  settings.app.env = Оточення додатка (os.environ)
754
758
  settings.app.env.desc = Додаткові змінні середовища для встановлення при запуску додатка
759
+ settings.audio.input.channels = Канали
760
+ settings.audio.input.channels.desc = Вхідні канали, за замовчуванням: 1
761
+ settings.audio.input.device = Аудіо Вхідний Пристрій
762
+ settings.audio.input.device.desc = Виберіть аудіо пристрій для введення мікрофона.
763
+ settings.audio.input.rate = Частота дискретизації
764
+ settings.audio.input.rate.desc = Частота дискретизації, за замовчуванням: 44100
755
765
  settings.check_updates = Перевіряти оновлення при запуску
756
766
  settings.check_updates.bg = Перевіряти оновлення у фоновому режимі
757
767
  settings.cmd.field.desc = Увімкнути інструмент `{cmd}`.
@@ -857,6 +867,7 @@ settings.render.plain = Вимкнути форматування markdown у в
857
867
  settings.restart.required = Для внесення змін у цю опцію необхідно перезапустити програму.
858
868
  settings.section.access = Доступність
859
869
  settings.section.agent = Агенти та експерти
870
+ settings.section.audio = Аудіо
860
871
  settings.section.ctx = Контекст
861
872
  settings.section.files = Файли та вкладення
862
873
  settings.section.general = Загальні
@@ -870,6 +881,7 @@ settings.store_history = Зберігати історію
870
881
  settings.store_history_time = Зберігати час в історії
871
882
  settings.temperature = Температура
872
883
  settings.theme.markdown = Використовуйте кольори теми у вікні чату
884
+ settings.theme.style = Стиль (чат)
873
885
  settings.top_p = Top-p
874
886
  settings.upload.data_dir = Зберігайте зображення, знімки екрану та завантаження у директорії даних
875
887
  settings.upload.data_dir.desc = Увімкніть, щоб зберігати все в одній директорії даних
@@ -50,6 +50,8 @@ action.tab.add.notepad = 添加新记事本
50
50
  action.tab.close = 关闭
51
51
  action.tab.close_all.chat = 关闭所有聊天
52
52
  action.tab.close_all.notepad = 关闭所有记事本
53
+ action.tab.move.left = 移到左列
54
+ action.tab.move.right = 移到右列
53
55
  action.touch = 創建文件...
54
56
  action.truncate = 截斷
55
57
  action.undo = 撤銷
@@ -621,6 +623,7 @@ ipython.docker.build.finish = 成功!IPython 的 Docker 镜像已构建完成
621
623
  ipython.docker.build.start = 正在构建 Docker 镜像... 请稍候...
622
624
  ipython.docker.install = 运行 IPython 需要安装 Docker。系统上未检测到 Docker。请先安装 Docker;您可以在此处找到说明:https://docs.docker.com/engine/install/。当前命令的执行已暂停。
623
625
  ipython.image.build = IPython 的 Docker 镜像尚未构建。这将立即发生,可能需要一段时间(但这是一次性过程)。命令的执行已暂停。镜像构建完成后,请再次执行命令。
626
+ layout.split = 分屏
624
627
  menu.audio = 音頻/語音
625
628
  menu.audio.cache.clear = 清除音频缓存...
626
629
  menu.audio.control.global = 语音控制(全局)
@@ -687,6 +690,7 @@ menu.theme.dark = 深色主題...
687
690
  menu.theme.density = 布局大小
688
691
  menu.theme.light = 淺色主題...
689
692
  menu.theme.settings = 設置...
693
+ menu.theme.style = 风格...
690
694
  menu.theme.syntax = 代码语法高亮显示...
691
695
  menu.theme.tooltips = 顯示工具提示
692
696
  menu.tools = 工具
@@ -854,6 +858,12 @@ settings.api_key = OpenAI API KEY
854
858
  settings.api_key.desc = OpenAI API所需。如果您希望使用自定义终端或本地API,则可以在此输入任意值。
855
859
  settings.app.env = 应用程序环境 (os.environ)
856
860
  settings.app.env.desc = 在应用程序启动时要设置的额外环境变量
861
+ settings.audio.input.channels = 声道
862
+ settings.audio.input.channels.desc = 输入声道,默认: 1
863
+ settings.audio.input.device = 音频输入设备
864
+ settings.audio.input.device.desc = 选择用于麦克风输入的音频设备。
865
+ settings.audio.input.rate = 采样率
866
+ settings.audio.input.rate.desc = 采样率,默认: 44100
857
867
  settings.check_updates = 啟動時檢查更新
858
868
  settings.check_updates.bg = 在後台檢查更新
859
869
  settings.cmd.field.desc = 启用 `{cmd}` 工具。
@@ -967,6 +977,7 @@ settings.render.plain = 在輸出中禁用markdown格式化(RAW純文本模式
967
977
  settings.restart.required = 此選項生效需要重新啟動應用程序。
968
978
  settings.section.access = 可访问性
969
979
  settings.section.agent = 代理和专家
980
+ settings.section.audio = 音频
970
981
  settings.section.ctx = 上下文
971
982
  settings.section.developer = 開發者
972
983
  settings.section.files = 文件和附件
@@ -986,6 +997,7 @@ settings.store_history = 存儲歷史記錄
986
997
  settings.store_history_time = 在歷史記錄中存儲時間
987
998
  settings.temperature = 溫度
988
999
  settings.theme.markdown = 在聊天窗口中使用主題顏色
1000
+ settings.theme.style = 风格 (聊天)
989
1001
  settings.top_p = Top-p
990
1002
  settings.upload.data_dir = 在data目錄中存儲圖像、捕獲和上傳
991
1003
  settings.upload.data_dir.desc= 啟用以在單個data目錄中存儲所有內容
@@ -50,6 +50,8 @@ prompt_summarize_url.description = Prompt, der für die Zusammenfassung einer be
50
50
  prompt_summarize_url.label = Zusammenfassungs-Prompt (URL öffnen)
51
51
  provider.description = Wählen Sie den Suchmaschinenanbieter, standardmäßig: Google.
52
52
  provider.label = Anbieter
53
+ raw.label = Verwenden Sie Rohinhalte (ohne Zusammenfassung)
54
+ raw.description = Ungefilterte Inhalte aus der Websuche zurückgeben, anstatt zusammengefasste Inhalte
53
55
  summary_max_tokens.description = Maximale Tokenanzahl in der Ausgabe beim Generieren einer Zusammenfassung.
54
56
  summary_max_tokens.label = Max. Zusammenfassungs-Tokens
55
57
  summary_model.description = Modell, das für die Zusammenfassung von Webseiten verwendet wird, standardmäßig: gpt-3.5-turbo-1106.
@@ -7,22 +7,26 @@ bing_endpoint.description = API endpoint for the Bing Search API, default: https
7
7
  bing_endpoint.label = Bing Search API endpoint
8
8
  chunk_size.description = Per-page content chunk size (maximum characters per chunk).
9
9
  chunk_size.label = Per-page content chunk size
10
+ cmd.web_extract_links.label = Enable: extract_links from webpage
11
+ cmd.web_extract_links.description = If enabled, model will be able to open URL and get list of all links from it.
12
+ cmd.web_extract_images.label = Enable: extract_images from webpage
13
+ cmd.web_extract_images.description = If enabled, model will be able to open URL and get list of all images from it.
10
14
  cmd.web_index.description = Enable `web_index` command execution.\nIf enabled, the model will be able to index pages and external content using LlamaIndex (persistent index).
11
15
  cmd.web_index.label = Enable: indexing web and external content
12
16
  cmd.web_index_query.description = Enable `web_index_query` command execution.\nIf enabled, the model will be able to quickly index and query web content using LlamaIndex (in-memory index).
13
- cmd.web_index_query.label = Enable: quick query the web and external content
14
- cmd.web_index_query.tooltip = Example prompt: Query the website http://example.com about (question).
15
- cmd.web_index.tooltip = Example prompt: Index the website http://example.com.
16
- cmd.web_search.description = Enable `web_search` command execution.\nIf enabled, the model will be able to search the web.
17
- cmd.web_search.label = Enable: search the web
18
- cmd.web_search.tooltip = Example prompt: Search the web for (question).
17
+ cmd.web_index_query.label = Enable: quick query the Web and external content
18
+ cmd.web_index_query.tooltip = Example prompt: Query the Website http://example.com about (question).
19
+ cmd.web_index.tooltip = Example prompt: Index the Website http://example.com.
20
+ cmd.web_search.description = Enable `web_search` command execution.\nIf enabled, the model will be able to search the Web.
21
+ cmd.web_search.label = Enable: search the Web
22
+ cmd.web_search.tooltip = Example prompt: Search the Web for (question).
19
23
  cmd.web_url_open.description = Enable `web_url_open` command execution.\nIf enabled, the model will be able to open a specified URL and summarize the content.
20
24
  cmd.web_url_open.label = Enable: opening URLs
21
- cmd.web_url_open.tooltip = Example prompt: Read the website http://example.com.
25
+ cmd.web_url_open.tooltip = Example prompt: Read the Website http://example.com.
22
26
  cmd.web_url_raw.description = Enable `web_url_raw` command execution.\nIf enabled, the model will be able to open a specified URL and get the raw content.
23
27
  cmd.web_url_raw.label = Enable: reading the raw content from URLs
24
28
  cmd.web_url_raw.tooltip = Example prompt: Give me the raw content of http://example.com.
25
- cmd.web_urls.description = Enable `web_urls` command execution.\nIf enabled, the model will be able to search the web and get a list of found URLs.
29
+ cmd.web_urls.description = Enable `web_urls` command execution.\nIf enabled, the model will be able to search the Web and get a list of found URLs.
26
30
  cmd.web_urls.label = Enable: getting a list of URLs from search results
27
31
  cmd.web_urls.tooltip = Example prompt: Give me the list of URLs for query (question).
28
32
  disable_ssl.description = Disables SSL verification when crawling web pages.
@@ -33,16 +37,20 @@ google_api_key.description = You can obtain your own API key at https://develope
33
37
  google_api_key.label = Google Custom Search API KEY
34
38
  idx.description = ID of the index to use for web page indexing (persistent index).
35
39
  idx.label = Index to use
40
+ img_thumbnail.description = Enable fetching thumbnails from opened websites.
41
+ img_thumbnail.label = Show thumbnail images
42
+ max_open_urls.label = Number of max URLs to open at once
43
+ max_open_urls.description = Number of max URLs to open at once
36
44
  max_page_content_length.description = Maximum characters of page content to retrieve (0 = unlimited).
37
45
  max_page_content_length.label = Max content characters
38
- max_result_length.description = Maximum length of the summarized result (characters).
46
+ max_result_length.description = Maximum length of the summarized or raw result (characters). (0 = unlimited).
39
47
  max_result_length.label = Max result length
40
48
  model_tmp_query.description = Model used to query the temporary index for the `web_index_query` command (in-memory index).
41
49
  model_tmp_query.label = Model for querying in-memory index
42
50
  model_tmp_query.tooltip = Model used to query the temporary index for the `web_index_query` command (in-memory index)
43
51
  num_pages.description = Maximum number of pages to search per query.
44
52
  num_pages.label = Number of pages to search
45
- plugin.description = Provides the ability to connect to the web, search web pages for current data, and index external content using LlamaIndex data loaders.
53
+ plugin.description = Provides the ability to connect to the Web, search web pages for current data, and index external content using LlamaIndex data loaders.
46
54
  plugin.name = Web Search
47
55
  prompt_summarize.description = Prompt used for summarizing web search results, use {query} as a placeholder for the search query.
48
56
  prompt_summarize.label = Summarize prompt
@@ -50,6 +58,8 @@ prompt_summarize_url.description = Prompt used for summarizing a specified URL p
50
58
  prompt_summarize_url.label = Summarize prompt (URL open)
51
59
  provider.description = Select the search engine provider, default: Google.
52
60
  provider.label = Provider
61
+ raw.label = Use raw content (without summarization)
62
+ raw.description = Return raw content from web search instead of summarized content
53
63
  summary_max_tokens.description = Maximum tokens in output when generating a summary.
54
64
  summary_max_tokens.label = Max summary tokens
55
65
  summary_model.description = Model used for summarizing web pages, default: gpt-3.5-turbo-1106.
@@ -50,6 +50,8 @@ prompt_summarize_url.description = Prompt utilizado para resumir una página URL
50
50
  prompt_summarize_url.label = Prompt de resumen (apertura de URL)
51
51
  provider.description = Seleccione el proveedor del motor de búsqueda, por defecto: Google.
52
52
  provider.label = Proveedor
53
+ raw.label = Usar contenido bruto (sin resumir)
54
+ raw.description = Devolver contenido bruto de la búsqueda en la web en lugar de contenido resumido
53
55
  summary_max_tokens.description = Número máximo de tokens en la salida al generar un resumen.
54
56
  summary_max_tokens.label = Máx tokens de resumen
55
57
  summary_model.description = Modelo utilizado para resumir páginas web, por defecto: gpt-3.5-turbo-1106.
@@ -50,6 +50,8 @@ prompt_summarize_url.description = Prompt utilisé pour résumer une page URL sp
50
50
  prompt_summarize_url.label = Prompt de résumé (ouverture d'URL)
51
51
  provider.description = Sélectionnez le fournisseur du moteur de recherche, par défaut : Google.
52
52
  provider.label = Fournisseur
53
+ raw.label = Utiliser le contenu brut (sans résumé)
54
+ raw.description = Retourner le contenu brut de la recherche sur le web au lieu du contenu résumé
53
55
  summary_max_tokens.description = Nombre maximal de tokens dans la sortie lors de la génération d'un résumé.
54
56
  summary_max_tokens.label = Max tokens de résumé
55
57
  summary_model.description = Modèle utilisé pour résumer les pages web, par défaut : gpt-3.5-turbo-1106.
@@ -50,6 +50,8 @@ prompt_summarize_url.description = Prompt utilizzato per riassumere una pagina U
50
50
  prompt_summarize_url.label = Prompt di riassunto (apertura URL)
51
51
  provider.description = Seleziona il provider del motore di ricerca, predefinito: Google.
52
52
  provider.label = Provider
53
+ raw.label = Usa contenuto grezzo (senza riassunto)
54
+ raw.description = Restituisci contenuto grezzo dalla ricerca sul web invece di contenuti riassunti
53
55
  summary_max_tokens.description = Numero massimo di token nell'output durante la generazione di un riassunto.
54
56
  summary_max_tokens.label = Max token di riassunto
55
57
  summary_model.description = Modello utilizzato per riassumere le pagine web, predefinito: gpt-3.5-turbo-1106.
@@ -50,6 +50,8 @@ prompt_summarize_url.description = Prompt używany do podsumowywania określonej
50
50
  prompt_summarize_url.label = Prompt podsumowujący (otwarte URL)
51
51
  provider.description = Wybierz dostawcę wyszukiwarki, domyślnie: Google.
52
52
  provider.label = Dostawca
53
+ raw.label = Użyj surowej zawartości (bez podsumowania)
54
+ raw.description = Zwróć surową zawartość z wyszukiwania w sieci zamiast podsumowanej zawartości
53
55
  summary_max_tokens.description = Maksymalna liczba tokenów w wyniku przy generowaniu podsumowania.
54
56
  summary_max_tokens.label = Maksymalna liczba tokenów podsumowania
55
57
  summary_model.description = Model używany do podsumowywania stron internetowych, domyślnie: gpt-3.5-turbo-1106.
@@ -50,6 +50,8 @@ prompt_summarize_url.description = Шаблон для підсумування
50
50
  prompt_summarize_url.label = Шаблон підсумування (відкриття URL)
51
51
  provider.description = Виберіть провайдера пошукової системи, за замовчуванням: Google.
52
52
  provider.label = Провайдер
53
+ raw.label = Використовувати сирий контент (без узагальнення)
54
+ raw.description = Повернути сирий контент з пошуку в Інтернеті замість узагальненого контенту
53
55
  summary_max_tokens.description = Максимальна кількість токенів у виводі при створенні підсумку.
54
56
  summary_max_tokens.label = Макс. токенів підсумування
55
57
  summary_model.description = Модель, яка використовується для підсумування вебсторінок, за замовчуванням: gpt-3.5-turbo-1106.
@@ -50,6 +50,8 @@ prompt_summarize_url.description = 用于总结指定URL页面的提示。
50
50
  prompt_summarize_url.label = 总结URL页面的提示
51
51
  provider.description = 选择搜索引擎提供者,默认为Google。
52
52
  provider.label = 提供者
53
+ raw.label = 使用原始内容(不进行总结)
54
+ raw.description = 返回来自网络搜索的原始内容,而不是总结的内容
53
55
  summary_max_tokens.description = 在生成总结时输出的最大代币数。
54
56
  summary_max_tokens.label = 总结的最大代币数
55
57
  summary_model.description = 用于总结网页的模型,默认为:gpt-3.5-turbo-1106。
pygpt_net/icons.qrc CHANGED
@@ -107,6 +107,7 @@
107
107
  <file alias="share.svg">/home/marcin/Dev/py-gpt/bin/../src/pygpt_net/data/icons/share.svg</file>
108
108
  <file alias="shedule.svg">/home/marcin/Dev/py-gpt/bin/../src/pygpt_net/data/icons/shedule.svg</file>
109
109
  <file alias="sort.svg">/home/marcin/Dev/py-gpt/bin/../src/pygpt_net/data/icons/sort.svg</file>
110
+ <file alias="split_screen.svg">/home/marcin/Dev/py-gpt/bin/../src/pygpt_net/data/icons/split_screen.svg</file>
110
111
  <file alias="stack.svg">/home/marcin/Dev/py-gpt/bin/../src/pygpt_net/data/icons/stack.svg</file>
111
112
  <file alias="stacks.svg">/home/marcin/Dev/py-gpt/bin/../src/pygpt_net/data/icons/stacks.svg</file>
112
113
  <file alias="star.svg">/home/marcin/Dev/py-gpt/bin/../src/pygpt_net/data/icons/star.svg</file>