pygpt-net 2.6.20__py3-none-any.whl → 2.6.21__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.
- pygpt_net/CHANGELOG.txt +9 -0
- pygpt_net/__init__.py +3 -3
- pygpt_net/controller/agent/agent.py +130 -2
- pygpt_net/controller/agent/experts.py +93 -96
- pygpt_net/controller/agent/llama.py +2 -1
- pygpt_net/controller/assistant/assistant.py +18 -1
- pygpt_net/controller/attachment/attachment.py +17 -1
- pygpt_net/controller/camera/camera.py +15 -7
- pygpt_net/controller/chat/chat.py +2 -2
- pygpt_net/controller/chat/common.py +50 -33
- pygpt_net/controller/chat/image.py +67 -77
- pygpt_net/controller/chat/input.py +94 -166
- pygpt_net/controller/chat/output.py +83 -140
- pygpt_net/controller/chat/response.py +83 -102
- pygpt_net/controller/chat/text.py +116 -149
- pygpt_net/controller/ctx/common.py +2 -1
- pygpt_net/controller/ctx/ctx.py +86 -6
- pygpt_net/controller/files/files.py +13 -1
- pygpt_net/controller/idx/idx.py +26 -2
- pygpt_net/controller/kernel/reply.py +53 -66
- pygpt_net/controller/kernel/stack.py +16 -16
- pygpt_net/controller/model/importer.py +2 -1
- pygpt_net/controller/model/model.py +62 -3
- pygpt_net/controller/settings/editor.py +4 -4
- pygpt_net/controller/ui/ui.py +16 -2
- pygpt_net/core/agents/observer/evaluation.py +3 -3
- pygpt_net/core/agents/provider.py +25 -3
- pygpt_net/core/agents/runner.py +4 -1
- pygpt_net/core/agents/runners/llama_workflow.py +19 -7
- pygpt_net/core/agents/runners/loop.py +3 -1
- pygpt_net/core/agents/runners/openai_workflow.py +17 -3
- pygpt_net/core/agents/tools.py +4 -1
- pygpt_net/core/bridge/context.py +34 -37
- pygpt_net/core/ctx/ctx.py +1 -1
- pygpt_net/core/db/database.py +2 -2
- pygpt_net/core/debug/debug.py +12 -1
- pygpt_net/core/dispatcher/dispatcher.py +24 -1
- pygpt_net/core/events/app.py +7 -7
- pygpt_net/core/events/control.py +26 -26
- pygpt_net/core/events/event.py +6 -3
- pygpt_net/core/events/kernel.py +2 -2
- pygpt_net/core/events/render.py +13 -13
- pygpt_net/core/experts/experts.py +76 -82
- pygpt_net/core/experts/worker.py +12 -12
- pygpt_net/core/models/models.py +5 -1
- pygpt_net/core/models/ollama.py +14 -5
- pygpt_net/core/render/web/helpers.py +2 -2
- pygpt_net/core/render/web/renderer.py +4 -4
- pygpt_net/core/types/__init__.py +2 -1
- pygpt_net/core/types/agent.py +4 -4
- pygpt_net/core/types/base.py +19 -0
- pygpt_net/core/types/console.py +6 -6
- pygpt_net/core/types/mode.py +8 -8
- pygpt_net/core/types/multimodal.py +3 -3
- pygpt_net/core/types/openai.py +2 -1
- pygpt_net/data/config/config.json +4 -4
- pygpt_net/data/config/models.json +19 -3
- pygpt_net/data/config/settings.json +14 -14
- pygpt_net/data/locale/locale.en.ini +2 -2
- pygpt_net/item/ctx.py +256 -240
- pygpt_net/item/model.py +59 -116
- pygpt_net/item/preset.py +122 -105
- pygpt_net/provider/agents/llama_index/workflow/planner.py +3 -3
- pygpt_net/provider/agents/openai/agent.py +4 -12
- pygpt_net/provider/agents/openai/agent_b2b.py +10 -15
- pygpt_net/provider/agents/openai/agent_planner.py +4 -4
- pygpt_net/provider/agents/openai/agent_with_experts.py +3 -7
- pygpt_net/provider/agents/openai/agent_with_experts_feedback.py +4 -8
- pygpt_net/provider/agents/openai/agent_with_feedback.py +4 -8
- pygpt_net/provider/agents/openai/bot_researcher.py +2 -18
- pygpt_net/provider/agents/openai/bots/__init__.py +0 -0
- pygpt_net/provider/agents/openai/bots/research_bot/__init__.py +0 -0
- pygpt_net/provider/agents/openai/bots/research_bot/agents/__init__.py +0 -0
- pygpt_net/provider/agents/openai/bots/research_bot/agents/planner_agent.py +1 -1
- pygpt_net/provider/agents/openai/bots/research_bot/agents/search_agent.py +1 -0
- pygpt_net/provider/agents/openai/bots/research_bot/agents/writer_agent.py +1 -1
- pygpt_net/provider/agents/openai/bots/research_bot/manager.py +1 -10
- pygpt_net/provider/agents/openai/evolve.py +5 -9
- pygpt_net/provider/agents/openai/supervisor.py +4 -8
- pygpt_net/provider/core/config/patch.py +10 -3
- pygpt_net/provider/core/ctx/db_sqlite/utils.py +43 -43
- pygpt_net/provider/core/model/patch.py +11 -1
- pygpt_net/provider/core/preset/json_file.py +47 -49
- pygpt_net/provider/gpt/agents/experts.py +2 -2
- {pygpt_net-2.6.20.dist-info → pygpt_net-2.6.21.dist-info}/METADATA +13 -6
- {pygpt_net-2.6.20.dist-info → pygpt_net-2.6.21.dist-info}/RECORD +86 -85
- {pygpt_net-2.6.20.dist-info → pygpt_net-2.6.21.dist-info}/LICENSE +0 -0
- {pygpt_net-2.6.20.dist-info → pygpt_net-2.6.21.dist-info}/WHEEL +0 -0
- {pygpt_net-2.6.20.dist-info → pygpt_net-2.6.21.dist-info}/entry_points.txt +0 -0
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"__meta__": {
|
|
3
|
-
"version": "2.6.
|
|
4
|
-
"app.version": "2.6.
|
|
5
|
-
"updated_at": "2025-08-
|
|
3
|
+
"version": "2.6.21",
|
|
4
|
+
"app.version": "2.6.21",
|
|
5
|
+
"updated_at": "2025-08-24T23:07:35"
|
|
6
6
|
},
|
|
7
7
|
"items": {
|
|
8
8
|
"SpeakLeash/bielik-11b-v2.3-instruct:Q4_K_M": {
|
|
@@ -12,6 +12,7 @@
|
|
|
12
12
|
"chat",
|
|
13
13
|
"llama_index",
|
|
14
14
|
"agent_llama",
|
|
15
|
+
"agent_openai",
|
|
15
16
|
"agent",
|
|
16
17
|
"expert"
|
|
17
18
|
],
|
|
@@ -311,6 +312,7 @@
|
|
|
311
312
|
"llama_index",
|
|
312
313
|
"agent",
|
|
313
314
|
"agent_llama",
|
|
315
|
+
"agent_openai",
|
|
314
316
|
"expert",
|
|
315
317
|
"chat"
|
|
316
318
|
],
|
|
@@ -492,6 +494,7 @@
|
|
|
492
494
|
"llama_index",
|
|
493
495
|
"agent",
|
|
494
496
|
"agent_llama",
|
|
497
|
+
"agent_openai",
|
|
495
498
|
"expert",
|
|
496
499
|
"chat"
|
|
497
500
|
],
|
|
@@ -531,6 +534,7 @@
|
|
|
531
534
|
"llama_index",
|
|
532
535
|
"agent",
|
|
533
536
|
"agent_llama",
|
|
537
|
+
"agent_openai",
|
|
534
538
|
"expert",
|
|
535
539
|
"chat"
|
|
536
540
|
],
|
|
@@ -570,6 +574,7 @@
|
|
|
570
574
|
"llama_index",
|
|
571
575
|
"agent",
|
|
572
576
|
"agent_llama",
|
|
577
|
+
"agent_openai",
|
|
573
578
|
"expert",
|
|
574
579
|
"chat"
|
|
575
580
|
],
|
|
@@ -2567,6 +2572,7 @@
|
|
|
2567
2572
|
"llama_index",
|
|
2568
2573
|
"agent",
|
|
2569
2574
|
"agent_llama",
|
|
2575
|
+
"agent_openai",
|
|
2570
2576
|
"expert",
|
|
2571
2577
|
"chat"
|
|
2572
2578
|
],
|
|
@@ -2601,6 +2607,7 @@
|
|
|
2601
2607
|
"llama_index",
|
|
2602
2608
|
"agent",
|
|
2603
2609
|
"agent_llama",
|
|
2610
|
+
"agent_openai",
|
|
2604
2611
|
"expert",
|
|
2605
2612
|
"chat"
|
|
2606
2613
|
],
|
|
@@ -2635,6 +2642,7 @@
|
|
|
2635
2642
|
"llama_index",
|
|
2636
2643
|
"agent",
|
|
2637
2644
|
"agent_llama",
|
|
2645
|
+
"agent_openai",
|
|
2638
2646
|
"expert",
|
|
2639
2647
|
"chat"
|
|
2640
2648
|
],
|
|
@@ -2669,6 +2677,7 @@
|
|
|
2669
2677
|
"llama_index",
|
|
2670
2678
|
"agent",
|
|
2671
2679
|
"agent_llama",
|
|
2680
|
+
"agent_openai",
|
|
2672
2681
|
"expert",
|
|
2673
2682
|
"chat"
|
|
2674
2683
|
],
|
|
@@ -2703,6 +2712,7 @@
|
|
|
2703
2712
|
"llama_index",
|
|
2704
2713
|
"agent",
|
|
2705
2714
|
"agent_llama",
|
|
2715
|
+
"agent_openai",
|
|
2706
2716
|
"expert",
|
|
2707
2717
|
"chat"
|
|
2708
2718
|
],
|
|
@@ -2737,6 +2747,7 @@
|
|
|
2737
2747
|
"llama_index",
|
|
2738
2748
|
"agent",
|
|
2739
2749
|
"agent_llama",
|
|
2750
|
+
"agent_openai",
|
|
2740
2751
|
"expert",
|
|
2741
2752
|
"chat"
|
|
2742
2753
|
],
|
|
@@ -2771,6 +2782,7 @@
|
|
|
2771
2782
|
"llama_index",
|
|
2772
2783
|
"agent",
|
|
2773
2784
|
"agent_llama",
|
|
2785
|
+
"agent_openai",
|
|
2774
2786
|
"expert",
|
|
2775
2787
|
"chat"
|
|
2776
2788
|
],
|
|
@@ -3441,6 +3453,7 @@
|
|
|
3441
3453
|
"llama_index",
|
|
3442
3454
|
"agent",
|
|
3443
3455
|
"agent_llama",
|
|
3456
|
+
"agent_openai",
|
|
3444
3457
|
"expert",
|
|
3445
3458
|
"chat"
|
|
3446
3459
|
],
|
|
@@ -3475,6 +3488,7 @@
|
|
|
3475
3488
|
"llama_index",
|
|
3476
3489
|
"agent",
|
|
3477
3490
|
"agent_llama",
|
|
3491
|
+
"agent_openai",
|
|
3478
3492
|
"expert",
|
|
3479
3493
|
"chat"
|
|
3480
3494
|
],
|
|
@@ -3509,6 +3523,7 @@
|
|
|
3509
3523
|
"llama_index",
|
|
3510
3524
|
"agent",
|
|
3511
3525
|
"agent_llama",
|
|
3526
|
+
"agent_openai",
|
|
3512
3527
|
"expert",
|
|
3513
3528
|
"chat"
|
|
3514
3529
|
],
|
|
@@ -3543,6 +3558,7 @@
|
|
|
3543
3558
|
"llama_index",
|
|
3544
3559
|
"agent",
|
|
3545
3560
|
"agent_llama",
|
|
3561
|
+
"agent_openai",
|
|
3546
3562
|
"expert",
|
|
3547
3563
|
"chat"
|
|
3548
3564
|
],
|
|
@@ -1629,20 +1629,6 @@
|
|
|
1629
1629
|
"advanced": false,
|
|
1630
1630
|
"tab": "chat"
|
|
1631
1631
|
},
|
|
1632
|
-
"llama.idx.chat.agent.render.all": {
|
|
1633
|
-
"section": "llama-index",
|
|
1634
|
-
"type": "bool",
|
|
1635
|
-
"slider": false,
|
|
1636
|
-
"label": "settings.llama.idx.chat.agent.render.all",
|
|
1637
|
-
"description": "settings.llama.idx.chat.agent.render.all.desc",
|
|
1638
|
-
"value": false,
|
|
1639
|
-
"min": 0,
|
|
1640
|
-
"max": 0,
|
|
1641
|
-
"multiplier": 1,
|
|
1642
|
-
"step": 1,
|
|
1643
|
-
"advanced": false,
|
|
1644
|
-
"tab": "chat"
|
|
1645
|
-
},
|
|
1646
1632
|
"llama.idx.chat.auto_retrieve": {
|
|
1647
1633
|
"section": "llama-index",
|
|
1648
1634
|
"type": "bool",
|
|
@@ -1986,6 +1972,20 @@
|
|
|
1986
1972
|
"advanced": false,
|
|
1987
1973
|
"tab": "general"
|
|
1988
1974
|
},
|
|
1975
|
+
"agent.output.render.all": {
|
|
1976
|
+
"section": "agent",
|
|
1977
|
+
"type": "bool",
|
|
1978
|
+
"slider": false,
|
|
1979
|
+
"label": "settings.agent.output.render.all",
|
|
1980
|
+
"description": "settings.agent.output.render.all.desc",
|
|
1981
|
+
"value": true,
|
|
1982
|
+
"min": 0,
|
|
1983
|
+
"max": 0,
|
|
1984
|
+
"multiplier": 1,
|
|
1985
|
+
"step": 1,
|
|
1986
|
+
"advanced": false,
|
|
1987
|
+
"tab": "general"
|
|
1988
|
+
},
|
|
1989
1989
|
"agent.mode": {
|
|
1990
1990
|
"section": "agent",
|
|
1991
1991
|
"type": "combo",
|
|
@@ -1025,6 +1025,8 @@ settings.agent.mode = Sub-mode for agents
|
|
|
1025
1025
|
settings.agent.mode.desc = Sub-mode to use in Agent (Autonomous) mode
|
|
1026
1026
|
settings.agent.openai.response.split = Split response messages
|
|
1027
1027
|
settings.agent.openai.response.split.desc = Split response messages to separated context items in OpenAI Agents mode.
|
|
1028
|
+
settings.agent.output.render.all = Display full agent output in chat view
|
|
1029
|
+
settings.agent.output.render.all.desc = If enabled, then full output from agent will be displayed in chat window if agent is enabled.
|
|
1028
1030
|
settings.api_azure_endpoint = API Endpoint
|
|
1029
1031
|
settings.api_azure_endpoint.desc = Azure OpenAI API endpoint, https://<your-resource-name>.openai.azure.com/
|
|
1030
1032
|
settings.api_azure_version = OpenAI API version
|
|
@@ -1189,8 +1191,6 @@ settings.llama.hub.loaders.args = Additional keyword arguments (**kwargs) for da
|
|
|
1189
1191
|
settings.llama.hub.loaders.args.desc = Additional keyword arguments (**kwargs), such as settings, API keys, for the data loader. These arguments will be passed to the loader; please refer to the PyGPT documentation or LlamaHub loaders reference for a list of allowed arguments for the specified data loader. One argument per single row.
|
|
1190
1192
|
settings.llama.hub.loaders.use_local = Use local models in Video/Audio and Image (vision) loaders
|
|
1191
1193
|
settings.llama.hub.loaders.use_local.desc = Enable usage of local models in Video/Audio and Image (vision) loaders. If disabled, then API models will be used (GPT-4 Vision and Whisper). Note: local models will work only in the Python version (not compiled/Snap).
|
|
1192
|
-
settings.llama.idx.chat.agent.render.all = Display full agent output in chat view
|
|
1193
|
-
settings.llama.idx.chat.agent.render.all.desc = If enabled, then full output from agent will be displayed in chat window if agent is enabled.
|
|
1194
1194
|
settings.llama.idx.chat.auto_retrieve = Auto-retrieve additional context
|
|
1195
1195
|
settings.llama.idx.chat.auto_retrieve.desc = If enabled, additional context will be retrieved with every query and appended to system prompt.
|
|
1196
1196
|
settings.llama.idx.chat.mode = Chat mode
|