agentcrew-ai 0.8.13__py3-none-any.whl → 0.9.1__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 +46 -634
- AgentCrew/main_docker.py +1 -30
- AgentCrew/modules/a2a/common/client/card_resolver.py +27 -8
- AgentCrew/modules/a2a/server.py +5 -0
- AgentCrew/modules/a2a/task_manager.py +1 -0
- AgentCrew/modules/agents/local_agent.py +2 -2
- AgentCrew/modules/chat/message/command_processor.py +33 -8
- AgentCrew/modules/chat/message/conversation.py +18 -1
- AgentCrew/modules/chat/message/handler.py +5 -1
- AgentCrew/modules/code_analysis/service.py +50 -7
- AgentCrew/modules/code_analysis/tool.py +9 -8
- AgentCrew/modules/console/completers.py +5 -1
- AgentCrew/modules/console/console_ui.py +23 -11
- 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.py → conversation_browser/browser_ui.py} +249 -163
- AgentCrew/modules/console/conversation_handler.py +34 -1
- AgentCrew/modules/console/display_handlers.py +127 -7
- AgentCrew/modules/console/visual_mode/__init__.py +5 -0
- AgentCrew/modules/console/visual_mode/viewer.py +41 -0
- AgentCrew/modules/console/visual_mode/viewer_input_handler.py +315 -0
- AgentCrew/modules/console/visual_mode/viewer_ui.py +608 -0
- AgentCrew/modules/gui/components/command_handler.py +137 -29
- AgentCrew/modules/gui/components/menu_components.py +8 -7
- 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 +78 -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 +4 -4
- AgentCrew/modules/gui/widgets/history_sidebar.py +6 -1
- AgentCrew/modules/llm/constants.py +28 -9
- AgentCrew/modules/mcpclient/service.py +0 -1
- AgentCrew/modules/memory/base_service.py +13 -0
- AgentCrew/modules/memory/chroma_service.py +50 -0
- AgentCrew/setup.py +470 -0
- {agentcrew_ai-0.8.13.dist-info → agentcrew_ai-0.9.1.dist-info}/METADATA +1 -1
- {agentcrew_ai-0.8.13.dist-info → agentcrew_ai-0.9.1.dist-info}/RECORD +49 -40
- {agentcrew_ai-0.8.13.dist-info → agentcrew_ai-0.9.1.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.13.dist-info → agentcrew_ai-0.9.1.dist-info}/entry_points.txt +0 -0
- {agentcrew_ai-0.8.13.dist-info → agentcrew_ai-0.9.1.dist-info}/licenses/LICENSE +0 -0
- {agentcrew_ai-0.8.13.dist-info → agentcrew_ai-0.9.1.dist-info}/top_level.txt +0 -0
|
@@ -1,7 +1,8 @@
|
|
|
1
|
-
AgentCrew/__init__.py,sha256=
|
|
2
|
-
AgentCrew/app.py,sha256=
|
|
1
|
+
AgentCrew/__init__.py,sha256=UwJXM8JY2T3tE2id0K2k_lEaVThbRTrGO1mNibyzIz8,22
|
|
2
|
+
AgentCrew/app.py,sha256=5FZAWfsv5LJ0OY0ZIy-TYJ-pZ1d3pd5Boh_QaDKPT0A,14523
|
|
3
3
|
AgentCrew/main.py,sha256=nmoYDobbUe1le_z1_7s2rfrgm6N56nxuPHnsOFDu-dg,12767
|
|
4
|
-
AgentCrew/main_docker.py,sha256=
|
|
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
|
|
@@ -9,11 +10,11 @@ AgentCrew/modules/a2a/adapters.py,sha256=GOTZVstQOhMus1QWcqVQZXEmPovfhxRrJ9loUty
|
|
|
9
10
|
AgentCrew/modules/a2a/agent_cards.py,sha256=SWmo3jVNSrPUqpL8Tv6T3h1a-0oXrOgqJrbPy7tz5XQ,4098
|
|
10
11
|
AgentCrew/modules/a2a/errors.py,sha256=Yaw7Ew5LYDvrYgKZ34heBnEqlIXFF3_5GqqpNhNlveI,2353
|
|
11
12
|
AgentCrew/modules/a2a/registry.py,sha256=Qrf8jSZSNc-VWnSsbci0PLRqD00ViE3hCT4VAZDIhZA,2667
|
|
12
|
-
AgentCrew/modules/a2a/server.py,sha256=
|
|
13
|
-
AgentCrew/modules/a2a/task_manager.py,sha256=
|
|
13
|
+
AgentCrew/modules/a2a/server.py,sha256=vtgCN6IKREyrBIUmkMMrdZKbDXMAWZU6BF0OZ-LlgfI,12558
|
|
14
|
+
AgentCrew/modules/a2a/task_manager.py,sha256=iLngQNcpIprx-eexK7MTjx_Yptt0vDjMOsQMqKUw1dg,31075
|
|
14
15
|
AgentCrew/modules/a2a/common/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
15
16
|
AgentCrew/modules/a2a/common/client/__init__.py,sha256=PoBTKucH8G2onta-vHT4qUJcBYa3TIabGqCO5GVVyT0,118
|
|
16
|
-
AgentCrew/modules/a2a/common/client/card_resolver.py,sha256=
|
|
17
|
+
AgentCrew/modules/a2a/common/client/card_resolver.py,sha256=R3suCn4gzQk7D6Ohlcq0sgkcfgYWvg_d-ZUqWf7KTuA,1283
|
|
17
18
|
AgentCrew/modules/a2a/common/client/client.py,sha256=8-iXlLETeOiT16aUMwzW7SndaV4HiPg6TdU9XBq90rc,4963
|
|
18
19
|
AgentCrew/modules/a2a/common/server/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
19
20
|
AgentCrew/modules/a2a/common/server/auth_middleware.py,sha256=zW4Y87P8jAcfY7HUaJSq4yFuReD31NuaY1D3mYL63Sc,2553
|
|
@@ -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,9 +56,9 @@ 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/conversation.py,sha256=
|
|
60
|
-
AgentCrew/modules/chat/message/handler.py,sha256=
|
|
59
|
+
AgentCrew/modules/chat/message/command_processor.py,sha256=W6LSyCDd-jlPDCVkarf1mDD20Nb95ErQRMfXpVeizPw,34527
|
|
60
|
+
AgentCrew/modules/chat/message/conversation.py,sha256=SjQQoVbgBSUo5YG35SSunMlcskSsT7Jymt2xQy2GyOg,11529
|
|
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
|
|
@@ -65,8 +66,8 @@ AgentCrew/modules/clipboard/tool.py,sha256=RMu6Cr5wP79SvfOqojAbu6g1WxBw6EUS4Mdfd
|
|
|
65
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/tool.py,sha256=
|
|
69
|
+
AgentCrew/modules/code_analysis/service.py,sha256=uKmNwk-0XSuXA2QXAkJ67bKImt5qG0eMBhPl_DlcsVE,32732
|
|
70
|
+
AgentCrew/modules/code_analysis/tool.py,sha256=YxNjIqKlYlcqngvRJQiXZwYwMG1-o72I8hHgBS_fUZk,21516
|
|
70
71
|
AgentCrew/modules/code_analysis/parsers/__init__.py,sha256=zuKHS8-0ksiU1LZNmZf5hCJYSGbOTITqQQ_DepdCy_I,1635
|
|
71
72
|
AgentCrew/modules/code_analysis/parsers/base.py,sha256=WSDTlVgJYmD-7nUBlGB9c8TJ1_fhz5XyGQ9TZ0ilHug,3067
|
|
72
73
|
AgentCrew/modules/code_analysis/parsers/cpp_parser.py,sha256=L06LUNFtG90q6AjG29QPucDp-ErMTj4iuv0botcTQnM,4663
|
|
@@ -89,18 +90,25 @@ AgentCrew/modules/config/__init__.py,sha256=ehO0aAkK98f9BmMjG9uR15Hc9Lwj9CnJZl24
|
|
|
89
90
|
AgentCrew/modules/config/config_management.py,sha256=YhbkecLVxPz-1XM2S_q026qJjTnV7pDciefYnrlBw10,33827
|
|
90
91
|
AgentCrew/modules/console/__init__.py,sha256=nO53lUaMEAshdIqDEmgNZ_r35jyg6CuMa7Tsj55Y09g,66
|
|
91
92
|
AgentCrew/modules/console/command_handlers.py,sha256=eleobLeNjnkzB_ZcvFq9gXWLs0wMqleVOJgaICo3YBI,16533
|
|
92
|
-
AgentCrew/modules/console/completers.py,sha256=
|
|
93
|
+
AgentCrew/modules/console/completers.py,sha256=U_p5CU5wsbuZ9K4WpoJK9M_q1L8PDekzdLlMCc1Ax7o,17809
|
|
93
94
|
AgentCrew/modules/console/confirmation_handler.py,sha256=Jlr5ugGmiAIOIoP-Ref-WwYpu-YMhMjBc4xi9wdGTQ4,10232
|
|
94
|
-
AgentCrew/modules/console/console_ui.py,sha256=
|
|
95
|
+
AgentCrew/modules/console/console_ui.py,sha256=RXLHY6J8mlcpmB0pRHM-3TwQFCuinr2xWniFJ69_X-8,31514
|
|
95
96
|
AgentCrew/modules/console/constants.py,sha256=fwLj52O96_t6m1qb0SOiaotM2dMLwXH83KAERm9ltLA,704
|
|
96
|
-
AgentCrew/modules/console/
|
|
97
|
-
AgentCrew/modules/console/conversation_handler.py,sha256=vVtGxQJ4sEZJ77svBFJMIGiWiEfE47yDxvt7gZ9bRCA,3632
|
|
97
|
+
AgentCrew/modules/console/conversation_handler.py,sha256=ei_QGmATDf1Opkw5J1i6HQj9SOZXIO1CdPObAOxJvws,4741
|
|
98
98
|
AgentCrew/modules/console/diff_display.py,sha256=5Oom4wIE9vifZDvTRqstV7NAbi3JkDx_-g6bAzRCiZQ,6456
|
|
99
|
-
AgentCrew/modules/console/display_handlers.py,sha256=
|
|
99
|
+
AgentCrew/modules/console/display_handlers.py,sha256=zVgdm4XoEe-mqxHUoVnps67M7nKqmLjc3oJbU7HzOsw,21820
|
|
100
100
|
AgentCrew/modules/console/input_handler.py,sha256=Nn8H0RZiuF2asw8uum5n1otGOEb19U-_SMxVCTx3QTQ,18208
|
|
101
101
|
AgentCrew/modules/console/tool_display.py,sha256=WPxexDO-B1vvPAsBJdX54N1SLM-D5nEhchGRLUQvNeE,7294
|
|
102
102
|
AgentCrew/modules/console/ui_effects.py,sha256=Q3K6EodtNhIyQ_ri_rXsd4jXNn0SVw0KCla3p5Momf8,8198
|
|
103
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
|
|
108
|
+
AgentCrew/modules/console/visual_mode/__init__.py,sha256=KQFYBJhE4peiltElvilNaJFu8hBFuFVkMqNm4Myjc9Y,128
|
|
109
|
+
AgentCrew/modules/console/visual_mode/viewer.py,sha256=9Ovcc-GoYu8Mw-vvyqJ8RdhwXAfNX1Yp1NBs1DwgXAU,1131
|
|
110
|
+
AgentCrew/modules/console/visual_mode/viewer_input_handler.py,sha256=Q_dFiJyrBqtgw0mxIclnQuUjQiXd2dDfwlvgmMsYfMY,9210
|
|
111
|
+
AgentCrew/modules/console/visual_mode/viewer_ui.py,sha256=-wiKWUqZLAvWrAcrPqTgX-XFeAgFDGqKjGcbseHkjG0,22383
|
|
104
112
|
AgentCrew/modules/custom_llm/__init__.py,sha256=NvgE3c6rYd52SmRITqGeHqaGOnHrK9vU8RBqD9_6Mdo,337
|
|
105
113
|
AgentCrew/modules/custom_llm/copilot_response_service.py,sha256=tySzxnLMzMt3WjwhvBegtDP7Qk43D2Wc5bxZAi0Z3sA,4605
|
|
106
114
|
AgentCrew/modules/custom_llm/deepinfra_service.py,sha256=uY7f-lg-hnR7A1ZYwKSE10c4WlJ9C693eBiZxLV6jlw,7553
|
|
@@ -122,24 +130,25 @@ AgentCrew/modules/gui/qt_ui.py,sha256=hKQwOFat2xOw1p3cGLDqSjKw7lpNX3oDKOo67_XJdU
|
|
|
122
130
|
AgentCrew/modules/gui/worker.py,sha256=XFRXCYnRz27_zZ7VwinoP6xqJY7I56Jc-eTxxou2Ckk,3018
|
|
123
131
|
AgentCrew/modules/gui/components/__init__.py,sha256=rNS0MItVDvnlQTr_OoFc4via2b0gc2b4EAVPzemH2B4,647
|
|
124
132
|
AgentCrew/modules/gui/components/chat_components.py,sha256=8E8qxpxIakjdDqir16vhExKc2i6aBd8XN74B8h60zGQ,13948
|
|
125
|
-
AgentCrew/modules/gui/components/command_handler.py,sha256=
|
|
133
|
+
AgentCrew/modules/gui/components/command_handler.py,sha256=ZZxs-_rMj_Nk8P_S7IIQDjLkwQmJsnG7mIA27XSEIq4,14183
|
|
126
134
|
AgentCrew/modules/gui/components/completers.py,sha256=1_0EGJHXXGKwZxNHcWc8xOvn5uxBauteoS2fgxLCa6Q,5734
|
|
127
135
|
AgentCrew/modules/gui/components/conversation_components.py,sha256=4-SbJt4ytzC56L-sEYCwfs9mo1rNiiUv5XRP9E5lZk8,8328
|
|
128
136
|
AgentCrew/modules/gui/components/input_components.py,sha256=IYKigulYCNJ6Et5rLCEXNIZqSQUesTg1BgPCP_UFurY,13683
|
|
129
137
|
AgentCrew/modules/gui/components/keyboard_handler.py,sha256=uNBvaOOIcBHaqstA4JbTrkDEmlh0r6Y6_gRG9gD1WCw,5770
|
|
130
|
-
AgentCrew/modules/gui/components/menu_components.py,sha256=
|
|
138
|
+
AgentCrew/modules/gui/components/menu_components.py,sha256=IQOZhT6b5t207N9V7Z6CViuRIyTRWpSkJwXJeHvJ2bI,5361
|
|
131
139
|
AgentCrew/modules/gui/components/message_handlers.py,sha256=CluNFGNXjWbJFf6RhAlqgmA9o_gcJRXLEG7FIQW07W0,5391
|
|
132
140
|
AgentCrew/modules/gui/components/tool_handlers.py,sha256=3YtdI1aemXrg0_VKb5QvL3drVy2Bc-dIFNEbcIxEQOU,21951
|
|
133
141
|
AgentCrew/modules/gui/components/ui_state_manager.py,sha256=w_gmdykpFbZE84lgA1I_ordqky_QpPUOf39ni26KEfw,5131
|
|
134
|
-
AgentCrew/modules/gui/themes/README.md,sha256=
|
|
135
|
-
AgentCrew/modules/gui/themes/__init__.py,sha256=
|
|
136
|
-
AgentCrew/modules/gui/themes/atom_light.
|
|
137
|
-
AgentCrew/modules/gui/themes/catppuccin.
|
|
138
|
-
AgentCrew/modules/gui/themes/dracula.
|
|
139
|
-
AgentCrew/modules/gui/themes/nord.
|
|
140
|
-
AgentCrew/modules/gui/themes/saigontech.
|
|
141
|
-
AgentCrew/modules/gui/themes/style_provider.py,sha256=
|
|
142
|
-
AgentCrew/modules/gui/themes/
|
|
142
|
+
AgentCrew/modules/gui/themes/README.md,sha256=kzik8Jcdb4j4tlmGzWY576BiQZmkbtzrj5wr_6RQhbA,4740
|
|
143
|
+
AgentCrew/modules/gui/themes/__init__.py,sha256=DmbNPpozH-l4JhXDq3FYNATa_tn4BszGmc6u_93RW_s,148
|
|
144
|
+
AgentCrew/modules/gui/themes/atom_light.yaml,sha256=Fl4f6DcARIPvxL0gZWhQE2DLho61DZjJsTrMGTb_lIM,31863
|
|
145
|
+
AgentCrew/modules/gui/themes/catppuccin.yaml,sha256=GI6A4T9qju_jn_pgk7IDnlZbUL2vnnyxC6JXuSLQY5s,31135
|
|
146
|
+
AgentCrew/modules/gui/themes/dracula.yaml,sha256=edvjrXbs3iDB4pcI-oK24AnMghzQ3cjzQWBp018yjIk,31523
|
|
147
|
+
AgentCrew/modules/gui/themes/nord.yaml,sha256=U5gPX9ksR3p_M4Rj9jh1UBwkdKrNfV85xlQgWYBPJTQ,33146
|
|
148
|
+
AgentCrew/modules/gui/themes/saigontech.yaml,sha256=ZTUkO50X7NugrDxFYmLW3SfpZ-HVbdCebLls1LfhVIw,32718
|
|
149
|
+
AgentCrew/modules/gui/themes/style_provider.py,sha256=I35QuGRZYIWxCctoZ8doEJZX2Jz27kr04X2i2LlANio,7486
|
|
150
|
+
AgentCrew/modules/gui/themes/theme_loader.py,sha256=q8bUlLbaYWWZY595z3FuuDOv3_TNn4M9Nr0LAo071eE,10216
|
|
151
|
+
AgentCrew/modules/gui/themes/unicorn.yaml,sha256=Y9TxUWCTMlJnGaqE0A3aHQvDWxhhEI7VKMn1WNWgoTk,32216
|
|
143
152
|
AgentCrew/modules/gui/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
144
153
|
AgentCrew/modules/gui/utils/macos_clipboard.py,sha256=VV0QP2_lWyaL8CB_9dGZuajpON5i12wiDeh6Nbci1pA,510
|
|
145
154
|
AgentCrew/modules/gui/utils/strings.py,sha256=zSnec-CHz8JF3H6BgPGjfDr10NilRumorlwh-tuvUBs,540
|
|
@@ -147,7 +156,7 @@ AgentCrew/modules/gui/utils/wins_clipboard.py,sha256=8LXKje-WzR3Iubu8c_37s-j8DP_
|
|
|
147
156
|
AgentCrew/modules/gui/widgets/__init__.py,sha256=Rc6P_K8d9Dw6H3AGAwnmkuhIxEu5ulht3w7VYJK-cds,493
|
|
148
157
|
AgentCrew/modules/gui/widgets/config_window.py,sha256=QxwnT7N6C0Jm8OOJ4WJE71j7tqDH0kTJVCCGnzR4SZw,3099
|
|
149
158
|
AgentCrew/modules/gui/widgets/diff_widget.py,sha256=EZiz9K-Pski9dH4LdkozBnEt-TZSacepUovaaKmLe5k,17812
|
|
150
|
-
AgentCrew/modules/gui/widgets/history_sidebar.py,sha256=
|
|
159
|
+
AgentCrew/modules/gui/widgets/history_sidebar.py,sha256=fqgMTQZivfII3aVIAhRL_0AaCGtRnkOsHyMaWfecSR4,10735
|
|
151
160
|
AgentCrew/modules/gui/widgets/json_editor.py,sha256=lV-Me8TUJzIkF-tbiRiFSdRGDbxv9bBKDdSSLwof7oU,6211
|
|
152
161
|
AgentCrew/modules/gui/widgets/loading_overlay.py,sha256=jCfHDDJ5YudfwU15s61l3zQVeWoRhI38WvaTylysR9g,3630
|
|
153
162
|
AgentCrew/modules/gui/widgets/markdown_editor.py,sha256=53nUFXU5jH4HEv5StHoI5onfQDvyCCAlH6OIvYZFVyk,10121
|
|
@@ -159,7 +168,7 @@ AgentCrew/modules/gui/widgets/tool_widget.py,sha256=h9-Pbn_dQ3Oebog-IJ8JcY7MqSdu
|
|
|
159
168
|
AgentCrew/modules/gui/widgets/configs/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
160
169
|
AgentCrew/modules/gui/widgets/configs/agent_config.py,sha256=IRU-s6YsLJiPoi0buDiSL4CRFz1-k0VAmL9DLJh7jT0,52234
|
|
161
170
|
AgentCrew/modules/gui/widgets/configs/custom_llm_provider.py,sha256=TY3AJUl46vlpy9s4OzxdpFr_zsWCJTyM6roz9GBaUCs,35068
|
|
162
|
-
AgentCrew/modules/gui/widgets/configs/global_settings.py,sha256=
|
|
171
|
+
AgentCrew/modules/gui/widgets/configs/global_settings.py,sha256=DkewZY3YzXOeirWAqFbjfVvBXWiW4xR6Xl3mDKGLcxc,10446
|
|
163
172
|
AgentCrew/modules/gui/widgets/configs/mcp_config.py,sha256=RvUdMKyO3QoGuCD6StMe_3vP0bA4KshltSMYSyQAfJY,35811
|
|
164
173
|
AgentCrew/modules/gui/widgets/configs/save_worker.py,sha256=9ZdZa3dk2YLGJMJf6i6FuCRXQbZWuH9fciNXMRBvvgA,708
|
|
165
174
|
AgentCrew/modules/image_generation/__init__.py,sha256=IwJLpqNberxd9pRlTv1daXozZGpyu1RlVkGsPGnSj2w,82
|
|
@@ -167,7 +176,7 @@ AgentCrew/modules/image_generation/service.py,sha256=OEuVaVd4ecKSdZn-WGMmqyZtqDw
|
|
|
167
176
|
AgentCrew/modules/image_generation/tool.py,sha256=TCe6tOvvCXj5LvjMtmxH1AQ5s2FWHDA79ix43hdzGZs,6087
|
|
168
177
|
AgentCrew/modules/llm/__init__.py,sha256=dMlHRa09bbPEVZnGXm62TcHmbvQzdBqmRIxstlrls8k,63
|
|
169
178
|
AgentCrew/modules/llm/base.py,sha256=S2Tzg4LXQv69MVjNScWbpid3cM20QCgW0KHQqvghjeI,11511
|
|
170
|
-
AgentCrew/modules/llm/constants.py,sha256=
|
|
179
|
+
AgentCrew/modules/llm/constants.py,sha256=h_yPwRDnxdzVshAVfl7leYBiDQAkCVN1CGDYCmIYXvI,23328
|
|
171
180
|
AgentCrew/modules/llm/model_registry.py,sha256=7gJqn-YoentH2Xx0AlF5goyxQDlEBMFWak2poafjhyI,5510
|
|
172
181
|
AgentCrew/modules/llm/service_manager.py,sha256=oXSjcAbrfcGLdBcm_ylnSWIp87Ecl96yZ8efkWFb4Gw,10669
|
|
173
182
|
AgentCrew/modules/llm/types.py,sha256=Bkr1OIRJJ5neUiSCMUJco8SwerrycPh5Xg1kVDpO0os,949
|
|
@@ -175,11 +184,11 @@ AgentCrew/modules/mcpclient/__init__.py,sha256=Gd1y0YVgET37kQVo2HFfNzYRt_GnqCnQH
|
|
|
175
184
|
AgentCrew/modules/mcpclient/auth.py,sha256=jxndVHc7oI_LaI0ckifFBLfpl_eJJBxu_UPC4OrGld0,15348
|
|
176
185
|
AgentCrew/modules/mcpclient/config.py,sha256=9_Awetmzw2BO-0BAqZtPw35gDMpnVTVEs3wTesWMIPk,3193
|
|
177
186
|
AgentCrew/modules/mcpclient/manager.py,sha256=mjdlr_cMXwjXsFOhMwHSF_K833hLXXCcvkTGOpe1YMI,7259
|
|
178
|
-
AgentCrew/modules/mcpclient/service.py,sha256=
|
|
187
|
+
AgentCrew/modules/mcpclient/service.py,sha256=lWsprHNSMCsAxpZBOXrA92VGsf8LUs7n3bm8vWsY4M4,38223
|
|
179
188
|
AgentCrew/modules/mcpclient/tool.py,sha256=6VrwvZOvyVzvfsMYGvrHl8DmLzbjhLQ3q2KmtpbQE-I,805
|
|
180
189
|
AgentCrew/modules/memory/__init__.py,sha256=1tdK0sybmY2c6y_rWFs2eF0Zy7vcEbGlwtIoF8BF0K4,251
|
|
181
|
-
AgentCrew/modules/memory/base_service.py,sha256=
|
|
182
|
-
AgentCrew/modules/memory/chroma_service.py,sha256=
|
|
190
|
+
AgentCrew/modules/memory/base_service.py,sha256=L_Ve5e_KTHQEB69RuNFeT60Jz0OnMWiKbn9jW25epGA,4541
|
|
191
|
+
AgentCrew/modules/memory/chroma_service.py,sha256=7Wv84tJKhaE59l7tTMnywBzJkZ6L1lVhM4HpM7YqVcE,26994
|
|
183
192
|
AgentCrew/modules/memory/context_persistent.py,sha256=fHNiqH2Js20QHAkJ4Avho1GDHv_hBI9MW5Oeg0m5jMs,22899
|
|
184
193
|
AgentCrew/modules/memory/github_copilot_ef.py,sha256=NGIKG8G602cF1nR9QRHgGUwCToyKcx6Aw5I_YVRX7VI,9522
|
|
185
194
|
AgentCrew/modules/memory/google_genai_ef.py,sha256=8_c9MOR3HNJ-m-KT35eOUGHsN_wswPvjcpRhxFRgE1s,5124
|
|
@@ -202,9 +211,9 @@ AgentCrew/modules/voice/text_cleaner.py,sha256=NgAVBPkP2hFI330nJOyMK_oqP3R2AGZ22
|
|
|
202
211
|
AgentCrew/modules/web_search/__init__.py,sha256=sVf_z6nH2JghK46pG92PUtDghPIkceiX1F0Ul30euXU,111
|
|
203
212
|
AgentCrew/modules/web_search/service.py,sha256=DKcOdRSHB5AEvbK8pvTXdffSnk6rFRTzaM1FXf2B70E,4006
|
|
204
213
|
AgentCrew/modules/web_search/tool.py,sha256=GV4xleVFs0UwiPS9toSzPzZei3ehsDZWxTQCJCRaEs8,6655
|
|
205
|
-
agentcrew_ai-0.
|
|
206
|
-
agentcrew_ai-0.
|
|
207
|
-
agentcrew_ai-0.
|
|
208
|
-
agentcrew_ai-0.
|
|
209
|
-
agentcrew_ai-0.
|
|
210
|
-
agentcrew_ai-0.
|
|
214
|
+
agentcrew_ai-0.9.1.dist-info/licenses/LICENSE,sha256=O51CIaOUcxVLNf0_PE_a8ap5bf3iXe4SrWN_5NO1PSU,11348
|
|
215
|
+
agentcrew_ai-0.9.1.dist-info/METADATA,sha256=yVLV_j1kfYKEhOWUXQKNgclhFVgyMY2cnmpgpmJn1qQ,18025
|
|
216
|
+
agentcrew_ai-0.9.1.dist-info/WHEEL,sha256=wUyA8OaulRlbfwMtmQsvNngGrxQHAvkKcvRmdizlJi0,92
|
|
217
|
+
agentcrew_ai-0.9.1.dist-info/entry_points.txt,sha256=N9R5jslrBYA8dTaNMRJ_JdSosJ6jkpGEtnJFzlcZD6k,54
|
|
218
|
+
agentcrew_ai-0.9.1.dist-info/top_level.txt,sha256=bSsmhCOn6g-JytoVMpxB_QAnCgb7lV56fcnxUhbfrvg,10
|
|
219
|
+
agentcrew_ai-0.9.1.dist-info/RECORD,,
|