agentcrew-ai 0.9.0__py3-none-any.whl → 0.9.2__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 (29) hide show
  1. AgentCrew/__init__.py +1 -1
  2. AgentCrew/app.py +12 -1
  3. AgentCrew/modules/a2a/common/client/card_resolver.py +27 -8
  4. AgentCrew/modules/a2a/server.py +5 -0
  5. AgentCrew/modules/a2a/task_manager.py +1 -0
  6. AgentCrew/modules/chat/message/conversation.py +18 -1
  7. AgentCrew/modules/code_analysis/service.py +50 -7
  8. AgentCrew/modules/code_analysis/tool.py +9 -8
  9. AgentCrew/modules/console/completers.py +4 -0
  10. AgentCrew/modules/console/console_ui.py +17 -0
  11. AgentCrew/modules/console/display_handlers.py +4 -0
  12. AgentCrew/modules/console/visual_mode/__init__.py +5 -0
  13. AgentCrew/modules/console/visual_mode/viewer.py +41 -0
  14. AgentCrew/modules/console/visual_mode/viewer_input_handler.py +315 -0
  15. AgentCrew/modules/console/visual_mode/viewer_ui.py +608 -0
  16. AgentCrew/modules/gui/components/menu_components.py +8 -7
  17. AgentCrew/modules/gui/themes/style_provider.py +3 -1
  18. AgentCrew/modules/gui/widgets/configs/global_settings.py +1 -0
  19. AgentCrew/modules/gui/widgets/history_sidebar.py +8 -1
  20. AgentCrew/modules/llm/constants.py +15 -5
  21. AgentCrew/modules/mcpclient/service.py +0 -1
  22. AgentCrew/modules/memory/base_service.py +13 -0
  23. AgentCrew/modules/memory/chroma_service.py +50 -0
  24. {agentcrew_ai-0.9.0.dist-info → agentcrew_ai-0.9.2.dist-info}/METADATA +1 -1
  25. {agentcrew_ai-0.9.0.dist-info → agentcrew_ai-0.9.2.dist-info}/RECORD +29 -25
  26. {agentcrew_ai-0.9.0.dist-info → agentcrew_ai-0.9.2.dist-info}/WHEEL +0 -0
  27. {agentcrew_ai-0.9.0.dist-info → agentcrew_ai-0.9.2.dist-info}/entry_points.txt +0 -0
  28. {agentcrew_ai-0.9.0.dist-info → agentcrew_ai-0.9.2.dist-info}/licenses/LICENSE +0 -0
  29. {agentcrew_ai-0.9.0.dist-info → agentcrew_ai-0.9.2.dist-info}/top_level.txt +0 -0
@@ -334,6 +334,16 @@ _DEEPINFRA_MODELS = [
334
334
  input_token_price_1m=0.43,
335
335
  output_token_price_1m=1.75,
336
336
  ),
337
+ Model(
338
+ id="zai-org/GLM-4.7-Flash",
339
+ provider="deepinfra",
340
+ name="Zai GLM-4.7 Flash",
341
+ description="GLM-4.7-Flash is a 30B-A3B MoE model",
342
+ force_sample_params=SampleParam(temperature=0.7, top_p=1, top_k=40),
343
+ capabilities=["tool_use", "stream", "structured_output"],
344
+ input_token_price_1m=0.06,
345
+ output_token_price_1m=0.4,
346
+ ),
337
347
  Model(
338
348
  id="Qwen/Qwen3-32B",
339
349
  provider="deepinfra",
@@ -376,11 +386,11 @@ _DEEPINFRA_MODELS = [
376
386
  output_token_price_1m=2.18,
377
387
  ),
378
388
  Model(
379
- id="moonshotai/Kimi-K2-Instruct-0905",
389
+ id="moonshotai/Kimi-K2.5",
380
390
  provider="deepinfra",
381
- name="Kimi K2 Instruct",
382
- description="Kimi K2 is a large-scale Mixture-of-Experts (MoE) language model developed by Moonshot AI, featuring 1 trillion total parameters with 32 billion active per forward pass",
383
- capabilities=["tool_use", "stream", "structured_output"],
391
+ name="Kimi K2.5",
392
+ description="Kimi K2.5 is an open-source, native multimodal agentic model built through continual pretraining on approximately 15 trillion mixed visual and text tokens atop Kimi-K2-Base",
393
+ capabilities=["tool_use", "stream", "structured_output", "vision"],
384
394
  force_sample_params=SampleParam(temperature=0.6),
385
395
  input_token_price_1m=0.5,
386
396
  output_token_price_1m=2.0,
@@ -388,7 +398,7 @@ _DEEPINFRA_MODELS = [
388
398
  Model(
389
399
  id="MiniMaxAI/MiniMax-M2",
390
400
  provider="deepinfra",
391
- name="Kimi K2 Instruct",
401
+ name="MiniMax-M2",
392
402
  description="MiniMax-M2 is a Mini model built for Max coding & agentic workflows with just 10 billion activated parameters",
393
403
  capabilities=["tool_use", "stream", "structured_output"],
394
404
  force_sample_params=SampleParam(temperature=0.6),
@@ -286,7 +286,6 @@ class MCPService:
286
286
  logger.warning(
287
287
  f"MCPService: Failed to send ping to {server_id}: {e}"
288
288
  )
289
- self.connected_servers[server_id] = False
290
289
  else:
291
290
  logger.warning(
292
291
  f"MCPService: Session for {server_id} not available, stopping keep-alive"
@@ -150,3 +150,16 @@ class BaseMemoryService(ABC):
150
150
  Dict with success status and information about the operation
151
151
  """
152
152
  pass
153
+
154
+ @abstractmethod
155
+ def delete_by_conversation_id(self, conversation_id: str) -> Dict[str, Any]:
156
+ """
157
+ Delete all memories associated with a specific conversation ID.
158
+
159
+ Args:
160
+ conversation_id: The conversation ID (session_id) to delete memories for
161
+
162
+ Returns:
163
+ Dict with success status and count of deleted memories
164
+ """
165
+ pass
@@ -655,6 +655,56 @@ class ChromaMemoryService(BaseMemoryService):
655
655
  "count": len(ids),
656
656
  }
657
657
 
658
+ def delete_by_conversation_id(self, conversation_id: str) -> Dict[str, Any]:
659
+ """
660
+ Delete all memories associated with a specific conversation ID.
661
+
662
+ Args:
663
+ conversation_id: The conversation ID (session_id) to delete memories for
664
+
665
+ Returns:
666
+ Dict with success status and count of deleted memories
667
+ """
668
+ try:
669
+ collection = self._initialize_collection()
670
+
671
+ results = collection.get(
672
+ where={"session_id": conversation_id},
673
+ include=["metadatas"],
674
+ )
675
+
676
+ if not results["ids"]:
677
+ return {
678
+ "success": True,
679
+ "message": f"No memories found for conversation {conversation_id}",
680
+ "count": 0,
681
+ }
682
+
683
+ ids_to_remove = results["ids"]
684
+ collection.delete(ids=ids_to_remove)
685
+
686
+ if conversation_id in self.current_conversation_context:
687
+ del self.current_conversation_context[conversation_id]
688
+
689
+ logger.info(
690
+ f"Deleted {len(ids_to_remove)} memories for conversation {conversation_id}"
691
+ )
692
+
693
+ return {
694
+ "success": True,
695
+ "message": f"Successfully removed {len(ids_to_remove)} memories for conversation {conversation_id}",
696
+ "count": len(ids_to_remove),
697
+ }
698
+ except Exception as e:
699
+ logger.error(
700
+ f"Error deleting memories for conversation {conversation_id}: {e}"
701
+ )
702
+ return {
703
+ "success": False,
704
+ "message": f"Error deleting memories: {str(e)}",
705
+ "count": 0,
706
+ }
707
+
658
708
  def get_queue_status(self) -> Dict[str, Any]:
659
709
  """Get current queue status for monitoring."""
660
710
  return {
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: agentcrew-ai
3
- Version: 0.9.0
3
+ Version: 0.9.2
4
4
  Summary: Multi-Agents Interactive Chat Tool
5
5
  Author-email: Quy Truong <quy.truong@saigontechnology.com>
6
6
  License-Expression: Apache-2.0
@@ -1,5 +1,5 @@
1
- AgentCrew/__init__.py,sha256=H9NWRZb7NbeRRPLP_V1fARmLNXranorVM-OOY-8_2ug,22
2
- AgentCrew/app.py,sha256=AhtfhSAbBZcRl2XO1iD0b6oymK3N1o5H55Yw7ORoYjU,14142
1
+ AgentCrew/__init__.py,sha256=gqT-BGoeEItda9fICQDvLbxEjWRIBhFJxPxxKvmHLUo,22
2
+ AgentCrew/app.py,sha256=5FZAWfsv5LJ0OY0ZIy-TYJ-pZ1d3pd5Boh_QaDKPT0A,14523
3
3
  AgentCrew/main.py,sha256=nmoYDobbUe1le_z1_7s2rfrgm6N56nxuPHnsOFDu-dg,12767
4
4
  AgentCrew/main_docker.py,sha256=OkVcujUcWNUcy1XCXbFFwjH6hj8oOeNUuMbFq__7lHc,5362
5
5
  AgentCrew/setup.py,sha256=rLlh1J8YUCn_vr_gJR9xVpC3-9pW_XUaem209gtLHrM,18457
@@ -10,11 +10,11 @@ AgentCrew/modules/a2a/adapters.py,sha256=GOTZVstQOhMus1QWcqVQZXEmPovfhxRrJ9loUty
10
10
  AgentCrew/modules/a2a/agent_cards.py,sha256=SWmo3jVNSrPUqpL8Tv6T3h1a-0oXrOgqJrbPy7tz5XQ,4098
11
11
  AgentCrew/modules/a2a/errors.py,sha256=Yaw7Ew5LYDvrYgKZ34heBnEqlIXFF3_5GqqpNhNlveI,2353
12
12
  AgentCrew/modules/a2a/registry.py,sha256=Qrf8jSZSNc-VWnSsbci0PLRqD00ViE3hCT4VAZDIhZA,2667
13
- AgentCrew/modules/a2a/server.py,sha256=CT_0Te4BBWJEwgbX0wLvHcu6gJAMFsGswwS4IOC5L_k,12345
14
- AgentCrew/modules/a2a/task_manager.py,sha256=vXYOa1_6cJ6_MyT7JuWIPKehX7sP_z0Na8a3IAwKrUg,31014
13
+ AgentCrew/modules/a2a/server.py,sha256=vtgCN6IKREyrBIUmkMMrdZKbDXMAWZU6BF0OZ-LlgfI,12558
14
+ AgentCrew/modules/a2a/task_manager.py,sha256=iLngQNcpIprx-eexK7MTjx_Yptt0vDjMOsQMqKUw1dg,31075
15
15
  AgentCrew/modules/a2a/common/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
16
16
  AgentCrew/modules/a2a/common/client/__init__.py,sha256=PoBTKucH8G2onta-vHT4qUJcBYa3TIabGqCO5GVVyT0,118
17
- AgentCrew/modules/a2a/common/client/card_resolver.py,sha256=imtwwMNb1yLxTPcrct1ToH9fA18mzgAFYKR5vYTHHRw,637
17
+ AgentCrew/modules/a2a/common/client/card_resolver.py,sha256=R3suCn4gzQk7D6Ohlcq0sgkcfgYWvg_d-ZUqWf7KTuA,1283
18
18
  AgentCrew/modules/a2a/common/client/client.py,sha256=8-iXlLETeOiT16aUMwzW7SndaV4HiPg6TdU9XBq90rc,4963
19
19
  AgentCrew/modules/a2a/common/server/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
20
20
  AgentCrew/modules/a2a/common/server/auth_middleware.py,sha256=zW4Y87P8jAcfY7HUaJSq4yFuReD31NuaY1D3mYL63Sc,2553
@@ -57,7 +57,7 @@ AgentCrew/modules/chat/message_handler.py,sha256=A8DfuIPjW0R7s3a0P8VzNa2PF6HgXcR
57
57
  AgentCrew/modules/chat/message/__init__.py,sha256=SllV6nacLgBSTwkUhI7VbEW-7gwQxQh6cCjRtbU02O8,146
58
58
  AgentCrew/modules/chat/message/base.py,sha256=Xnes4tQCfMfWShSHG8f3ZZ5y5Q0wTWy5g0EwnNmflK0,1016
59
59
  AgentCrew/modules/chat/message/command_processor.py,sha256=W6LSyCDd-jlPDCVkarf1mDD20Nb95ErQRMfXpVeizPw,34527
60
- AgentCrew/modules/chat/message/conversation.py,sha256=olGWFPi3u1wbnqpbPllMhKo4qGepvCj0O_Bmdh-ovwY,10841
60
+ AgentCrew/modules/chat/message/conversation.py,sha256=SjQQoVbgBSUo5YG35SSunMlcskSsT7Jymt2xQy2GyOg,11529
61
61
  AgentCrew/modules/chat/message/handler.py,sha256=y4YV49tr_qFsmHbQTRHs9K0Vo-J6IZHIQgthm3JPMPE,24156
62
62
  AgentCrew/modules/chat/message/tool_manager.py,sha256=6E4psoIH9FFsthucG9t-luSVbNz2SasAHdGXl6rvjLc,12851
63
63
  AgentCrew/modules/clipboard/__init__.py,sha256=Xb0wwQ-9dwwLT3R3TYB87pwtDTNX5HAzhkr8iuR6mBc,77
@@ -66,8 +66,8 @@ AgentCrew/modules/clipboard/tool.py,sha256=RMu6Cr5wP79SvfOqojAbu6g1WxBw6EUS4Mdfd
66
66
  AgentCrew/modules/code_analysis/__init__.py,sha256=-JFx3n7LOtxIcBuHudc7dMG7miecl-BP4w6BTqyHm2U,431
67
67
  AgentCrew/modules/code_analysis/file_search_service.py,sha256=Bsa3Ev1nvXs1HaUhLV5f5krsaJFXOJ257CgvLbxLrY0,20164
68
68
  AgentCrew/modules/code_analysis/grep_service.py,sha256=vW26x2tIJDwKyoNLrhjwPPdOOE7HhKOfyJGmENqwtR8,23284
69
- AgentCrew/modules/code_analysis/service.py,sha256=u5PwT50HokRDFrTc5L8zd9y_uvADRNUTjhsih3tkoPU,31076
70
- AgentCrew/modules/code_analysis/tool.py,sha256=ba3NqUyHjJe9TAzG8ImUI2cZKRKtHgdQtWsOUBM5_yA,21203
69
+ AgentCrew/modules/code_analysis/service.py,sha256=uKmNwk-0XSuXA2QXAkJ67bKImt5qG0eMBhPl_DlcsVE,32732
70
+ AgentCrew/modules/code_analysis/tool.py,sha256=YxNjIqKlYlcqngvRJQiXZwYwMG1-o72I8hHgBS_fUZk,21516
71
71
  AgentCrew/modules/code_analysis/parsers/__init__.py,sha256=zuKHS8-0ksiU1LZNmZf5hCJYSGbOTITqQQ_DepdCy_I,1635
72
72
  AgentCrew/modules/code_analysis/parsers/base.py,sha256=WSDTlVgJYmD-7nUBlGB9c8TJ1_fhz5XyGQ9TZ0ilHug,3067
73
73
  AgentCrew/modules/code_analysis/parsers/cpp_parser.py,sha256=L06LUNFtG90q6AjG29QPucDp-ErMTj4iuv0botcTQnM,4663
@@ -90,13 +90,13 @@ AgentCrew/modules/config/__init__.py,sha256=ehO0aAkK98f9BmMjG9uR15Hc9Lwj9CnJZl24
90
90
  AgentCrew/modules/config/config_management.py,sha256=YhbkecLVxPz-1XM2S_q026qJjTnV7pDciefYnrlBw10,33827
91
91
  AgentCrew/modules/console/__init__.py,sha256=nO53lUaMEAshdIqDEmgNZ_r35jyg6CuMa7Tsj55Y09g,66
92
92
  AgentCrew/modules/console/command_handlers.py,sha256=eleobLeNjnkzB_ZcvFq9gXWLs0wMqleVOJgaICo3YBI,16533
93
- AgentCrew/modules/console/completers.py,sha256=BV3gWhWYNm8eaIDOrhNfQhs2aoGEhsmqK5bplAMywQs,17664
93
+ AgentCrew/modules/console/completers.py,sha256=U_p5CU5wsbuZ9K4WpoJK9M_q1L8PDekzdLlMCc1Ax7o,17809
94
94
  AgentCrew/modules/console/confirmation_handler.py,sha256=Jlr5ugGmiAIOIoP-Ref-WwYpu-YMhMjBc4xi9wdGTQ4,10232
95
- AgentCrew/modules/console/console_ui.py,sha256=XEUumdksQZBHyD-V72XZ3QLwutvdaXzrwLvaRv2wJRM,30759
95
+ AgentCrew/modules/console/console_ui.py,sha256=RXLHY6J8mlcpmB0pRHM-3TwQFCuinr2xWniFJ69_X-8,31514
96
96
  AgentCrew/modules/console/constants.py,sha256=fwLj52O96_t6m1qb0SOiaotM2dMLwXH83KAERm9ltLA,704
97
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=w0zxXk4ynnWWZQzm9kCGhJhfR1XROJUotcNha4tMwmM,21650
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
@@ -105,6 +105,10 @@ AgentCrew/modules/console/conversation_browser/__init__.py,sha256=kuxwWtE9MYs47K
105
105
  AgentCrew/modules/console/conversation_browser/browser.py,sha256=rMNzfqGdxQIAL_8BVQaMcXU6BLYLhvgefY2zAxFEFSw,2825
106
106
  AgentCrew/modules/console/conversation_browser/browser_input_handler.py,sha256=MR-fXLzp7nHQZZZmklYDLpCe2NfA6n7gb_g0dSrzBPI,8440
107
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
108
112
  AgentCrew/modules/custom_llm/__init__.py,sha256=NvgE3c6rYd52SmRITqGeHqaGOnHrK9vU8RBqD9_6Mdo,337
109
113
  AgentCrew/modules/custom_llm/copilot_response_service.py,sha256=tySzxnLMzMt3WjwhvBegtDP7Qk43D2Wc5bxZAi0Z3sA,4605
110
114
  AgentCrew/modules/custom_llm/deepinfra_service.py,sha256=uY7f-lg-hnR7A1ZYwKSE10c4WlJ9C693eBiZxLV6jlw,7553
@@ -131,7 +135,7 @@ AgentCrew/modules/gui/components/completers.py,sha256=1_0EGJHXXGKwZxNHcWc8xOvn5u
131
135
  AgentCrew/modules/gui/components/conversation_components.py,sha256=4-SbJt4ytzC56L-sEYCwfs9mo1rNiiUv5XRP9E5lZk8,8328
132
136
  AgentCrew/modules/gui/components/input_components.py,sha256=IYKigulYCNJ6Et5rLCEXNIZqSQUesTg1BgPCP_UFurY,13683
133
137
  AgentCrew/modules/gui/components/keyboard_handler.py,sha256=uNBvaOOIcBHaqstA4JbTrkDEmlh0r6Y6_gRG9gD1WCw,5770
134
- AgentCrew/modules/gui/components/menu_components.py,sha256=Dy6yo61R4sEANZEfRdl3pOTUb5Io6nmUEqMfYc0nW9I,5327
138
+ AgentCrew/modules/gui/components/menu_components.py,sha256=IQOZhT6b5t207N9V7Z6CViuRIyTRWpSkJwXJeHvJ2bI,5361
135
139
  AgentCrew/modules/gui/components/message_handlers.py,sha256=CluNFGNXjWbJFf6RhAlqgmA9o_gcJRXLEG7FIQW07W0,5391
136
140
  AgentCrew/modules/gui/components/tool_handlers.py,sha256=3YtdI1aemXrg0_VKb5QvL3drVy2Bc-dIFNEbcIxEQOU,21951
137
141
  AgentCrew/modules/gui/components/ui_state_manager.py,sha256=w_gmdykpFbZE84lgA1I_ordqky_QpPUOf39ni26KEfw,5131
@@ -142,7 +146,7 @@ AgentCrew/modules/gui/themes/catppuccin.yaml,sha256=GI6A4T9qju_jn_pgk7IDnlZbUL2v
142
146
  AgentCrew/modules/gui/themes/dracula.yaml,sha256=edvjrXbs3iDB4pcI-oK24AnMghzQ3cjzQWBp018yjIk,31523
143
147
  AgentCrew/modules/gui/themes/nord.yaml,sha256=U5gPX9ksR3p_M4Rj9jh1UBwkdKrNfV85xlQgWYBPJTQ,33146
144
148
  AgentCrew/modules/gui/themes/saigontech.yaml,sha256=ZTUkO50X7NugrDxFYmLW3SfpZ-HVbdCebLls1LfhVIw,32718
145
- AgentCrew/modules/gui/themes/style_provider.py,sha256=z-6yqg0xlffY6HaVXscJ1GkinHLSkvNUSGs30jB0yu8,7456
149
+ AgentCrew/modules/gui/themes/style_provider.py,sha256=I35QuGRZYIWxCctoZ8doEJZX2Jz27kr04X2i2LlANio,7486
146
150
  AgentCrew/modules/gui/themes/theme_loader.py,sha256=q8bUlLbaYWWZY595z3FuuDOv3_TNn4M9Nr0LAo071eE,10216
147
151
  AgentCrew/modules/gui/themes/unicorn.yaml,sha256=Y9TxUWCTMlJnGaqE0A3aHQvDWxhhEI7VKMn1WNWgoTk,32216
148
152
  AgentCrew/modules/gui/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -152,7 +156,7 @@ AgentCrew/modules/gui/utils/wins_clipboard.py,sha256=8LXKje-WzR3Iubu8c_37s-j8DP_
152
156
  AgentCrew/modules/gui/widgets/__init__.py,sha256=Rc6P_K8d9Dw6H3AGAwnmkuhIxEu5ulht3w7VYJK-cds,493
153
157
  AgentCrew/modules/gui/widgets/config_window.py,sha256=QxwnT7N6C0Jm8OOJ4WJE71j7tqDH0kTJVCCGnzR4SZw,3099
154
158
  AgentCrew/modules/gui/widgets/diff_widget.py,sha256=EZiz9K-Pski9dH4LdkozBnEt-TZSacepUovaaKmLe5k,17812
155
- AgentCrew/modules/gui/widgets/history_sidebar.py,sha256=n-WMPf5cm5jNB_cT3IoK_nzAAczRCA1GeWsY4O0bg5k,10596
159
+ AgentCrew/modules/gui/widgets/history_sidebar.py,sha256=0Kz2uoz6CwdEy4Ny5go84cBgTcupSmKzoiU4HQZlMHk,10771
156
160
  AgentCrew/modules/gui/widgets/json_editor.py,sha256=lV-Me8TUJzIkF-tbiRiFSdRGDbxv9bBKDdSSLwof7oU,6211
157
161
  AgentCrew/modules/gui/widgets/loading_overlay.py,sha256=jCfHDDJ5YudfwU15s61l3zQVeWoRhI38WvaTylysR9g,3630
158
162
  AgentCrew/modules/gui/widgets/markdown_editor.py,sha256=53nUFXU5jH4HEv5StHoI5onfQDvyCCAlH6OIvYZFVyk,10121
@@ -164,7 +168,7 @@ AgentCrew/modules/gui/widgets/tool_widget.py,sha256=h9-Pbn_dQ3Oebog-IJ8JcY7MqSdu
164
168
  AgentCrew/modules/gui/widgets/configs/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
165
169
  AgentCrew/modules/gui/widgets/configs/agent_config.py,sha256=IRU-s6YsLJiPoi0buDiSL4CRFz1-k0VAmL9DLJh7jT0,52234
166
170
  AgentCrew/modules/gui/widgets/configs/custom_llm_provider.py,sha256=TY3AJUl46vlpy9s4OzxdpFr_zsWCJTyM6roz9GBaUCs,35068
167
- AgentCrew/modules/gui/widgets/configs/global_settings.py,sha256=0K9-bOJCF2QnXvOoWk-MvegOQxf9c7HQ-Oq5ngY1hb8,10445
171
+ AgentCrew/modules/gui/widgets/configs/global_settings.py,sha256=DkewZY3YzXOeirWAqFbjfVvBXWiW4xR6Xl3mDKGLcxc,10446
168
172
  AgentCrew/modules/gui/widgets/configs/mcp_config.py,sha256=RvUdMKyO3QoGuCD6StMe_3vP0bA4KshltSMYSyQAfJY,35811
169
173
  AgentCrew/modules/gui/widgets/configs/save_worker.py,sha256=9ZdZa3dk2YLGJMJf6i6FuCRXQbZWuH9fciNXMRBvvgA,708
170
174
  AgentCrew/modules/image_generation/__init__.py,sha256=IwJLpqNberxd9pRlTv1daXozZGpyu1RlVkGsPGnSj2w,82
@@ -172,7 +176,7 @@ AgentCrew/modules/image_generation/service.py,sha256=OEuVaVd4ecKSdZn-WGMmqyZtqDw
172
176
  AgentCrew/modules/image_generation/tool.py,sha256=TCe6tOvvCXj5LvjMtmxH1AQ5s2FWHDA79ix43hdzGZs,6087
173
177
  AgentCrew/modules/llm/__init__.py,sha256=dMlHRa09bbPEVZnGXm62TcHmbvQzdBqmRIxstlrls8k,63
174
178
  AgentCrew/modules/llm/base.py,sha256=S2Tzg4LXQv69MVjNScWbpid3cM20QCgW0KHQqvghjeI,11511
175
- AgentCrew/modules/llm/constants.py,sha256=hS0li5M8sBXf6A10brF1HJ3L_l5CI3MRmnm1fwxZcxE,22948
179
+ AgentCrew/modules/llm/constants.py,sha256=h_yPwRDnxdzVshAVfl7leYBiDQAkCVN1CGDYCmIYXvI,23328
176
180
  AgentCrew/modules/llm/model_registry.py,sha256=7gJqn-YoentH2Xx0AlF5goyxQDlEBMFWak2poafjhyI,5510
177
181
  AgentCrew/modules/llm/service_manager.py,sha256=oXSjcAbrfcGLdBcm_ylnSWIp87Ecl96yZ8efkWFb4Gw,10669
178
182
  AgentCrew/modules/llm/types.py,sha256=Bkr1OIRJJ5neUiSCMUJco8SwerrycPh5Xg1kVDpO0os,949
@@ -180,11 +184,11 @@ AgentCrew/modules/mcpclient/__init__.py,sha256=Gd1y0YVgET37kQVo2HFfNzYRt_GnqCnQH
180
184
  AgentCrew/modules/mcpclient/auth.py,sha256=jxndVHc7oI_LaI0ckifFBLfpl_eJJBxu_UPC4OrGld0,15348
181
185
  AgentCrew/modules/mcpclient/config.py,sha256=9_Awetmzw2BO-0BAqZtPw35gDMpnVTVEs3wTesWMIPk,3193
182
186
  AgentCrew/modules/mcpclient/manager.py,sha256=mjdlr_cMXwjXsFOhMwHSF_K833hLXXCcvkTGOpe1YMI,7259
183
- AgentCrew/modules/mcpclient/service.py,sha256=mf05WpvZuN30CAEleQhzQZGPvXJWTlWYOhIO8Ymz06g,38293
187
+ AgentCrew/modules/mcpclient/service.py,sha256=lWsprHNSMCsAxpZBOXrA92VGsf8LUs7n3bm8vWsY4M4,38223
184
188
  AgentCrew/modules/mcpclient/tool.py,sha256=6VrwvZOvyVzvfsMYGvrHl8DmLzbjhLQ3q2KmtpbQE-I,805
185
189
  AgentCrew/modules/memory/__init__.py,sha256=1tdK0sybmY2c6y_rWFs2eF0Zy7vcEbGlwtIoF8BF0K4,251
186
- AgentCrew/modules/memory/base_service.py,sha256=OW9ZfDDoYXpvzWBj5nLcssidc1HJU_0mn6VhgCBZfLA,4145
187
- AgentCrew/modules/memory/chroma_service.py,sha256=ZPn3Fr675LJ_sdBvCw2kM6JPh550jxw7bARhKAruHQY,25267
190
+ AgentCrew/modules/memory/base_service.py,sha256=L_Ve5e_KTHQEB69RuNFeT60Jz0OnMWiKbn9jW25epGA,4541
191
+ AgentCrew/modules/memory/chroma_service.py,sha256=7Wv84tJKhaE59l7tTMnywBzJkZ6L1lVhM4HpM7YqVcE,26994
188
192
  AgentCrew/modules/memory/context_persistent.py,sha256=fHNiqH2Js20QHAkJ4Avho1GDHv_hBI9MW5Oeg0m5jMs,22899
189
193
  AgentCrew/modules/memory/github_copilot_ef.py,sha256=NGIKG8G602cF1nR9QRHgGUwCToyKcx6Aw5I_YVRX7VI,9522
190
194
  AgentCrew/modules/memory/google_genai_ef.py,sha256=8_c9MOR3HNJ-m-KT35eOUGHsN_wswPvjcpRhxFRgE1s,5124
@@ -207,9 +211,9 @@ AgentCrew/modules/voice/text_cleaner.py,sha256=NgAVBPkP2hFI330nJOyMK_oqP3R2AGZ22
207
211
  AgentCrew/modules/web_search/__init__.py,sha256=sVf_z6nH2JghK46pG92PUtDghPIkceiX1F0Ul30euXU,111
208
212
  AgentCrew/modules/web_search/service.py,sha256=DKcOdRSHB5AEvbK8pvTXdffSnk6rFRTzaM1FXf2B70E,4006
209
213
  AgentCrew/modules/web_search/tool.py,sha256=GV4xleVFs0UwiPS9toSzPzZei3ehsDZWxTQCJCRaEs8,6655
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,,
214
+ agentcrew_ai-0.9.2.dist-info/licenses/LICENSE,sha256=O51CIaOUcxVLNf0_PE_a8ap5bf3iXe4SrWN_5NO1PSU,11348
215
+ agentcrew_ai-0.9.2.dist-info/METADATA,sha256=-CE0VWwrnXP84TKYm4MU-FU93Cd-eHZ2aQ-PDyo6HLI,18025
216
+ agentcrew_ai-0.9.2.dist-info/WHEEL,sha256=wUyA8OaulRlbfwMtmQsvNngGrxQHAvkKcvRmdizlJi0,92
217
+ agentcrew_ai-0.9.2.dist-info/entry_points.txt,sha256=N9R5jslrBYA8dTaNMRJ_JdSosJ6jkpGEtnJFzlcZD6k,54
218
+ agentcrew_ai-0.9.2.dist-info/top_level.txt,sha256=bSsmhCOn6g-JytoVMpxB_QAnCgb7lV56fcnxUhbfrvg,10
219
+ agentcrew_ai-0.9.2.dist-info/RECORD,,