pygpt-net 2.6.45__py3-none-any.whl → 2.6.46__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 (71) hide show
  1. pygpt_net/CHANGELOG.txt +7 -0
  2. pygpt_net/__init__.py +3 -3
  3. pygpt_net/app.py +0 -5
  4. pygpt_net/controller/debug/debug.py +11 -9
  5. pygpt_net/controller/dialogs/debug.py +40 -29
  6. pygpt_net/core/debug/agent.py +19 -14
  7. pygpt_net/core/debug/assistants.py +22 -24
  8. pygpt_net/core/debug/attachments.py +11 -7
  9. pygpt_net/core/debug/config.py +22 -23
  10. pygpt_net/core/debug/context.py +63 -63
  11. pygpt_net/core/debug/db.py +1 -4
  12. pygpt_net/core/debug/events.py +14 -11
  13. pygpt_net/core/debug/indexes.py +41 -76
  14. pygpt_net/core/debug/kernel.py +11 -8
  15. pygpt_net/core/debug/models.py +20 -15
  16. pygpt_net/core/debug/plugins.py +9 -6
  17. pygpt_net/core/debug/presets.py +16 -11
  18. pygpt_net/core/debug/tabs.py +28 -22
  19. pygpt_net/core/debug/ui.py +25 -22
  20. pygpt_net/core/render/web/renderer.py +3 -2
  21. pygpt_net/core/tabs/tab.py +14 -1
  22. pygpt_net/data/config/config.json +3 -3
  23. pygpt_net/data/config/models.json +3 -3
  24. pygpt_net/data/config/settings.json +15 -17
  25. pygpt_net/data/css/style.dark.css +6 -0
  26. pygpt_net/data/css/web-blocks.css +4 -0
  27. pygpt_net/data/css/web-blocks.light.css +1 -1
  28. pygpt_net/data/css/web-chatgpt.css +4 -0
  29. pygpt_net/data/css/web-chatgpt.light.css +1 -1
  30. pygpt_net/data/css/web-chatgpt_wide.css +4 -0
  31. pygpt_net/data/css/web-chatgpt_wide.light.css +1 -1
  32. pygpt_net/data/js/app.js +720 -636
  33. pygpt_net/data/locale/locale.de.ini +1 -1
  34. pygpt_net/data/locale/locale.en.ini +1 -1
  35. pygpt_net/data/locale/locale.es.ini +1 -1
  36. pygpt_net/data/locale/locale.fr.ini +1 -1
  37. pygpt_net/data/locale/locale.it.ini +1 -1
  38. pygpt_net/data/locale/locale.pl.ini +2 -2
  39. pygpt_net/data/locale/locale.uk.ini +1 -1
  40. pygpt_net/data/locale/locale.zh.ini +1 -1
  41. pygpt_net/item/model.py +4 -1
  42. pygpt_net/js_rc.py +12824 -12612
  43. pygpt_net/provider/api/anthropic/__init__.py +3 -1
  44. pygpt_net/provider/api/anthropic/tools.py +1 -1
  45. pygpt_net/provider/api/google/__init__.py +7 -1
  46. pygpt_net/provider/api/x_ai/__init__.py +5 -1
  47. pygpt_net/provider/core/config/patch.py +14 -1
  48. pygpt_net/provider/llms/anthropic.py +37 -5
  49. pygpt_net/provider/llms/azure_openai.py +3 -1
  50. pygpt_net/provider/llms/base.py +13 -1
  51. pygpt_net/provider/llms/deepseek_api.py +13 -3
  52. pygpt_net/provider/llms/google.py +14 -1
  53. pygpt_net/provider/llms/hugging_face_api.py +105 -24
  54. pygpt_net/provider/llms/hugging_face_embedding.py +88 -0
  55. pygpt_net/provider/llms/hugging_face_router.py +28 -16
  56. pygpt_net/provider/llms/local.py +2 -0
  57. pygpt_net/provider/llms/mistral.py +60 -3
  58. pygpt_net/provider/llms/open_router.py +4 -2
  59. pygpt_net/provider/llms/openai.py +4 -1
  60. pygpt_net/provider/llms/perplexity.py +66 -5
  61. pygpt_net/provider/llms/utils.py +39 -0
  62. pygpt_net/provider/llms/voyage.py +50 -0
  63. pygpt_net/provider/llms/x_ai.py +70 -10
  64. pygpt_net/ui/widget/lists/db.py +1 -0
  65. pygpt_net/ui/widget/lists/debug.py +1 -0
  66. pygpt_net/ui/widget/tabs/body.py +12 -1
  67. {pygpt_net-2.6.45.dist-info → pygpt_net-2.6.46.dist-info}/METADATA +11 -4
  68. {pygpt_net-2.6.45.dist-info → pygpt_net-2.6.46.dist-info}/RECORD +71 -68
  69. {pygpt_net-2.6.45.dist-info → pygpt_net-2.6.46.dist-info}/LICENSE +0 -0
  70. {pygpt_net-2.6.45.dist-info → pygpt_net-2.6.46.dist-info}/WHEEL +0 -0
  71. {pygpt_net-2.6.45.dist-info → pygpt_net-2.6.46.dist-info}/entry_points.txt +0 -0
@@ -445,4 +445,8 @@ li div:first-child {{
445
445
  .code-wrapper pre code {{
446
446
  max-height: 1000px;
447
447
  overflow-y: auto;
448
+ }}
449
+
450
+ #_append_output_ .msg-bot {{
451
+ margin-top: 0px !important;
448
452
  }}
@@ -93,5 +93,5 @@ code {{
93
93
  color: #6e6e6e;
94
94
  }}
95
95
  .msg-box .name-header.name-bot {{
96
- color: #a3a3a3;
96
+ color: #7a787c;
97
97
  }}
@@ -476,4 +476,8 @@ li div:first-child {{
476
476
  .code-wrapper pre code {{
477
477
  max-height: 1000px;
478
478
  overflow-y: auto;
479
+ }}
480
+
481
+ #_append_output_ .msg-bot {{
482
+ margin-top: 0px !important;
479
483
  }}
@@ -96,5 +96,5 @@ code {{
96
96
  color: #6e6e6e;
97
97
  }}
98
98
  .msg-box .name-header.name-bot {{
99
- color: #a3a3a3;
99
+ color: #7a787c;
100
100
  }}
@@ -472,4 +472,8 @@ li div:first-child {{
472
472
  .code-wrapper pre code {{
473
473
  max-height: 1000px;
474
474
  overflow-y: auto;
475
+ }}
476
+
477
+ #_append_output_ .msg-bot {{
478
+ margin-top: 0px !important;
475
479
  }}
@@ -93,5 +93,5 @@ code {{
93
93
  color: #6e6e6e;
94
94
  }}
95
95
  .msg-box .name-header.name-bot {{
96
- color: #a3a3a3;
96
+ color: #7a787c;
97
97
  }}