agentcrew-ai 0.8.12__py3-none-any.whl → 0.9.0__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.
- AgentCrew/__init__.py +1 -1
- AgentCrew/app.py +34 -633
- AgentCrew/main.py +55 -3
- AgentCrew/main_docker.py +1 -30
- AgentCrew/modules/agents/local_agent.py +26 -1
- AgentCrew/modules/chat/message/command_processor.py +33 -8
- AgentCrew/modules/chat/message/handler.py +5 -1
- AgentCrew/modules/code_analysis/__init__.py +8 -0
- AgentCrew/modules/code_analysis/parsers/__init__.py +67 -0
- AgentCrew/modules/code_analysis/parsers/base.py +93 -0
- AgentCrew/modules/code_analysis/parsers/cpp_parser.py +127 -0
- AgentCrew/modules/code_analysis/parsers/csharp_parser.py +162 -0
- AgentCrew/modules/code_analysis/parsers/generic_parser.py +63 -0
- AgentCrew/modules/code_analysis/parsers/go_parser.py +154 -0
- AgentCrew/modules/code_analysis/parsers/java_parser.py +103 -0
- AgentCrew/modules/code_analysis/parsers/javascript_parser.py +268 -0
- AgentCrew/modules/code_analysis/parsers/kotlin_parser.py +84 -0
- AgentCrew/modules/code_analysis/parsers/php_parser.py +107 -0
- AgentCrew/modules/code_analysis/parsers/python_parser.py +60 -0
- AgentCrew/modules/code_analysis/parsers/ruby_parser.py +46 -0
- AgentCrew/modules/code_analysis/parsers/rust_parser.py +72 -0
- AgentCrew/modules/code_analysis/service.py +231 -897
- AgentCrew/modules/command_execution/constants.py +2 -2
- AgentCrew/modules/console/completers.py +1 -1
- AgentCrew/modules/console/confirmation_handler.py +4 -4
- AgentCrew/modules/console/console_ui.py +17 -3
- AgentCrew/modules/console/conversation_browser/__init__.py +9 -0
- AgentCrew/modules/console/conversation_browser/browser.py +84 -0
- AgentCrew/modules/console/conversation_browser/browser_input_handler.py +279 -0
- AgentCrew/modules/console/conversation_browser/browser_ui.py +643 -0
- AgentCrew/modules/console/conversation_handler.py +34 -1
- AgentCrew/modules/console/diff_display.py +22 -51
- AgentCrew/modules/console/display_handlers.py +142 -26
- AgentCrew/modules/console/tool_display.py +4 -6
- AgentCrew/modules/file_editing/service.py +8 -8
- AgentCrew/modules/file_editing/tool.py +65 -67
- AgentCrew/modules/gui/components/command_handler.py +137 -29
- AgentCrew/modules/gui/components/tool_handlers.py +0 -2
- AgentCrew/modules/gui/themes/README.md +30 -14
- AgentCrew/modules/gui/themes/__init__.py +2 -1
- AgentCrew/modules/gui/themes/atom_light.yaml +1287 -0
- AgentCrew/modules/gui/themes/catppuccin.yaml +1276 -0
- AgentCrew/modules/gui/themes/dracula.yaml +1262 -0
- AgentCrew/modules/gui/themes/nord.yaml +1267 -0
- AgentCrew/modules/gui/themes/saigontech.yaml +1268 -0
- AgentCrew/modules/gui/themes/style_provider.py +76 -264
- AgentCrew/modules/gui/themes/theme_loader.py +379 -0
- AgentCrew/modules/gui/themes/unicorn.yaml +1276 -0
- AgentCrew/modules/gui/widgets/configs/global_settings.py +3 -4
- AgentCrew/modules/gui/widgets/diff_widget.py +30 -61
- AgentCrew/modules/llm/constants.py +18 -9
- AgentCrew/modules/memory/context_persistent.py +1 -0
- AgentCrew/modules/memory/tool.py +1 -1
- AgentCrew/setup.py +470 -0
- {agentcrew_ai-0.8.12.dist-info → agentcrew_ai-0.9.0.dist-info}/METADATA +1 -1
- {agentcrew_ai-0.8.12.dist-info → agentcrew_ai-0.9.0.dist-info}/RECORD +60 -41
- {agentcrew_ai-0.8.12.dist-info → agentcrew_ai-0.9.0.dist-info}/WHEEL +1 -1
- AgentCrew/modules/gui/themes/atom_light.py +0 -1365
- AgentCrew/modules/gui/themes/catppuccin.py +0 -1404
- AgentCrew/modules/gui/themes/dracula.py +0 -1372
- AgentCrew/modules/gui/themes/nord.py +0 -1365
- AgentCrew/modules/gui/themes/saigontech.py +0 -1359
- AgentCrew/modules/gui/themes/unicorn.py +0 -1372
- {agentcrew_ai-0.8.12.dist-info → agentcrew_ai-0.9.0.dist-info}/entry_points.txt +0 -0
- {agentcrew_ai-0.8.12.dist-info → agentcrew_ai-0.9.0.dist-info}/licenses/LICENSE +0 -0
- {agentcrew_ai-0.8.12.dist-info → agentcrew_ai-0.9.0.dist-info}/top_level.txt +0 -0
|
@@ -1,7 +1,8 @@
|
|
|
1
|
-
AgentCrew/__init__.py,sha256=
|
|
2
|
-
AgentCrew/app.py,sha256=
|
|
3
|
-
AgentCrew/main.py,sha256=
|
|
4
|
-
AgentCrew/main_docker.py,sha256=
|
|
1
|
+
AgentCrew/__init__.py,sha256=H9NWRZb7NbeRRPLP_V1fARmLNXranorVM-OOY-8_2ug,22
|
|
2
|
+
AgentCrew/app.py,sha256=AhtfhSAbBZcRl2XO1iD0b6oymK3N1o5H55Yw7ORoYjU,14142
|
|
3
|
+
AgentCrew/main.py,sha256=nmoYDobbUe1le_z1_7s2rfrgm6N56nxuPHnsOFDu-dg,12767
|
|
4
|
+
AgentCrew/main_docker.py,sha256=OkVcujUcWNUcy1XCXbFFwjH6hj8oOeNUuMbFq__7lHc,5362
|
|
5
|
+
AgentCrew/setup.py,sha256=rLlh1J8YUCn_vr_gJR9xVpC3-9pW_XUaem209gtLHrM,18457
|
|
5
6
|
AgentCrew/assets/agentcrew_logo.png,sha256=bA4WQ9QrZXxBd_GfbR2s5GWBRrRodzeDynQj7XHIPNw,944381
|
|
6
7
|
AgentCrew/modules/__init__.py,sha256=XFPEOINvFcwT5wToPt3lm4wst-XiBNjeAIK3s5QfV3Q,1191
|
|
7
8
|
AgentCrew/modules/a2a/__init__.py,sha256=gFX0PAA6sxCRyAo_Gbs81cK2FckW11GnTxMhQpchkmg,208
|
|
@@ -22,7 +23,7 @@ AgentCrew/modules/a2a/common/server/utils.py,sha256=pmIBG5cyzaVNXbyESLux2AcogwPa
|
|
|
22
23
|
AgentCrew/modules/agents/__init__.py,sha256=rMwchcGZzapLLZdUQUaJtCLowHoG-dOn8_VljKz8NrI,165
|
|
23
24
|
AgentCrew/modules/agents/base.py,sha256=i7w0X7mcTRWwgyQwqN-iOIniLce9cSM2wGG3njlZpHk,2641
|
|
24
25
|
AgentCrew/modules/agents/example.py,sha256=_-Nd7EKHprKXZLN9_ava0b9vR7wGyUzsXSEV7_js7Ho,6894
|
|
25
|
-
AgentCrew/modules/agents/local_agent.py,sha256=
|
|
26
|
+
AgentCrew/modules/agents/local_agent.py,sha256=YhXa0iXyxQjGbQRJe641-smw_7vmE6VWWC4yjmAlK48,33408
|
|
26
27
|
AgentCrew/modules/agents/manager.py,sha256=PCOymk-WS4xYi_OL2lZoHCzORTyG2C8NbIWhzzAmiRs,25171
|
|
27
28
|
AgentCrew/modules/agents/remote_agent.py,sha256=bBgO8E3dXZuu9ofklXLfL5-8mxF_XZOLyqj6rrwTXR8,6432
|
|
28
29
|
AgentCrew/modules/agents/tools/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -55,20 +56,33 @@ AgentCrew/modules/chat/history.py,sha256=I7q1_s16h975uAtq6fxC4UcS9iuk1aUpKkMMYCc
|
|
|
55
56
|
AgentCrew/modules/chat/message_handler.py,sha256=A8DfuIPjW0R7s3a0P8VzNa2PF6HgXcRt8CEm2nL8fEE,306
|
|
56
57
|
AgentCrew/modules/chat/message/__init__.py,sha256=SllV6nacLgBSTwkUhI7VbEW-7gwQxQh6cCjRtbU02O8,146
|
|
57
58
|
AgentCrew/modules/chat/message/base.py,sha256=Xnes4tQCfMfWShSHG8f3ZZ5y5Q0wTWy5g0EwnNmflK0,1016
|
|
58
|
-
AgentCrew/modules/chat/message/command_processor.py,sha256=
|
|
59
|
+
AgentCrew/modules/chat/message/command_processor.py,sha256=W6LSyCDd-jlPDCVkarf1mDD20Nb95ErQRMfXpVeizPw,34527
|
|
59
60
|
AgentCrew/modules/chat/message/conversation.py,sha256=olGWFPi3u1wbnqpbPllMhKo4qGepvCj0O_Bmdh-ovwY,10841
|
|
60
|
-
AgentCrew/modules/chat/message/handler.py,sha256=
|
|
61
|
+
AgentCrew/modules/chat/message/handler.py,sha256=y4YV49tr_qFsmHbQTRHs9K0Vo-J6IZHIQgthm3JPMPE,24156
|
|
61
62
|
AgentCrew/modules/chat/message/tool_manager.py,sha256=6E4psoIH9FFsthucG9t-luSVbNz2SasAHdGXl6rvjLc,12851
|
|
62
63
|
AgentCrew/modules/clipboard/__init__.py,sha256=Xb0wwQ-9dwwLT3R3TYB87pwtDTNX5HAzhkr8iuR6mBc,77
|
|
63
64
|
AgentCrew/modules/clipboard/service.py,sha256=FCo3zSJH0zDdvW73u4D_ty9fTMsXmOeVsAIOfyJ54Ws,6246
|
|
64
65
|
AgentCrew/modules/clipboard/tool.py,sha256=RMu6Cr5wP79SvfOqojAbu6g1WxBw6EUS4Mdfdr9VEuY,5474
|
|
65
|
-
AgentCrew/modules/code_analysis/__init__.py,sha256
|
|
66
|
+
AgentCrew/modules/code_analysis/__init__.py,sha256=-JFx3n7LOtxIcBuHudc7dMG7miecl-BP4w6BTqyHm2U,431
|
|
66
67
|
AgentCrew/modules/code_analysis/file_search_service.py,sha256=Bsa3Ev1nvXs1HaUhLV5f5krsaJFXOJ257CgvLbxLrY0,20164
|
|
67
68
|
AgentCrew/modules/code_analysis/grep_service.py,sha256=vW26x2tIJDwKyoNLrhjwPPdOOE7HhKOfyJGmENqwtR8,23284
|
|
68
|
-
AgentCrew/modules/code_analysis/service.py,sha256=
|
|
69
|
+
AgentCrew/modules/code_analysis/service.py,sha256=u5PwT50HokRDFrTc5L8zd9y_uvADRNUTjhsih3tkoPU,31076
|
|
69
70
|
AgentCrew/modules/code_analysis/tool.py,sha256=ba3NqUyHjJe9TAzG8ImUI2cZKRKtHgdQtWsOUBM5_yA,21203
|
|
71
|
+
AgentCrew/modules/code_analysis/parsers/__init__.py,sha256=zuKHS8-0ksiU1LZNmZf5hCJYSGbOTITqQQ_DepdCy_I,1635
|
|
72
|
+
AgentCrew/modules/code_analysis/parsers/base.py,sha256=WSDTlVgJYmD-7nUBlGB9c8TJ1_fhz5XyGQ9TZ0ilHug,3067
|
|
73
|
+
AgentCrew/modules/code_analysis/parsers/cpp_parser.py,sha256=L06LUNFtG90q6AjG29QPucDp-ErMTj4iuv0botcTQnM,4663
|
|
74
|
+
AgentCrew/modules/code_analysis/parsers/csharp_parser.py,sha256=jppuCiS-f0TUrL1UV5wtxyKoZeLKPSCgI8UVI6CTESw,6010
|
|
75
|
+
AgentCrew/modules/code_analysis/parsers/generic_parser.py,sha256=GIjJJOeTOTY8d3rlVxc0k4WSm4S60qty4xPax-wbWWM,2149
|
|
76
|
+
AgentCrew/modules/code_analysis/parsers/go_parser.py,sha256=MzFX4FbM-uJ1bfyaEujQlOFZzdODXc5JLXCJPMBwZxw,5635
|
|
77
|
+
AgentCrew/modules/code_analysis/parsers/java_parser.py,sha256=e7FMtjhyoADI8uAYC3UP2HlQ-zq2CfFnA3KJLElLhmY,3724
|
|
78
|
+
AgentCrew/modules/code_analysis/parsers/javascript_parser.py,sha256=bDuwmq1vCmS7LvB1NFUtcJQorioDw3N00xDkiyp8kU4,10688
|
|
79
|
+
AgentCrew/modules/code_analysis/parsers/kotlin_parser.py,sha256=SamBs8ECGZurU8rd79jBG7KrbZdz3xqD_xoEN1YLFf4,3221
|
|
80
|
+
AgentCrew/modules/code_analysis/parsers/php_parser.py,sha256=Ix_kmvYuK3_0RGH5_aw5pzUpOBF2gY4N4CChW8FhXik,3589
|
|
81
|
+
AgentCrew/modules/code_analysis/parsers/python_parser.py,sha256=_IhmGHVZ3TdWVJAYwQH0R5h5k_4uBStN5-u9Q35biFk,2073
|
|
82
|
+
AgentCrew/modules/code_analysis/parsers/ruby_parser.py,sha256=cAvh3XOBigJKDYe_gE7mAFWl6C7x__QxPbmjMxOuivo,1448
|
|
83
|
+
AgentCrew/modules/code_analysis/parsers/rust_parser.py,sha256=fyvi9XtXZZZ_53Cu-XOW8v_wc990YZCyaSnWPMEG3Pg,2304
|
|
70
84
|
AgentCrew/modules/command_execution/__init__.py,sha256=BIy7TSuz6yFaUQ0GEvXZO-ZSlkSwcRxforfIIhHCMTM,380
|
|
71
|
-
AgentCrew/modules/command_execution/constants.py,sha256=
|
|
85
|
+
AgentCrew/modules/command_execution/constants.py,sha256=8seMg7YoSnS1plw5YgTKhV90jMlbLIHE0edhdLi93jI,4694
|
|
72
86
|
AgentCrew/modules/command_execution/service.py,sha256=cd0AkBKee_0oj4WezJo_ZICXTJ-kkcMT4J-oPN7aHz0,24814
|
|
73
87
|
AgentCrew/modules/command_execution/tool.py,sha256=SePfiQvCKhiC_B-KG-5jLswocDIusE5i9r1oWV8a6-M,14146
|
|
74
88
|
AgentCrew/modules/command_execution/types.py,sha256=kosDGBMF7DFGLdhxYxhOOZHf0URKWejLluUeCCfP5EI,2477
|
|
@@ -76,17 +90,21 @@ AgentCrew/modules/config/__init__.py,sha256=ehO0aAkK98f9BmMjG9uR15Hc9Lwj9CnJZl24
|
|
|
76
90
|
AgentCrew/modules/config/config_management.py,sha256=YhbkecLVxPz-1XM2S_q026qJjTnV7pDciefYnrlBw10,33827
|
|
77
91
|
AgentCrew/modules/console/__init__.py,sha256=nO53lUaMEAshdIqDEmgNZ_r35jyg6CuMa7Tsj55Y09g,66
|
|
78
92
|
AgentCrew/modules/console/command_handlers.py,sha256=eleobLeNjnkzB_ZcvFq9gXWLs0wMqleVOJgaICo3YBI,16533
|
|
79
|
-
AgentCrew/modules/console/completers.py,sha256=
|
|
80
|
-
AgentCrew/modules/console/confirmation_handler.py,sha256=
|
|
81
|
-
AgentCrew/modules/console/console_ui.py,sha256
|
|
93
|
+
AgentCrew/modules/console/completers.py,sha256=BV3gWhWYNm8eaIDOrhNfQhs2aoGEhsmqK5bplAMywQs,17664
|
|
94
|
+
AgentCrew/modules/console/confirmation_handler.py,sha256=Jlr5ugGmiAIOIoP-Ref-WwYpu-YMhMjBc4xi9wdGTQ4,10232
|
|
95
|
+
AgentCrew/modules/console/console_ui.py,sha256=XEUumdksQZBHyD-V72XZ3QLwutvdaXzrwLvaRv2wJRM,30759
|
|
82
96
|
AgentCrew/modules/console/constants.py,sha256=fwLj52O96_t6m1qb0SOiaotM2dMLwXH83KAERm9ltLA,704
|
|
83
|
-
AgentCrew/modules/console/conversation_handler.py,sha256=
|
|
84
|
-
AgentCrew/modules/console/diff_display.py,sha256=
|
|
85
|
-
AgentCrew/modules/console/display_handlers.py,sha256=
|
|
97
|
+
AgentCrew/modules/console/conversation_handler.py,sha256=ei_QGmATDf1Opkw5J1i6HQj9SOZXIO1CdPObAOxJvws,4741
|
|
98
|
+
AgentCrew/modules/console/diff_display.py,sha256=5Oom4wIE9vifZDvTRqstV7NAbi3JkDx_-g6bAzRCiZQ,6456
|
|
99
|
+
AgentCrew/modules/console/display_handlers.py,sha256=w0zxXk4ynnWWZQzm9kCGhJhfR1XROJUotcNha4tMwmM,21650
|
|
86
100
|
AgentCrew/modules/console/input_handler.py,sha256=Nn8H0RZiuF2asw8uum5n1otGOEb19U-_SMxVCTx3QTQ,18208
|
|
87
|
-
AgentCrew/modules/console/tool_display.py,sha256=
|
|
101
|
+
AgentCrew/modules/console/tool_display.py,sha256=WPxexDO-B1vvPAsBJdX54N1SLM-D5nEhchGRLUQvNeE,7294
|
|
88
102
|
AgentCrew/modules/console/ui_effects.py,sha256=Q3K6EodtNhIyQ_ri_rXsd4jXNn0SVw0KCla3p5Momf8,8198
|
|
89
103
|
AgentCrew/modules/console/utils.py,sha256=TFIyyYVFlWMB0FCAq4H09Yp6UCezUEHg3HNEZXuVmiA,273
|
|
104
|
+
AgentCrew/modules/console/conversation_browser/__init__.py,sha256=kuxwWtE9MYs47KdOAYsWxbhXoP0wHJaAX8_k_3iCQG0,264
|
|
105
|
+
AgentCrew/modules/console/conversation_browser/browser.py,sha256=rMNzfqGdxQIAL_8BVQaMcXU6BLYLhvgefY2zAxFEFSw,2825
|
|
106
|
+
AgentCrew/modules/console/conversation_browser/browser_input_handler.py,sha256=MR-fXLzp7nHQZZZmklYDLpCe2NfA6n7gb_g0dSrzBPI,8440
|
|
107
|
+
AgentCrew/modules/console/conversation_browser/browser_ui.py,sha256=TXi6gkkSYpYMr8p07cP2cDAHJdHpOtGWbezNaPXdgz8,24247
|
|
90
108
|
AgentCrew/modules/custom_llm/__init__.py,sha256=NvgE3c6rYd52SmRITqGeHqaGOnHrK9vU8RBqD9_6Mdo,337
|
|
91
109
|
AgentCrew/modules/custom_llm/copilot_response_service.py,sha256=tySzxnLMzMt3WjwhvBegtDP7Qk43D2Wc5bxZAi0Z3sA,4605
|
|
92
110
|
AgentCrew/modules/custom_llm/deepinfra_service.py,sha256=uY7f-lg-hnR7A1ZYwKSE10c4WlJ9C693eBiZxLV6jlw,7553
|
|
@@ -95,8 +113,8 @@ AgentCrew/modules/custom_llm/service.py,sha256=hBiTdCr1Y7O6y-cHvLYHuwhHfm0jMruQq
|
|
|
95
113
|
AgentCrew/modules/file_editing/__init__.py,sha256=Q6oDyP3bHslFpmxHdrCCLVx1M_awaHD2WqFTSEU3VIY,241
|
|
96
114
|
AgentCrew/modules/file_editing/safety_validator.py,sha256=lLNb_GpIIX2QtN86U2NKbM-b3VYW3b6jNkXL5hKPlok,5575
|
|
97
115
|
AgentCrew/modules/file_editing/search_replace_engine.py,sha256=i8e18VIvxOwCazjnfrmLp637laDCsJSpZs5YsW9Ic-Y,10751
|
|
98
|
-
AgentCrew/modules/file_editing/service.py,sha256=
|
|
99
|
-
AgentCrew/modules/file_editing/tool.py,sha256=
|
|
116
|
+
AgentCrew/modules/file_editing/service.py,sha256=6llNk-phMG7wGD7lAwUkkNk_I7KyKaWca59JXjxtV6U,9613
|
|
117
|
+
AgentCrew/modules/file_editing/tool.py,sha256=OCaPZxc7yUNtwBRaJvFq7TB1YMNj1rX-U25MRJ2m-ok,6554
|
|
100
118
|
AgentCrew/modules/file_editing/tree_sitter_checker.py,sha256=BWF1KBGvVFBAwxDLStbaL3Zq8P-6mRyPKF5qRnOvUZY,5603
|
|
101
119
|
AgentCrew/modules/google/__init__.py,sha256=gJoUxCrHb0QJ0S-HWxXJVfDUhgdaoiJ-eYMSzDndur4,143
|
|
102
120
|
AgentCrew/modules/google/native_service.py,sha256=92TXQX9rgG_RdEaud2IZxDmKN9ob8JL9k7RF9ugIg6U,27514
|
|
@@ -108,31 +126,32 @@ AgentCrew/modules/gui/qt_ui.py,sha256=hKQwOFat2xOw1p3cGLDqSjKw7lpNX3oDKOo67_XJdU
|
|
|
108
126
|
AgentCrew/modules/gui/worker.py,sha256=XFRXCYnRz27_zZ7VwinoP6xqJY7I56Jc-eTxxou2Ckk,3018
|
|
109
127
|
AgentCrew/modules/gui/components/__init__.py,sha256=rNS0MItVDvnlQTr_OoFc4via2b0gc2b4EAVPzemH2B4,647
|
|
110
128
|
AgentCrew/modules/gui/components/chat_components.py,sha256=8E8qxpxIakjdDqir16vhExKc2i6aBd8XN74B8h60zGQ,13948
|
|
111
|
-
AgentCrew/modules/gui/components/command_handler.py,sha256=
|
|
129
|
+
AgentCrew/modules/gui/components/command_handler.py,sha256=ZZxs-_rMj_Nk8P_S7IIQDjLkwQmJsnG7mIA27XSEIq4,14183
|
|
112
130
|
AgentCrew/modules/gui/components/completers.py,sha256=1_0EGJHXXGKwZxNHcWc8xOvn5uxBauteoS2fgxLCa6Q,5734
|
|
113
131
|
AgentCrew/modules/gui/components/conversation_components.py,sha256=4-SbJt4ytzC56L-sEYCwfs9mo1rNiiUv5XRP9E5lZk8,8328
|
|
114
132
|
AgentCrew/modules/gui/components/input_components.py,sha256=IYKigulYCNJ6Et5rLCEXNIZqSQUesTg1BgPCP_UFurY,13683
|
|
115
133
|
AgentCrew/modules/gui/components/keyboard_handler.py,sha256=uNBvaOOIcBHaqstA4JbTrkDEmlh0r6Y6_gRG9gD1WCw,5770
|
|
116
134
|
AgentCrew/modules/gui/components/menu_components.py,sha256=Dy6yo61R4sEANZEfRdl3pOTUb5Io6nmUEqMfYc0nW9I,5327
|
|
117
135
|
AgentCrew/modules/gui/components/message_handlers.py,sha256=CluNFGNXjWbJFf6RhAlqgmA9o_gcJRXLEG7FIQW07W0,5391
|
|
118
|
-
AgentCrew/modules/gui/components/tool_handlers.py,sha256=
|
|
136
|
+
AgentCrew/modules/gui/components/tool_handlers.py,sha256=3YtdI1aemXrg0_VKb5QvL3drVy2Bc-dIFNEbcIxEQOU,21951
|
|
119
137
|
AgentCrew/modules/gui/components/ui_state_manager.py,sha256=w_gmdykpFbZE84lgA1I_ordqky_QpPUOf39ni26KEfw,5131
|
|
120
|
-
AgentCrew/modules/gui/themes/README.md,sha256=
|
|
121
|
-
AgentCrew/modules/gui/themes/__init__.py,sha256=
|
|
122
|
-
AgentCrew/modules/gui/themes/atom_light.
|
|
123
|
-
AgentCrew/modules/gui/themes/catppuccin.
|
|
124
|
-
AgentCrew/modules/gui/themes/dracula.
|
|
125
|
-
AgentCrew/modules/gui/themes/nord.
|
|
126
|
-
AgentCrew/modules/gui/themes/saigontech.
|
|
127
|
-
AgentCrew/modules/gui/themes/style_provider.py,sha256=
|
|
128
|
-
AgentCrew/modules/gui/themes/
|
|
138
|
+
AgentCrew/modules/gui/themes/README.md,sha256=kzik8Jcdb4j4tlmGzWY576BiQZmkbtzrj5wr_6RQhbA,4740
|
|
139
|
+
AgentCrew/modules/gui/themes/__init__.py,sha256=DmbNPpozH-l4JhXDq3FYNATa_tn4BszGmc6u_93RW_s,148
|
|
140
|
+
AgentCrew/modules/gui/themes/atom_light.yaml,sha256=Fl4f6DcARIPvxL0gZWhQE2DLho61DZjJsTrMGTb_lIM,31863
|
|
141
|
+
AgentCrew/modules/gui/themes/catppuccin.yaml,sha256=GI6A4T9qju_jn_pgk7IDnlZbUL2vnnyxC6JXuSLQY5s,31135
|
|
142
|
+
AgentCrew/modules/gui/themes/dracula.yaml,sha256=edvjrXbs3iDB4pcI-oK24AnMghzQ3cjzQWBp018yjIk,31523
|
|
143
|
+
AgentCrew/modules/gui/themes/nord.yaml,sha256=U5gPX9ksR3p_M4Rj9jh1UBwkdKrNfV85xlQgWYBPJTQ,33146
|
|
144
|
+
AgentCrew/modules/gui/themes/saigontech.yaml,sha256=ZTUkO50X7NugrDxFYmLW3SfpZ-HVbdCebLls1LfhVIw,32718
|
|
145
|
+
AgentCrew/modules/gui/themes/style_provider.py,sha256=z-6yqg0xlffY6HaVXscJ1GkinHLSkvNUSGs30jB0yu8,7456
|
|
146
|
+
AgentCrew/modules/gui/themes/theme_loader.py,sha256=q8bUlLbaYWWZY595z3FuuDOv3_TNn4M9Nr0LAo071eE,10216
|
|
147
|
+
AgentCrew/modules/gui/themes/unicorn.yaml,sha256=Y9TxUWCTMlJnGaqE0A3aHQvDWxhhEI7VKMn1WNWgoTk,32216
|
|
129
148
|
AgentCrew/modules/gui/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
130
149
|
AgentCrew/modules/gui/utils/macos_clipboard.py,sha256=VV0QP2_lWyaL8CB_9dGZuajpON5i12wiDeh6Nbci1pA,510
|
|
131
150
|
AgentCrew/modules/gui/utils/strings.py,sha256=zSnec-CHz8JF3H6BgPGjfDr10NilRumorlwh-tuvUBs,540
|
|
132
151
|
AgentCrew/modules/gui/utils/wins_clipboard.py,sha256=8LXKje-WzR3Iubu8c_37s-j8DP_5KDywrQEEpfxMcZU,2440
|
|
133
152
|
AgentCrew/modules/gui/widgets/__init__.py,sha256=Rc6P_K8d9Dw6H3AGAwnmkuhIxEu5ulht3w7VYJK-cds,493
|
|
134
153
|
AgentCrew/modules/gui/widgets/config_window.py,sha256=QxwnT7N6C0Jm8OOJ4WJE71j7tqDH0kTJVCCGnzR4SZw,3099
|
|
135
|
-
AgentCrew/modules/gui/widgets/diff_widget.py,sha256=
|
|
154
|
+
AgentCrew/modules/gui/widgets/diff_widget.py,sha256=EZiz9K-Pski9dH4LdkozBnEt-TZSacepUovaaKmLe5k,17812
|
|
136
155
|
AgentCrew/modules/gui/widgets/history_sidebar.py,sha256=n-WMPf5cm5jNB_cT3IoK_nzAAczRCA1GeWsY4O0bg5k,10596
|
|
137
156
|
AgentCrew/modules/gui/widgets/json_editor.py,sha256=lV-Me8TUJzIkF-tbiRiFSdRGDbxv9bBKDdSSLwof7oU,6211
|
|
138
157
|
AgentCrew/modules/gui/widgets/loading_overlay.py,sha256=jCfHDDJ5YudfwU15s61l3zQVeWoRhI38WvaTylysR9g,3630
|
|
@@ -145,7 +164,7 @@ AgentCrew/modules/gui/widgets/tool_widget.py,sha256=h9-Pbn_dQ3Oebog-IJ8JcY7MqSdu
|
|
|
145
164
|
AgentCrew/modules/gui/widgets/configs/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
146
165
|
AgentCrew/modules/gui/widgets/configs/agent_config.py,sha256=IRU-s6YsLJiPoi0buDiSL4CRFz1-k0VAmL9DLJh7jT0,52234
|
|
147
166
|
AgentCrew/modules/gui/widgets/configs/custom_llm_provider.py,sha256=TY3AJUl46vlpy9s4OzxdpFr_zsWCJTyM6roz9GBaUCs,35068
|
|
148
|
-
AgentCrew/modules/gui/widgets/configs/global_settings.py,sha256=
|
|
167
|
+
AgentCrew/modules/gui/widgets/configs/global_settings.py,sha256=0K9-bOJCF2QnXvOoWk-MvegOQxf9c7HQ-Oq5ngY1hb8,10445
|
|
149
168
|
AgentCrew/modules/gui/widgets/configs/mcp_config.py,sha256=RvUdMKyO3QoGuCD6StMe_3vP0bA4KshltSMYSyQAfJY,35811
|
|
150
169
|
AgentCrew/modules/gui/widgets/configs/save_worker.py,sha256=9ZdZa3dk2YLGJMJf6i6FuCRXQbZWuH9fciNXMRBvvgA,708
|
|
151
170
|
AgentCrew/modules/image_generation/__init__.py,sha256=IwJLpqNberxd9pRlTv1daXozZGpyu1RlVkGsPGnSj2w,82
|
|
@@ -153,7 +172,7 @@ AgentCrew/modules/image_generation/service.py,sha256=OEuVaVd4ecKSdZn-WGMmqyZtqDw
|
|
|
153
172
|
AgentCrew/modules/image_generation/tool.py,sha256=TCe6tOvvCXj5LvjMtmxH1AQ5s2FWHDA79ix43hdzGZs,6087
|
|
154
173
|
AgentCrew/modules/llm/__init__.py,sha256=dMlHRa09bbPEVZnGXm62TcHmbvQzdBqmRIxstlrls8k,63
|
|
155
174
|
AgentCrew/modules/llm/base.py,sha256=S2Tzg4LXQv69MVjNScWbpid3cM20QCgW0KHQqvghjeI,11511
|
|
156
|
-
AgentCrew/modules/llm/constants.py,sha256=
|
|
175
|
+
AgentCrew/modules/llm/constants.py,sha256=hS0li5M8sBXf6A10brF1HJ3L_l5CI3MRmnm1fwxZcxE,22948
|
|
157
176
|
AgentCrew/modules/llm/model_registry.py,sha256=7gJqn-YoentH2Xx0AlF5goyxQDlEBMFWak2poafjhyI,5510
|
|
158
177
|
AgentCrew/modules/llm/service_manager.py,sha256=oXSjcAbrfcGLdBcm_ylnSWIp87Ecl96yZ8efkWFb4Gw,10669
|
|
159
178
|
AgentCrew/modules/llm/types.py,sha256=Bkr1OIRJJ5neUiSCMUJco8SwerrycPh5Xg1kVDpO0os,949
|
|
@@ -166,10 +185,10 @@ AgentCrew/modules/mcpclient/tool.py,sha256=6VrwvZOvyVzvfsMYGvrHl8DmLzbjhLQ3q2Kmt
|
|
|
166
185
|
AgentCrew/modules/memory/__init__.py,sha256=1tdK0sybmY2c6y_rWFs2eF0Zy7vcEbGlwtIoF8BF0K4,251
|
|
167
186
|
AgentCrew/modules/memory/base_service.py,sha256=OW9ZfDDoYXpvzWBj5nLcssidc1HJU_0mn6VhgCBZfLA,4145
|
|
168
187
|
AgentCrew/modules/memory/chroma_service.py,sha256=ZPn3Fr675LJ_sdBvCw2kM6JPh550jxw7bARhKAruHQY,25267
|
|
169
|
-
AgentCrew/modules/memory/context_persistent.py,sha256=
|
|
188
|
+
AgentCrew/modules/memory/context_persistent.py,sha256=fHNiqH2Js20QHAkJ4Avho1GDHv_hBI9MW5Oeg0m5jMs,22899
|
|
170
189
|
AgentCrew/modules/memory/github_copilot_ef.py,sha256=NGIKG8G602cF1nR9QRHgGUwCToyKcx6Aw5I_YVRX7VI,9522
|
|
171
190
|
AgentCrew/modules/memory/google_genai_ef.py,sha256=8_c9MOR3HNJ-m-KT35eOUGHsN_wswPvjcpRhxFRgE1s,5124
|
|
172
|
-
AgentCrew/modules/memory/tool.py,sha256=
|
|
191
|
+
AgentCrew/modules/memory/tool.py,sha256=ah1UEbqhOlW-AgHOeXyqptC-LYeYWnIj1Ui3r3fhAfo,14495
|
|
173
192
|
AgentCrew/modules/memory/voyageai_ef.py,sha256=X9znUSfT9Ozd-l1Ak9ulBAZzfGu9G9W18V8XKdIytWk,4508
|
|
174
193
|
AgentCrew/modules/openai/__init__.py,sha256=w5Ytp3ckIsrcrkyaQl0OWWTHlulqBT7sYEYhxkYaOmE,141
|
|
175
194
|
AgentCrew/modules/openai/response_service.py,sha256=vXXcBYq_Hc3-2YMMkoszVkYijvtJ2mw_bzKOwElQFNA,25005
|
|
@@ -188,9 +207,9 @@ AgentCrew/modules/voice/text_cleaner.py,sha256=NgAVBPkP2hFI330nJOyMK_oqP3R2AGZ22
|
|
|
188
207
|
AgentCrew/modules/web_search/__init__.py,sha256=sVf_z6nH2JghK46pG92PUtDghPIkceiX1F0Ul30euXU,111
|
|
189
208
|
AgentCrew/modules/web_search/service.py,sha256=DKcOdRSHB5AEvbK8pvTXdffSnk6rFRTzaM1FXf2B70E,4006
|
|
190
209
|
AgentCrew/modules/web_search/tool.py,sha256=GV4xleVFs0UwiPS9toSzPzZei3ehsDZWxTQCJCRaEs8,6655
|
|
191
|
-
agentcrew_ai-0.
|
|
192
|
-
agentcrew_ai-0.
|
|
193
|
-
agentcrew_ai-0.
|
|
194
|
-
agentcrew_ai-0.
|
|
195
|
-
agentcrew_ai-0.
|
|
196
|
-
agentcrew_ai-0.
|
|
210
|
+
agentcrew_ai-0.9.0.dist-info/licenses/LICENSE,sha256=O51CIaOUcxVLNf0_PE_a8ap5bf3iXe4SrWN_5NO1PSU,11348
|
|
211
|
+
agentcrew_ai-0.9.0.dist-info/METADATA,sha256=yMJa-mexJcTVbykLZMs2EmegSPvztYExnBi5iOOSeao,18025
|
|
212
|
+
agentcrew_ai-0.9.0.dist-info/WHEEL,sha256=wUyA8OaulRlbfwMtmQsvNngGrxQHAvkKcvRmdizlJi0,92
|
|
213
|
+
agentcrew_ai-0.9.0.dist-info/entry_points.txt,sha256=N9R5jslrBYA8dTaNMRJ_JdSosJ6jkpGEtnJFzlcZD6k,54
|
|
214
|
+
agentcrew_ai-0.9.0.dist-info/top_level.txt,sha256=bSsmhCOn6g-JytoVMpxB_QAnCgb7lV56fcnxUhbfrvg,10
|
|
215
|
+
agentcrew_ai-0.9.0.dist-info/RECORD,,
|