agentcrew-ai 0.8.12__py3-none-any.whl → 0.8.13__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 (38) hide show
  1. AgentCrew/__init__.py +1 -1
  2. AgentCrew/main.py +55 -3
  3. AgentCrew/modules/agents/local_agent.py +25 -0
  4. AgentCrew/modules/code_analysis/__init__.py +8 -0
  5. AgentCrew/modules/code_analysis/parsers/__init__.py +67 -0
  6. AgentCrew/modules/code_analysis/parsers/base.py +93 -0
  7. AgentCrew/modules/code_analysis/parsers/cpp_parser.py +127 -0
  8. AgentCrew/modules/code_analysis/parsers/csharp_parser.py +162 -0
  9. AgentCrew/modules/code_analysis/parsers/generic_parser.py +63 -0
  10. AgentCrew/modules/code_analysis/parsers/go_parser.py +154 -0
  11. AgentCrew/modules/code_analysis/parsers/java_parser.py +103 -0
  12. AgentCrew/modules/code_analysis/parsers/javascript_parser.py +268 -0
  13. AgentCrew/modules/code_analysis/parsers/kotlin_parser.py +84 -0
  14. AgentCrew/modules/code_analysis/parsers/php_parser.py +107 -0
  15. AgentCrew/modules/code_analysis/parsers/python_parser.py +60 -0
  16. AgentCrew/modules/code_analysis/parsers/ruby_parser.py +46 -0
  17. AgentCrew/modules/code_analysis/parsers/rust_parser.py +72 -0
  18. AgentCrew/modules/code_analysis/service.py +231 -897
  19. AgentCrew/modules/command_execution/constants.py +2 -2
  20. AgentCrew/modules/console/confirmation_handler.py +4 -4
  21. AgentCrew/modules/console/console_ui.py +20 -1
  22. AgentCrew/modules/console/conversation_browser.py +557 -0
  23. AgentCrew/modules/console/diff_display.py +22 -51
  24. AgentCrew/modules/console/display_handlers.py +22 -22
  25. AgentCrew/modules/console/tool_display.py +4 -6
  26. AgentCrew/modules/file_editing/service.py +8 -8
  27. AgentCrew/modules/file_editing/tool.py +65 -67
  28. AgentCrew/modules/gui/components/tool_handlers.py +0 -2
  29. AgentCrew/modules/gui/widgets/diff_widget.py +30 -61
  30. AgentCrew/modules/llm/constants.py +5 -5
  31. AgentCrew/modules/memory/context_persistent.py +1 -0
  32. AgentCrew/modules/memory/tool.py +1 -1
  33. {agentcrew_ai-0.8.12.dist-info → agentcrew_ai-0.8.13.dist-info}/METADATA +1 -1
  34. {agentcrew_ai-0.8.12.dist-info → agentcrew_ai-0.8.13.dist-info}/RECORD +38 -24
  35. {agentcrew_ai-0.8.12.dist-info → agentcrew_ai-0.8.13.dist-info}/WHEEL +1 -1
  36. {agentcrew_ai-0.8.12.dist-info → agentcrew_ai-0.8.13.dist-info}/entry_points.txt +0 -0
  37. {agentcrew_ai-0.8.12.dist-info → agentcrew_ai-0.8.13.dist-info}/licenses/LICENSE +0 -0
  38. {agentcrew_ai-0.8.12.dist-info → agentcrew_ai-0.8.13.dist-info}/top_level.txt +0 -0
@@ -1,6 +1,6 @@
1
- AgentCrew/__init__.py,sha256=LDUiKjJEsTZNsOccT1sJJGxKe0A8qA7uVCUpfMMY1do,23
1
+ AgentCrew/__init__.py,sha256=kDOn-ACZI6nUbeIQt_tqkojo-ZuhxONOkNGTXBToJbs,23
2
2
  AgentCrew/app.py,sha256=StwTvI0lJkYH3n8AZejwVaH1jjV8PFkBaAXlXGD-w3s,37702
3
- AgentCrew/main.py,sha256=qskWWuw1Zc8P0rM1OnX8fwBNkKpbzkdLfbDVLgwcCbg,11066
3
+ AgentCrew/main.py,sha256=nmoYDobbUe1le_z1_7s2rfrgm6N56nxuPHnsOFDu-dg,12767
4
4
  AgentCrew/main_docker.py,sha256=a16vjCOcRRNb0BC13cy7MMd-7adyFqTE41_DLkRrmg8,6182
5
5
  AgentCrew/assets/agentcrew_logo.png,sha256=bA4WQ9QrZXxBd_GfbR2s5GWBRrRodzeDynQj7XHIPNw,944381
6
6
  AgentCrew/modules/__init__.py,sha256=XFPEOINvFcwT5wToPt3lm4wst-XiBNjeAIK3s5QfV3Q,1191
@@ -22,7 +22,7 @@ AgentCrew/modules/a2a/common/server/utils.py,sha256=pmIBG5cyzaVNXbyESLux2AcogwPa
22
22
  AgentCrew/modules/agents/__init__.py,sha256=rMwchcGZzapLLZdUQUaJtCLowHoG-dOn8_VljKz8NrI,165
23
23
  AgentCrew/modules/agents/base.py,sha256=i7w0X7mcTRWwgyQwqN-iOIniLce9cSM2wGG3njlZpHk,2641
24
24
  AgentCrew/modules/agents/example.py,sha256=_-Nd7EKHprKXZLN9_ava0b9vR7wGyUzsXSEV7_js7Ho,6894
25
- AgentCrew/modules/agents/local_agent.py,sha256=4KlBR6lXWKI3xSFjLJsHSgKTY5NbDZWuTReZuzxVqfo,32491
25
+ AgentCrew/modules/agents/local_agent.py,sha256=o8BifLUaO0ygxU-MiBMxFITuWd98WMw-WUN6YVI4C1o,33394
26
26
  AgentCrew/modules/agents/manager.py,sha256=PCOymk-WS4xYi_OL2lZoHCzORTyG2C8NbIWhzzAmiRs,25171
27
27
  AgentCrew/modules/agents/remote_agent.py,sha256=bBgO8E3dXZuu9ofklXLfL5-8mxF_XZOLyqj6rrwTXR8,6432
28
28
  AgentCrew/modules/agents/tools/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -62,13 +62,26 @@ AgentCrew/modules/chat/message/tool_manager.py,sha256=6E4psoIH9FFsthucG9t-luSVbN
62
62
  AgentCrew/modules/clipboard/__init__.py,sha256=Xb0wwQ-9dwwLT3R3TYB87pwtDTNX5HAzhkr8iuR6mBc,77
63
63
  AgentCrew/modules/clipboard/service.py,sha256=FCo3zSJH0zDdvW73u4D_ty9fTMsXmOeVsAIOfyJ54Ws,6246
64
64
  AgentCrew/modules/clipboard/tool.py,sha256=RMu6Cr5wP79SvfOqojAbu6g1WxBw6EUS4Mdfdr9VEuY,5474
65
- AgentCrew/modules/code_analysis/__init__.py,sha256=0cpUkB1oFCWtCiTxtYvXiU2OnB_BC42iCbHhv6aVa5g,244
65
+ AgentCrew/modules/code_analysis/__init__.py,sha256=-JFx3n7LOtxIcBuHudc7dMG7miecl-BP4w6BTqyHm2U,431
66
66
  AgentCrew/modules/code_analysis/file_search_service.py,sha256=Bsa3Ev1nvXs1HaUhLV5f5krsaJFXOJ257CgvLbxLrY0,20164
67
67
  AgentCrew/modules/code_analysis/grep_service.py,sha256=vW26x2tIJDwKyoNLrhjwPPdOOE7HhKOfyJGmENqwtR8,23284
68
- AgentCrew/modules/code_analysis/service.py,sha256=POwRybqk6JlWrIAphxCCaJOVc2QyPB0YrJDimcKuPT8,69607
68
+ AgentCrew/modules/code_analysis/service.py,sha256=u5PwT50HokRDFrTc5L8zd9y_uvADRNUTjhsih3tkoPU,31076
69
69
  AgentCrew/modules/code_analysis/tool.py,sha256=ba3NqUyHjJe9TAzG8ImUI2cZKRKtHgdQtWsOUBM5_yA,21203
70
+ AgentCrew/modules/code_analysis/parsers/__init__.py,sha256=zuKHS8-0ksiU1LZNmZf5hCJYSGbOTITqQQ_DepdCy_I,1635
71
+ AgentCrew/modules/code_analysis/parsers/base.py,sha256=WSDTlVgJYmD-7nUBlGB9c8TJ1_fhz5XyGQ9TZ0ilHug,3067
72
+ AgentCrew/modules/code_analysis/parsers/cpp_parser.py,sha256=L06LUNFtG90q6AjG29QPucDp-ErMTj4iuv0botcTQnM,4663
73
+ AgentCrew/modules/code_analysis/parsers/csharp_parser.py,sha256=jppuCiS-f0TUrL1UV5wtxyKoZeLKPSCgI8UVI6CTESw,6010
74
+ AgentCrew/modules/code_analysis/parsers/generic_parser.py,sha256=GIjJJOeTOTY8d3rlVxc0k4WSm4S60qty4xPax-wbWWM,2149
75
+ AgentCrew/modules/code_analysis/parsers/go_parser.py,sha256=MzFX4FbM-uJ1bfyaEujQlOFZzdODXc5JLXCJPMBwZxw,5635
76
+ AgentCrew/modules/code_analysis/parsers/java_parser.py,sha256=e7FMtjhyoADI8uAYC3UP2HlQ-zq2CfFnA3KJLElLhmY,3724
77
+ AgentCrew/modules/code_analysis/parsers/javascript_parser.py,sha256=bDuwmq1vCmS7LvB1NFUtcJQorioDw3N00xDkiyp8kU4,10688
78
+ AgentCrew/modules/code_analysis/parsers/kotlin_parser.py,sha256=SamBs8ECGZurU8rd79jBG7KrbZdz3xqD_xoEN1YLFf4,3221
79
+ AgentCrew/modules/code_analysis/parsers/php_parser.py,sha256=Ix_kmvYuK3_0RGH5_aw5pzUpOBF2gY4N4CChW8FhXik,3589
80
+ AgentCrew/modules/code_analysis/parsers/python_parser.py,sha256=_IhmGHVZ3TdWVJAYwQH0R5h5k_4uBStN5-u9Q35biFk,2073
81
+ AgentCrew/modules/code_analysis/parsers/ruby_parser.py,sha256=cAvh3XOBigJKDYe_gE7mAFWl6C7x__QxPbmjMxOuivo,1448
82
+ AgentCrew/modules/code_analysis/parsers/rust_parser.py,sha256=fyvi9XtXZZZ_53Cu-XOW8v_wc990YZCyaSnWPMEG3Pg,2304
70
83
  AgentCrew/modules/command_execution/__init__.py,sha256=BIy7TSuz6yFaUQ0GEvXZO-ZSlkSwcRxforfIIhHCMTM,380
71
- AgentCrew/modules/command_execution/constants.py,sha256=zG2pwmA3MqBhnJgPrcBgzxzH2sWCbXQ4NyidX8lKQ6I,4693
84
+ AgentCrew/modules/command_execution/constants.py,sha256=8seMg7YoSnS1plw5YgTKhV90jMlbLIHE0edhdLi93jI,4694
72
85
  AgentCrew/modules/command_execution/service.py,sha256=cd0AkBKee_0oj4WezJo_ZICXTJ-kkcMT4J-oPN7aHz0,24814
73
86
  AgentCrew/modules/command_execution/tool.py,sha256=SePfiQvCKhiC_B-KG-5jLswocDIusE5i9r1oWV8a6-M,14146
74
87
  AgentCrew/modules/command_execution/types.py,sha256=kosDGBMF7DFGLdhxYxhOOZHf0URKWejLluUeCCfP5EI,2477
@@ -77,14 +90,15 @@ AgentCrew/modules/config/config_management.py,sha256=YhbkecLVxPz-1XM2S_q026qJjTn
77
90
  AgentCrew/modules/console/__init__.py,sha256=nO53lUaMEAshdIqDEmgNZ_r35jyg6CuMa7Tsj55Y09g,66
78
91
  AgentCrew/modules/console/command_handlers.py,sha256=eleobLeNjnkzB_ZcvFq9gXWLs0wMqleVOJgaICo3YBI,16533
79
92
  AgentCrew/modules/console/completers.py,sha256=WeP5rJvCWq4Ept2_ajK9wjpDiTT4C5blcX5TeV3GSzU,17682
80
- AgentCrew/modules/console/confirmation_handler.py,sha256=sOhJVmrMgiqTlUI6G9xjzseeeWn54G-aOc6WevWcXL8,10221
81
- AgentCrew/modules/console/console_ui.py,sha256=-Inh5_qBGQnyxUQ4N0196qtJgUAaJ5ys3oyL3x1oKac,29921
93
+ AgentCrew/modules/console/confirmation_handler.py,sha256=Jlr5ugGmiAIOIoP-Ref-WwYpu-YMhMjBc4xi9wdGTQ4,10232
94
+ AgentCrew/modules/console/console_ui.py,sha256=9vq4MNKN16EPwRQ-QvxU-xF2cITsV1TZBsdTO9W2xto,30844
82
95
  AgentCrew/modules/console/constants.py,sha256=fwLj52O96_t6m1qb0SOiaotM2dMLwXH83KAERm9ltLA,704
96
+ AgentCrew/modules/console/conversation_browser.py,sha256=p6QIchKjru2XO_XGoTpyFCsDNNlaTeUxZ0CQDenHOws,19918
83
97
  AgentCrew/modules/console/conversation_handler.py,sha256=vVtGxQJ4sEZJ77svBFJMIGiWiEfE47yDxvt7gZ9bRCA,3632
84
- AgentCrew/modules/console/diff_display.py,sha256=HTFy5H0sx6OHN_yjMPUeF8aum7esdgIg9Xd4_gCvPaw,7193
85
- AgentCrew/modules/console/display_handlers.py,sha256=ZSpBZxvX5X9VB2dvAB679KQwPTVhRPHRrmsgCMhANyA,17651
98
+ AgentCrew/modules/console/diff_display.py,sha256=5Oom4wIE9vifZDvTRqstV7NAbi3JkDx_-g6bAzRCiZQ,6456
99
+ AgentCrew/modules/console/display_handlers.py,sha256=xJ1NQZRwAQ8-DfnXythoR-Y96c-jikdy82NUfsjbnnc,17373
86
100
  AgentCrew/modules/console/input_handler.py,sha256=Nn8H0RZiuF2asw8uum5n1otGOEb19U-_SMxVCTx3QTQ,18208
87
- AgentCrew/modules/console/tool_display.py,sha256=Q5VTv1lMqucfzVwuxRGV2tDI36RIqE_EuuwC9MpxEKA,7302
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
90
104
  AgentCrew/modules/custom_llm/__init__.py,sha256=NvgE3c6rYd52SmRITqGeHqaGOnHrK9vU8RBqD9_6Mdo,337
@@ -95,8 +109,8 @@ AgentCrew/modules/custom_llm/service.py,sha256=hBiTdCr1Y7O6y-cHvLYHuwhHfm0jMruQq
95
109
  AgentCrew/modules/file_editing/__init__.py,sha256=Q6oDyP3bHslFpmxHdrCCLVx1M_awaHD2WqFTSEU3VIY,241
96
110
  AgentCrew/modules/file_editing/safety_validator.py,sha256=lLNb_GpIIX2QtN86U2NKbM-b3VYW3b6jNkXL5hKPlok,5575
97
111
  AgentCrew/modules/file_editing/search_replace_engine.py,sha256=i8e18VIvxOwCazjnfrmLp637laDCsJSpZs5YsW9Ic-Y,10751
98
- AgentCrew/modules/file_editing/service.py,sha256=bFpjUJgBO1dxZTidwNptv6o1U2oBg0lB50PHJA8-Jyo,9589
99
- AgentCrew/modules/file_editing/tool.py,sha256=30ZwafSrELFfem2qgUwlkGI9JNMyvVsDMj6Y6qSNvuI,6097
112
+ AgentCrew/modules/file_editing/service.py,sha256=6llNk-phMG7wGD7lAwUkkNk_I7KyKaWca59JXjxtV6U,9613
113
+ AgentCrew/modules/file_editing/tool.py,sha256=OCaPZxc7yUNtwBRaJvFq7TB1YMNj1rX-U25MRJ2m-ok,6554
100
114
  AgentCrew/modules/file_editing/tree_sitter_checker.py,sha256=BWF1KBGvVFBAwxDLStbaL3Zq8P-6mRyPKF5qRnOvUZY,5603
101
115
  AgentCrew/modules/google/__init__.py,sha256=gJoUxCrHb0QJ0S-HWxXJVfDUhgdaoiJ-eYMSzDndur4,143
102
116
  AgentCrew/modules/google/native_service.py,sha256=92TXQX9rgG_RdEaud2IZxDmKN9ob8JL9k7RF9ugIg6U,27514
@@ -115,7 +129,7 @@ AgentCrew/modules/gui/components/input_components.py,sha256=IYKigulYCNJ6Et5rLCEX
115
129
  AgentCrew/modules/gui/components/keyboard_handler.py,sha256=uNBvaOOIcBHaqstA4JbTrkDEmlh0r6Y6_gRG9gD1WCw,5770
116
130
  AgentCrew/modules/gui/components/menu_components.py,sha256=Dy6yo61R4sEANZEfRdl3pOTUb5Io6nmUEqMfYc0nW9I,5327
117
131
  AgentCrew/modules/gui/components/message_handlers.py,sha256=CluNFGNXjWbJFf6RhAlqgmA9o_gcJRXLEG7FIQW07W0,5391
118
- AgentCrew/modules/gui/components/tool_handlers.py,sha256=mHJRFwjGuGC8B7Ydy7qmMfZlNH0jfFdwHZaMJMjLNdk,22065
132
+ AgentCrew/modules/gui/components/tool_handlers.py,sha256=3YtdI1aemXrg0_VKb5QvL3drVy2Bc-dIFNEbcIxEQOU,21951
119
133
  AgentCrew/modules/gui/components/ui_state_manager.py,sha256=w_gmdykpFbZE84lgA1I_ordqky_QpPUOf39ni26KEfw,5131
120
134
  AgentCrew/modules/gui/themes/README.md,sha256=mYiu9SV1OjhDgjCpnnvhvME-5ROnAcvEu5AkW3rJEjo,4844
121
135
  AgentCrew/modules/gui/themes/__init__.py,sha256=kOJruvfsx48F9V6ArwsnqfT2QxcJ_THdhJIZ81B3R3k,71
@@ -132,7 +146,7 @@ AgentCrew/modules/gui/utils/strings.py,sha256=zSnec-CHz8JF3H6BgPGjfDr10NilRumorl
132
146
  AgentCrew/modules/gui/utils/wins_clipboard.py,sha256=8LXKje-WzR3Iubu8c_37s-j8DP_5KDywrQEEpfxMcZU,2440
133
147
  AgentCrew/modules/gui/widgets/__init__.py,sha256=Rc6P_K8d9Dw6H3AGAwnmkuhIxEu5ulht3w7VYJK-cds,493
134
148
  AgentCrew/modules/gui/widgets/config_window.py,sha256=QxwnT7N6C0Jm8OOJ4WJE71j7tqDH0kTJVCCGnzR4SZw,3099
135
- AgentCrew/modules/gui/widgets/diff_widget.py,sha256=p0z3iOwV4-OZfvxIdksp8xjECSrbZ7Jzw16v_L7YyPo,18692
149
+ AgentCrew/modules/gui/widgets/diff_widget.py,sha256=EZiz9K-Pski9dH4LdkozBnEt-TZSacepUovaaKmLe5k,17812
136
150
  AgentCrew/modules/gui/widgets/history_sidebar.py,sha256=n-WMPf5cm5jNB_cT3IoK_nzAAczRCA1GeWsY4O0bg5k,10596
137
151
  AgentCrew/modules/gui/widgets/json_editor.py,sha256=lV-Me8TUJzIkF-tbiRiFSdRGDbxv9bBKDdSSLwof7oU,6211
138
152
  AgentCrew/modules/gui/widgets/loading_overlay.py,sha256=jCfHDDJ5YudfwU15s61l3zQVeWoRhI38WvaTylysR9g,3630
@@ -153,7 +167,7 @@ AgentCrew/modules/image_generation/service.py,sha256=OEuVaVd4ecKSdZn-WGMmqyZtqDw
153
167
  AgentCrew/modules/image_generation/tool.py,sha256=TCe6tOvvCXj5LvjMtmxH1AQ5s2FWHDA79ix43hdzGZs,6087
154
168
  AgentCrew/modules/llm/__init__.py,sha256=dMlHRa09bbPEVZnGXm62TcHmbvQzdBqmRIxstlrls8k,63
155
169
  AgentCrew/modules/llm/base.py,sha256=S2Tzg4LXQv69MVjNScWbpid3cM20QCgW0KHQqvghjeI,11511
156
- AgentCrew/modules/llm/constants.py,sha256=EFe5Rbu8mRVbCJ4nJcPxB7BsesDEdJ3BNHdesX3cwpc,22531
170
+ AgentCrew/modules/llm/constants.py,sha256=W-zOlbslr_AzmX1bfPQ01QSqMKMiPLkyqfhSR4pwznc,22598
157
171
  AgentCrew/modules/llm/model_registry.py,sha256=7gJqn-YoentH2Xx0AlF5goyxQDlEBMFWak2poafjhyI,5510
158
172
  AgentCrew/modules/llm/service_manager.py,sha256=oXSjcAbrfcGLdBcm_ylnSWIp87Ecl96yZ8efkWFb4Gw,10669
159
173
  AgentCrew/modules/llm/types.py,sha256=Bkr1OIRJJ5neUiSCMUJco8SwerrycPh5Xg1kVDpO0os,949
@@ -166,10 +180,10 @@ AgentCrew/modules/mcpclient/tool.py,sha256=6VrwvZOvyVzvfsMYGvrHl8DmLzbjhLQ3q2Kmt
166
180
  AgentCrew/modules/memory/__init__.py,sha256=1tdK0sybmY2c6y_rWFs2eF0Zy7vcEbGlwtIoF8BF0K4,251
167
181
  AgentCrew/modules/memory/base_service.py,sha256=OW9ZfDDoYXpvzWBj5nLcssidc1HJU_0mn6VhgCBZfLA,4145
168
182
  AgentCrew/modules/memory/chroma_service.py,sha256=ZPn3Fr675LJ_sdBvCw2kM6JPh550jxw7bARhKAruHQY,25267
169
- AgentCrew/modules/memory/context_persistent.py,sha256=KoZtXdJVnMyrbBlBJZrHHJ0AnQvLV5mcjEzALu0bEzE,22849
183
+ AgentCrew/modules/memory/context_persistent.py,sha256=fHNiqH2Js20QHAkJ4Avho1GDHv_hBI9MW5Oeg0m5jMs,22899
170
184
  AgentCrew/modules/memory/github_copilot_ef.py,sha256=NGIKG8G602cF1nR9QRHgGUwCToyKcx6Aw5I_YVRX7VI,9522
171
185
  AgentCrew/modules/memory/google_genai_ef.py,sha256=8_c9MOR3HNJ-m-KT35eOUGHsN_wswPvjcpRhxFRgE1s,5124
172
- AgentCrew/modules/memory/tool.py,sha256=ubMyvG1lHH6DM_lnHoocpVL9cwC0bJDc-xvLrZPVnSw,14503
186
+ AgentCrew/modules/memory/tool.py,sha256=ah1UEbqhOlW-AgHOeXyqptC-LYeYWnIj1Ui3r3fhAfo,14495
173
187
  AgentCrew/modules/memory/voyageai_ef.py,sha256=X9znUSfT9Ozd-l1Ak9ulBAZzfGu9G9W18V8XKdIytWk,4508
174
188
  AgentCrew/modules/openai/__init__.py,sha256=w5Ytp3ckIsrcrkyaQl0OWWTHlulqBT7sYEYhxkYaOmE,141
175
189
  AgentCrew/modules/openai/response_service.py,sha256=vXXcBYq_Hc3-2YMMkoszVkYijvtJ2mw_bzKOwElQFNA,25005
@@ -188,9 +202,9 @@ AgentCrew/modules/voice/text_cleaner.py,sha256=NgAVBPkP2hFI330nJOyMK_oqP3R2AGZ22
188
202
  AgentCrew/modules/web_search/__init__.py,sha256=sVf_z6nH2JghK46pG92PUtDghPIkceiX1F0Ul30euXU,111
189
203
  AgentCrew/modules/web_search/service.py,sha256=DKcOdRSHB5AEvbK8pvTXdffSnk6rFRTzaM1FXf2B70E,4006
190
204
  AgentCrew/modules/web_search/tool.py,sha256=GV4xleVFs0UwiPS9toSzPzZei3ehsDZWxTQCJCRaEs8,6655
191
- agentcrew_ai-0.8.12.dist-info/licenses/LICENSE,sha256=O51CIaOUcxVLNf0_PE_a8ap5bf3iXe4SrWN_5NO1PSU,11348
192
- agentcrew_ai-0.8.12.dist-info/METADATA,sha256=5khHyDGb3YMrFL79NMXi9QFfeuUyqStxQ8t1gVnkR5Q,18026
193
- agentcrew_ai-0.8.12.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
194
- agentcrew_ai-0.8.12.dist-info/entry_points.txt,sha256=N9R5jslrBYA8dTaNMRJ_JdSosJ6jkpGEtnJFzlcZD6k,54
195
- agentcrew_ai-0.8.12.dist-info/top_level.txt,sha256=bSsmhCOn6g-JytoVMpxB_QAnCgb7lV56fcnxUhbfrvg,10
196
- agentcrew_ai-0.8.12.dist-info/RECORD,,
205
+ agentcrew_ai-0.8.13.dist-info/licenses/LICENSE,sha256=O51CIaOUcxVLNf0_PE_a8ap5bf3iXe4SrWN_5NO1PSU,11348
206
+ agentcrew_ai-0.8.13.dist-info/METADATA,sha256=M7o1RLvQn1_r3uYPQCcbxZ1_WdKX8iiBIIyFr6cmGtg,18026
207
+ agentcrew_ai-0.8.13.dist-info/WHEEL,sha256=qELbo2s1Yzl39ZmrAibXA2jjPLUYfnVhUNTlyF1rq0Y,92
208
+ agentcrew_ai-0.8.13.dist-info/entry_points.txt,sha256=N9R5jslrBYA8dTaNMRJ_JdSosJ6jkpGEtnJFzlcZD6k,54
209
+ agentcrew_ai-0.8.13.dist-info/top_level.txt,sha256=bSsmhCOn6g-JytoVMpxB_QAnCgb7lV56fcnxUhbfrvg,10
210
+ agentcrew_ai-0.8.13.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: setuptools (80.9.0)
2
+ Generator: setuptools (80.10.1)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
5