pygpt-net 2.4.39__py3-none-any.whl → 2.4.40__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 (85) hide show
  1. CHANGELOG.md +13 -0
  2. README.md +19 -2
  3. pygpt_net/CHANGELOG.txt +13 -0
  4. pygpt_net/__init__.py +3 -3
  5. pygpt_net/controller/__init__.py +5 -3
  6. pygpt_net/controller/audio/__init__.py +9 -1
  7. pygpt_net/controller/chat/input.py +2 -1
  8. pygpt_net/controller/chat/render.py +2 -2
  9. pygpt_net/controller/ctx/__init__.py +2 -2
  10. pygpt_net/controller/debug/__init__.py +13 -2
  11. pygpt_net/controller/kernel/__init__.py +2 -1
  12. pygpt_net/controller/notepad.py +7 -6
  13. pygpt_net/controller/theme/nodes.py +2 -5
  14. pygpt_net/controller/tools/__init__.py +37 -1
  15. pygpt_net/controller/ui/__init__.py +1 -5
  16. pygpt_net/controller/ui/tabs.py +104 -12
  17. pygpt_net/core/command.py +3 -1
  18. pygpt_net/core/ctx/__init__.py +6 -2
  19. pygpt_net/core/ctx/container.py +5 -5
  20. pygpt_net/core/debug/tabs.py +3 -1
  21. pygpt_net/core/render/base.py +2 -2
  22. pygpt_net/core/render/web/body.py +1 -1
  23. pygpt_net/core/render/web/renderer.py +208 -38
  24. pygpt_net/core/tabs/__init__.py +104 -43
  25. pygpt_net/core/tabs/tab.py +4 -1
  26. pygpt_net/core/web.py +127 -1
  27. pygpt_net/data/config/config.json +4 -3
  28. pygpt_net/data/config/models.json +3 -3
  29. pygpt_net/data/config/modes.json +3 -3
  30. pygpt_net/data/css/web-blocks.css +18 -0
  31. pygpt_net/data/css/web-blocks.light.css +7 -0
  32. pygpt_net/data/css/web-chatgpt.css +8 -0
  33. pygpt_net/data/css/web-chatgpt_wide.css +8 -0
  34. pygpt_net/data/icons/split_screen.svg +1 -0
  35. pygpt_net/data/locale/locale.de.ini +1 -1
  36. pygpt_net/data/locale/locale.en.ini +4 -2
  37. pygpt_net/data/locale/locale.es.ini +1 -1
  38. pygpt_net/data/locale/locale.fr.ini +1 -1
  39. pygpt_net/data/locale/locale.it.ini +1 -1
  40. pygpt_net/data/locale/locale.pl.ini +2 -2
  41. pygpt_net/data/locale/locale.uk.ini +1 -1
  42. pygpt_net/data/locale/locale.zh.ini +1 -1
  43. pygpt_net/data/locale/plugin.cmd_web.de.ini +2 -0
  44. pygpt_net/data/locale/plugin.cmd_web.en.ini +20 -10
  45. pygpt_net/data/locale/plugin.cmd_web.es.ini +2 -0
  46. pygpt_net/data/locale/plugin.cmd_web.fr.ini +2 -0
  47. pygpt_net/data/locale/plugin.cmd_web.it.ini +2 -0
  48. pygpt_net/data/locale/plugin.cmd_web.pl.ini +2 -0
  49. pygpt_net/data/locale/plugin.cmd_web.uk.ini +2 -0
  50. pygpt_net/data/locale/plugin.cmd_web.zh.ini +2 -0
  51. pygpt_net/icons.qrc +1 -0
  52. pygpt_net/icons_rc.py +165 -136
  53. pygpt_net/item/ctx.py +46 -24
  54. pygpt_net/plugin/audio_output/__init__.py +4 -1
  55. pygpt_net/plugin/base/plugin.py +18 -4
  56. pygpt_net/plugin/cmd_code_interpreter/__init__.py +39 -37
  57. pygpt_net/plugin/cmd_code_interpreter/runner.py +25 -12
  58. pygpt_net/plugin/cmd_web/__init__.py +46 -6
  59. pygpt_net/plugin/cmd_web/config.py +74 -48
  60. pygpt_net/plugin/cmd_web/websearch.py +61 -28
  61. pygpt_net/plugin/cmd_web/worker.py +79 -13
  62. pygpt_net/provider/core/config/patch.py +22 -1
  63. pygpt_net/tools/__init__.py +9 -1
  64. pygpt_net/tools/base.py +15 -1
  65. pygpt_net/tools/code_interpreter/__init__.py +174 -75
  66. pygpt_net/tools/code_interpreter/ui/dialogs.py +21 -103
  67. pygpt_net/tools/code_interpreter/ui/widgets.py +284 -9
  68. pygpt_net/tools/html_canvas/__init__.py +78 -23
  69. pygpt_net/tools/html_canvas/ui/dialogs.py +46 -62
  70. pygpt_net/tools/html_canvas/ui/widgets.py +96 -3
  71. pygpt_net/ui/base/context_menu.py +2 -2
  72. pygpt_net/ui/layout/ctx/ctx_list.py +13 -4
  73. pygpt_net/ui/layout/toolbox/footer.py +1 -1
  74. pygpt_net/ui/main.py +2 -2
  75. pygpt_net/ui/menu/debug.py +11 -1
  76. pygpt_net/ui/widget/filesystem/explorer.py +2 -2
  77. pygpt_net/ui/widget/lists/context.py +26 -5
  78. pygpt_net/ui/widget/tabs/Input.py +2 -2
  79. pygpt_net/ui/widget/tabs/body.py +2 -1
  80. pygpt_net/ui/widget/tabs/output.py +126 -61
  81. {pygpt_net-2.4.39.dist-info → pygpt_net-2.4.40.dist-info}/METADATA +20 -3
  82. {pygpt_net-2.4.39.dist-info → pygpt_net-2.4.40.dist-info}/RECORD +85 -84
  83. {pygpt_net-2.4.39.dist-info → pygpt_net-2.4.40.dist-info}/LICENSE +0 -0
  84. {pygpt_net-2.4.39.dist-info → pygpt_net-2.4.40.dist-info}/WHEEL +0 -0
  85. {pygpt_net-2.4.39.dist-info → pygpt_net-2.4.40.dist-info}/entry_points.txt +0 -0
@@ -550,7 +550,7 @@ ipython.docker.build.finish = Erfolg! Das Docker-Image für IPython wurde erstel
550
550
  ipython.docker.build.start = Docker-Image wird erstellt... bitte warten...
551
551
  ipython.docker.install = Für die Ausführung von IPython muss Docker installiert sein. Docker wurde auf diesem System nicht erkannt. Bitte installieren Sie zuerst Docker; die Anweisungen finden Sie hier: https://docs.docker.com/engine/install/. Die Ausführung des aktuellen Befehls wurde pausiert.
552
552
  ipython.image.build = Das Docker-Image für IPython wurde noch nicht erstellt. Dies wird jetzt geschehen und es kann eine Weile dauern (aber es ist ein einmaliger Vorgang). Die Ausführung des Befehls wurde pausiert. Sobald das Image erstellt ist, führen Sie den Befehl bitte erneut aus.
553
- layout.split = Bildschirm teilen (Beta)
553
+ layout.split = Bildschirm teilen
554
554
  menu.audio = Audio / Stimme
555
555
  menu.audio.cache.clear = Audio-Cache löschen...
556
556
  menu.audio.control.global = Sprachsteuerung (global)
@@ -51,6 +51,7 @@ action.save_selection_as = Save selection as...
51
51
  action.select_all = Select all
52
52
  action.tab.add.chat = Add a new chat
53
53
  action.tab.add.notepad = Add a new notepad
54
+ action.tab.add.tool = Add a new tool
54
55
  action.tab.close = Close
55
56
  action.tab.close_all.chat = Close all chats
56
57
  action.tab.close_all.notepad = Close all notepads
@@ -663,7 +664,7 @@ interpreter.clear.confirm = Clear the current window?
663
664
  interpreter.edit = Edit mode
664
665
  interpreter.edit_label.edit = Code (history)
665
666
  interpreter.edit_label.output = Output
666
- interpreter.input.placeholder = Python code to execute...
667
+ interpreter.input.placeholder = Python code to execute...\n\n/restart - restart kernel\n/clear - clear output
667
668
  interpreter.menu.file = File
668
669
  interpreter.menu.file.clear_all = Clear all
669
670
  interpreter.menu.file.clear_history = Clear history
@@ -675,7 +676,7 @@ ipython.docker.build.start = Building Docker image... please wait...
675
676
  ipython.docker.install = Running IPython requires Docker to be installed. Docker was not detected on this system. Please install Docker first; you can find the instructions here: https://docs.docker.com/engine/install/. The execution of the current command has been paused.
676
677
  ipython.docker.install.snap = \n\nSNAP VERSION: \nYou are not connected to built-in Docker daemon. Please connect the slots with:\n\nsudo snap connect pygpt:docker-executables docker:docker-executables\n\nsudo snap connect pygpt:docker docker:docker-daemon\n\n...and restart the application.
677
678
  ipython.image.build = The Docker image for IPython has not been built yet. This will happen now, and it may take a while (but it's a one-time procedure). The execution of the command has been paused. Once the image is built, please execute the command again.
678
- layout.split = Split screen (beta)
679
+ layout.split = Split screen
679
680
  menu.audio = Audio / Voice
680
681
  menu.audio.cache.clear = Clear audio cache...
681
682
  menu.audio.control.global = Voice control (global)
@@ -712,6 +713,7 @@ menu.debug.logger = Open Logger
712
713
  menu.debug.models = Models...
713
714
  menu.debug.plugins = Plugins...
714
715
  menu.debug.presets = Presets...
716
+ menu.debug.render = Render...
715
717
  menu.debug.tabs = Tabs...
716
718
  menu.debug.ui = UI...
717
719
  menu.file = File
@@ -549,7 +549,7 @@ ipython.docker.build.finish = ¡Éxito! La imagen de Docker para IPython ha sido
549
549
  ipython.docker.build.start = Construyendo imagen de Docker... por favor espera...
550
550
  ipython.docker.install = Ejecutar IPython requiere que Docker esté instalado. Docker no fue detectado en este sistema. Por favor, instale Docker primero; puede encontrar las instrucciones aquí: https://docs.docker.com/engine/install/. La ejecución del comando actual ha sido pausada.
551
551
  ipython.image.build = La imagen de Docker para IPython aún no ha sido construida. Esto sucederá ahora, y puede tardar un tiempo (pero es un procedimiento único). La ejecución del comando ha sido pausada. Una vez que la imagen esté construida, por favor ejecute el comando nuevamente.
552
- layout.split = Pantalla dividida (beta)
552
+ layout.split = Pantalla dividida
553
553
  menu.audio = Audio / Voz
554
554
  menu.audio.cache.clear = Limpiar caché de audio...
555
555
  menu.audio.control.global = Control de voz (global)
@@ -550,7 +550,7 @@ ipython.docker.build.finish = Succès! L'image Docker pour IPython a été const
550
550
  ipython.docker.build.start = Construction de l'image Docker... veuillez patienter...
551
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.
552
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é (bêta)
553
+ layout.split = Écran scindé
554
554
  menu.audio = Audio / Voix
555
555
  menu.audio.cache.clear = Effacer le cache audio...
556
556
  menu.audio.control.global = Contrôle vocal (global)
@@ -550,7 +550,7 @@ ipython.docker.build.finish = Successo! L'immagine Docker per IPython è stata c
550
550
  ipython.docker.build.start = Creazione dell'immagine Docker... per favore aspetta...
551
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.
552
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 (beta)
553
+ layout.split = Schermo diviso
554
554
  menu.audio = Audio / Voce
555
555
  menu.audio.cache.clear = Cancella cache audio...
556
556
  menu.audio.control.global = Controllo vocale (globale)
@@ -50,7 +50,7 @@ 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
52
  action.tab.move.left = Przenieś do lewej kolumny
53
- action.tab.move.right = Przenieś do prawej kolumny
53
+ action.tab.move.right = Przenieś do prawej kolumny
54
54
  action.touch = Utwórz plik...
55
55
  action.truncate = Wyczyść wszystko
56
56
  action.undo = Cofnij
@@ -550,7 +550,7 @@ ipython.docker.build.finish = Sukces! Obraz Docker dla IPython został zbudowany
550
550
  ipython.docker.build.start = Budowanie obrazu Dockera... proszę czekać...
551
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.
552
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 (beta)
553
+ layout.split = Podziel ekran
554
554
  menu.audio = Audio / Mowa
555
555
  menu.audio.cache.clear = Wyczyść pamięć podręczną audio...
556
556
  menu.audio.control.global = Kontrola głosowa (globalna)
@@ -549,7 +549,7 @@ ipython.docker.build.finish = Успіх! Образ Docker для IPython ст
549
549
  ipython.docker.build.start = Створення образу Docker... будь ласка, зачекайте...
550
550
  ipython.docker.install = Для запуску IPython необхідно встановити Docker. Docker не було виявлено на цій системі. Будь ласка, спочатку встановіть Docker; інструкції можна знайти тут: https://docs.docker.com/engine/install/. Виконання поточної команди було призупинено.
551
551
  ipython.image.build = Docker-образ для IPython ще не був створений. Це відбудеться зараз, і це може зайняти деякий час (але це одноразова процедура). Виконання команди було призупинено. Після створення образу, будь ласка, виконайте команду знову.
552
- layout.split = Розділити екран (бета)
552
+ layout.split = Розділити екран
553
553
  menu.audio = Аудіо / Голос
554
554
  menu.audio.cache.clear = Очистити кеш аудіо...
555
555
  menu.audio.control.global = Контроль голосу (глобальний)
@@ -623,7 +623,7 @@ ipython.docker.build.finish = 成功!IPython 的 Docker 镜像已构建完成
623
623
  ipython.docker.build.start = 正在构建 Docker 镜像... 请稍候...
624
624
  ipython.docker.install = 运行 IPython 需要安装 Docker。系统上未检测到 Docker。请先安装 Docker;您可以在此处找到说明:https://docs.docker.com/engine/install/。当前命令的执行已暂停。
625
625
  ipython.image.build = IPython 的 Docker 镜像尚未构建。这将立即发生,可能需要一段时间(但这是一次性过程)。命令的执行已暂停。镜像构建完成后,请再次执行命令。
626
- layout.split = 分屏 (测试版)
626
+ layout.split = 分屏
627
627
  menu.audio = 音頻/語音
628
628
  menu.audio.cache.clear = 清除音频缓存...
629
629
  menu.audio.control.global = 语音控制(全局)
@@ -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>