agentcrew-ai 0.8.8__tar.gz → 0.8.10__tar.gz

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 (202) hide show
  1. agentcrew_ai-0.8.10/AgentCrew/__init__.py +1 -0
  2. {agentcrew_ai-0.8.8 → agentcrew_ai-0.8.10}/AgentCrew/app.py +35 -0
  3. {agentcrew_ai-0.8.8 → agentcrew_ai-0.8.10}/AgentCrew/main.py +17 -35
  4. {agentcrew_ai-0.8.8 → agentcrew_ai-0.8.10}/AgentCrew/main_docker.py +14 -3
  5. {agentcrew_ai-0.8.8 → agentcrew_ai-0.8.10}/AgentCrew/modules/agents/manager.py +3 -3
  6. {agentcrew_ai-0.8.8 → agentcrew_ai-0.8.10}/AgentCrew/modules/browser_automation/element_extractor.py +0 -4
  7. {agentcrew_ai-0.8.8 → agentcrew_ai-0.8.10}/AgentCrew/modules/chat/message/handler.py +9 -0
  8. {agentcrew_ai-0.8.8 → agentcrew_ai-0.8.10}/AgentCrew/modules/config/config_management.py +13 -10
  9. {agentcrew_ai-0.8.8 → agentcrew_ai-0.8.10}/AgentCrew/modules/console/command_handlers.py +3 -1
  10. {agentcrew_ai-0.8.8 → agentcrew_ai-0.8.10}/AgentCrew/modules/llm/constants.py +44 -2
  11. {agentcrew_ai-0.8.8 → agentcrew_ai-0.8.10}/AgentCrew/modules/openai/response_service.py +0 -1
  12. {agentcrew_ai-0.8.8/agentcrew_ai.egg-info → agentcrew_ai-0.8.10}/PKG-INFO +2 -2
  13. {agentcrew_ai-0.8.8 → agentcrew_ai-0.8.10/agentcrew_ai.egg-info}/PKG-INFO +2 -2
  14. {agentcrew_ai-0.8.8 → agentcrew_ai-0.8.10}/agentcrew_ai.egg-info/requires.txt +1 -1
  15. {agentcrew_ai-0.8.8 → agentcrew_ai-0.8.10}/pyproject.toml +2 -2
  16. agentcrew_ai-0.8.8/AgentCrew/__init__.py +0 -1
  17. {agentcrew_ai-0.8.8 → agentcrew_ai-0.8.10}/AgentCrew/assets/agentcrew_logo.png +0 -0
  18. {agentcrew_ai-0.8.8 → agentcrew_ai-0.8.10}/AgentCrew/modules/__init__.py +0 -0
  19. {agentcrew_ai-0.8.8 → agentcrew_ai-0.8.10}/AgentCrew/modules/a2a/__init__.py +0 -0
  20. {agentcrew_ai-0.8.8 → agentcrew_ai-0.8.10}/AgentCrew/modules/a2a/adapters.py +0 -0
  21. {agentcrew_ai-0.8.8 → agentcrew_ai-0.8.10}/AgentCrew/modules/a2a/agent_cards.py +0 -0
  22. {agentcrew_ai-0.8.8 → agentcrew_ai-0.8.10}/AgentCrew/modules/a2a/common/__init__.py +0 -0
  23. {agentcrew_ai-0.8.8 → agentcrew_ai-0.8.10}/AgentCrew/modules/a2a/common/client/__init__.py +0 -0
  24. {agentcrew_ai-0.8.8 → agentcrew_ai-0.8.10}/AgentCrew/modules/a2a/common/client/card_resolver.py +0 -0
  25. {agentcrew_ai-0.8.8 → agentcrew_ai-0.8.10}/AgentCrew/modules/a2a/common/client/client.py +0 -0
  26. {agentcrew_ai-0.8.8 → agentcrew_ai-0.8.10}/AgentCrew/modules/a2a/common/server/__init__.py +0 -0
  27. {agentcrew_ai-0.8.8 → agentcrew_ai-0.8.10}/AgentCrew/modules/a2a/common/server/auth_middleware.py +0 -0
  28. {agentcrew_ai-0.8.8 → agentcrew_ai-0.8.10}/AgentCrew/modules/a2a/common/server/task_manager.py +0 -0
  29. {agentcrew_ai-0.8.8 → agentcrew_ai-0.8.10}/AgentCrew/modules/a2a/common/server/utils.py +0 -0
  30. {agentcrew_ai-0.8.8 → agentcrew_ai-0.8.10}/AgentCrew/modules/a2a/errors.py +0 -0
  31. {agentcrew_ai-0.8.8 → agentcrew_ai-0.8.10}/AgentCrew/modules/a2a/registry.py +0 -0
  32. {agentcrew_ai-0.8.8 → agentcrew_ai-0.8.10}/AgentCrew/modules/a2a/server.py +0 -0
  33. {agentcrew_ai-0.8.8 → agentcrew_ai-0.8.10}/AgentCrew/modules/a2a/task_manager.py +0 -0
  34. {agentcrew_ai-0.8.8 → agentcrew_ai-0.8.10}/AgentCrew/modules/agents/__init__.py +0 -0
  35. {agentcrew_ai-0.8.8 → agentcrew_ai-0.8.10}/AgentCrew/modules/agents/base.py +0 -0
  36. {agentcrew_ai-0.8.8 → agentcrew_ai-0.8.10}/AgentCrew/modules/agents/example.py +0 -0
  37. {agentcrew_ai-0.8.8 → agentcrew_ai-0.8.10}/AgentCrew/modules/agents/local_agent.py +0 -0
  38. {agentcrew_ai-0.8.8 → agentcrew_ai-0.8.10}/AgentCrew/modules/agents/remote_agent.py +0 -0
  39. {agentcrew_ai-0.8.8 → agentcrew_ai-0.8.10}/AgentCrew/modules/agents/tools/__init__.py +0 -0
  40. {agentcrew_ai-0.8.8 → agentcrew_ai-0.8.10}/AgentCrew/modules/agents/tools/ask.py +0 -0
  41. {agentcrew_ai-0.8.8 → agentcrew_ai-0.8.10}/AgentCrew/modules/agents/tools/delegate.py +0 -0
  42. {agentcrew_ai-0.8.8 → agentcrew_ai-0.8.10}/AgentCrew/modules/agents/tools/transfer.py +0 -0
  43. {agentcrew_ai-0.8.8 → agentcrew_ai-0.8.10}/AgentCrew/modules/anthropic/__init__.py +0 -0
  44. {agentcrew_ai-0.8.8 → agentcrew_ai-0.8.10}/AgentCrew/modules/anthropic/service.py +0 -0
  45. {agentcrew_ai-0.8.8 → agentcrew_ai-0.8.10}/AgentCrew/modules/browser_automation/__init__.py +0 -0
  46. {agentcrew_ai-0.8.8 → agentcrew_ai-0.8.10}/AgentCrew/modules/browser_automation/chrome_manager.py +0 -0
  47. {agentcrew_ai-0.8.8 → agentcrew_ai-0.8.10}/AgentCrew/modules/browser_automation/js/click_element.js +0 -0
  48. {agentcrew_ai-0.8.8 → agentcrew_ai-0.8.10}/AgentCrew/modules/browser_automation/js/draw_element_boxes.js +0 -0
  49. {agentcrew_ai-0.8.8 → agentcrew_ai-0.8.10}/AgentCrew/modules/browser_automation/js/extract_clickable_elements.js +0 -0
  50. {agentcrew_ai-0.8.8 → agentcrew_ai-0.8.10}/AgentCrew/modules/browser_automation/js/extract_elements_by_text.js +0 -0
  51. {agentcrew_ai-0.8.8 → agentcrew_ai-0.8.10}/AgentCrew/modules/browser_automation/js/extract_input_elements.js +0 -0
  52. {agentcrew_ai-0.8.8 → agentcrew_ai-0.8.10}/AgentCrew/modules/browser_automation/js/extract_scrollable_elements.js +0 -0
  53. {agentcrew_ai-0.8.8 → agentcrew_ai-0.8.10}/AgentCrew/modules/browser_automation/js/filter_hidden_elements.js +0 -0
  54. {agentcrew_ai-0.8.8 → agentcrew_ai-0.8.10}/AgentCrew/modules/browser_automation/js/focus_and_clear_element.js +0 -0
  55. {agentcrew_ai-0.8.8 → agentcrew_ai-0.8.10}/AgentCrew/modules/browser_automation/js/remove_element_boxes.js +0 -0
  56. {agentcrew_ai-0.8.8 → agentcrew_ai-0.8.10}/AgentCrew/modules/browser_automation/js/scroll_to_element.js +0 -0
  57. {agentcrew_ai-0.8.8 → agentcrew_ai-0.8.10}/AgentCrew/modules/browser_automation/js/trigger_input_events.js +0 -0
  58. {agentcrew_ai-0.8.8 → agentcrew_ai-0.8.10}/AgentCrew/modules/browser_automation/js_loader.py +0 -0
  59. {agentcrew_ai-0.8.8 → agentcrew_ai-0.8.10}/AgentCrew/modules/browser_automation/service.py +0 -0
  60. {agentcrew_ai-0.8.8 → agentcrew_ai-0.8.10}/AgentCrew/modules/browser_automation/tool.py +0 -0
  61. {agentcrew_ai-0.8.8 → agentcrew_ai-0.8.10}/AgentCrew/modules/chat/__init__.py +0 -0
  62. {agentcrew_ai-0.8.8 → agentcrew_ai-0.8.10}/AgentCrew/modules/chat/consolidation.py +0 -0
  63. {agentcrew_ai-0.8.8 → agentcrew_ai-0.8.10}/AgentCrew/modules/chat/file_handler.py +0 -0
  64. {agentcrew_ai-0.8.8 → agentcrew_ai-0.8.10}/AgentCrew/modules/chat/history.py +0 -0
  65. {agentcrew_ai-0.8.8 → agentcrew_ai-0.8.10}/AgentCrew/modules/chat/message/__init__.py +0 -0
  66. {agentcrew_ai-0.8.8 → agentcrew_ai-0.8.10}/AgentCrew/modules/chat/message/base.py +0 -0
  67. {agentcrew_ai-0.8.8 → agentcrew_ai-0.8.10}/AgentCrew/modules/chat/message/command_processor.py +0 -0
  68. {agentcrew_ai-0.8.8 → agentcrew_ai-0.8.10}/AgentCrew/modules/chat/message/conversation.py +0 -0
  69. {agentcrew_ai-0.8.8 → agentcrew_ai-0.8.10}/AgentCrew/modules/chat/message/tool_manager.py +0 -0
  70. {agentcrew_ai-0.8.8 → agentcrew_ai-0.8.10}/AgentCrew/modules/chat/message_handler.py +0 -0
  71. {agentcrew_ai-0.8.8 → agentcrew_ai-0.8.10}/AgentCrew/modules/clipboard/__init__.py +0 -0
  72. {agentcrew_ai-0.8.8 → agentcrew_ai-0.8.10}/AgentCrew/modules/clipboard/service.py +0 -0
  73. {agentcrew_ai-0.8.8 → agentcrew_ai-0.8.10}/AgentCrew/modules/clipboard/tool.py +0 -0
  74. {agentcrew_ai-0.8.8 → agentcrew_ai-0.8.10}/AgentCrew/modules/code_analysis/__init__.py +0 -0
  75. {agentcrew_ai-0.8.8 → agentcrew_ai-0.8.10}/AgentCrew/modules/code_analysis/service.py +0 -0
  76. {agentcrew_ai-0.8.8 → agentcrew_ai-0.8.10}/AgentCrew/modules/code_analysis/tool.py +0 -0
  77. {agentcrew_ai-0.8.8 → agentcrew_ai-0.8.10}/AgentCrew/modules/command_execution/__init__.py +0 -0
  78. {agentcrew_ai-0.8.8 → agentcrew_ai-0.8.10}/AgentCrew/modules/command_execution/constants.py +0 -0
  79. {agentcrew_ai-0.8.8 → agentcrew_ai-0.8.10}/AgentCrew/modules/command_execution/service.py +0 -0
  80. {agentcrew_ai-0.8.8 → agentcrew_ai-0.8.10}/AgentCrew/modules/command_execution/tool.py +0 -0
  81. {agentcrew_ai-0.8.8 → agentcrew_ai-0.8.10}/AgentCrew/modules/command_execution/types.py +0 -0
  82. {agentcrew_ai-0.8.8 → agentcrew_ai-0.8.10}/AgentCrew/modules/config/__init__.py +0 -0
  83. {agentcrew_ai-0.8.8 → agentcrew_ai-0.8.10}/AgentCrew/modules/console/__init__.py +0 -0
  84. {agentcrew_ai-0.8.8 → agentcrew_ai-0.8.10}/AgentCrew/modules/console/completers.py +0 -0
  85. {agentcrew_ai-0.8.8 → agentcrew_ai-0.8.10}/AgentCrew/modules/console/confirmation_handler.py +0 -0
  86. {agentcrew_ai-0.8.8 → agentcrew_ai-0.8.10}/AgentCrew/modules/console/console_ui.py +0 -0
  87. {agentcrew_ai-0.8.8 → agentcrew_ai-0.8.10}/AgentCrew/modules/console/constants.py +0 -0
  88. {agentcrew_ai-0.8.8 → agentcrew_ai-0.8.10}/AgentCrew/modules/console/conversation_handler.py +0 -0
  89. {agentcrew_ai-0.8.8 → agentcrew_ai-0.8.10}/AgentCrew/modules/console/diff_display.py +0 -0
  90. {agentcrew_ai-0.8.8 → agentcrew_ai-0.8.10}/AgentCrew/modules/console/display_handlers.py +0 -0
  91. {agentcrew_ai-0.8.8 → agentcrew_ai-0.8.10}/AgentCrew/modules/console/input_handler.py +0 -0
  92. {agentcrew_ai-0.8.8 → agentcrew_ai-0.8.10}/AgentCrew/modules/console/tool_display.py +0 -0
  93. {agentcrew_ai-0.8.8 → agentcrew_ai-0.8.10}/AgentCrew/modules/console/ui_effects.py +0 -0
  94. {agentcrew_ai-0.8.8 → agentcrew_ai-0.8.10}/AgentCrew/modules/console/utils.py +0 -0
  95. {agentcrew_ai-0.8.8 → agentcrew_ai-0.8.10}/AgentCrew/modules/custom_llm/__init__.py +0 -0
  96. {agentcrew_ai-0.8.8 → agentcrew_ai-0.8.10}/AgentCrew/modules/custom_llm/copilot_response_service.py +0 -0
  97. {agentcrew_ai-0.8.8 → agentcrew_ai-0.8.10}/AgentCrew/modules/custom_llm/deepinfra_service.py +0 -0
  98. {agentcrew_ai-0.8.8 → agentcrew_ai-0.8.10}/AgentCrew/modules/custom_llm/github_copilot_service.py +0 -0
  99. {agentcrew_ai-0.8.8 → agentcrew_ai-0.8.10}/AgentCrew/modules/custom_llm/service.py +0 -0
  100. {agentcrew_ai-0.8.8 → agentcrew_ai-0.8.10}/AgentCrew/modules/file_editing/__init__.py +0 -0
  101. {agentcrew_ai-0.8.8 → agentcrew_ai-0.8.10}/AgentCrew/modules/file_editing/safety_validator.py +0 -0
  102. {agentcrew_ai-0.8.8 → agentcrew_ai-0.8.10}/AgentCrew/modules/file_editing/search_replace_engine.py +0 -0
  103. {agentcrew_ai-0.8.8 → agentcrew_ai-0.8.10}/AgentCrew/modules/file_editing/service.py +0 -0
  104. {agentcrew_ai-0.8.8 → agentcrew_ai-0.8.10}/AgentCrew/modules/file_editing/tool.py +0 -0
  105. {agentcrew_ai-0.8.8 → agentcrew_ai-0.8.10}/AgentCrew/modules/file_editing/tree_sitter_checker.py +0 -0
  106. {agentcrew_ai-0.8.8 → agentcrew_ai-0.8.10}/AgentCrew/modules/google/__init__.py +0 -0
  107. {agentcrew_ai-0.8.8 → agentcrew_ai-0.8.10}/AgentCrew/modules/google/native_service.py +0 -0
  108. {agentcrew_ai-0.8.8 → agentcrew_ai-0.8.10}/AgentCrew/modules/google/service.py +0 -0
  109. {agentcrew_ai-0.8.8 → agentcrew_ai-0.8.10}/AgentCrew/modules/groq/__init__.py +0 -0
  110. {agentcrew_ai-0.8.8 → agentcrew_ai-0.8.10}/AgentCrew/modules/groq/service.py +0 -0
  111. {agentcrew_ai-0.8.8 → agentcrew_ai-0.8.10}/AgentCrew/modules/gui/__init__.py +0 -0
  112. {agentcrew_ai-0.8.8 → agentcrew_ai-0.8.10}/AgentCrew/modules/gui/components/__init__.py +0 -0
  113. {agentcrew_ai-0.8.8 → agentcrew_ai-0.8.10}/AgentCrew/modules/gui/components/chat_components.py +0 -0
  114. {agentcrew_ai-0.8.8 → agentcrew_ai-0.8.10}/AgentCrew/modules/gui/components/command_handler.py +0 -0
  115. {agentcrew_ai-0.8.8 → agentcrew_ai-0.8.10}/AgentCrew/modules/gui/components/completers.py +0 -0
  116. {agentcrew_ai-0.8.8 → agentcrew_ai-0.8.10}/AgentCrew/modules/gui/components/conversation_components.py +0 -0
  117. {agentcrew_ai-0.8.8 → agentcrew_ai-0.8.10}/AgentCrew/modules/gui/components/input_components.py +0 -0
  118. {agentcrew_ai-0.8.8 → agentcrew_ai-0.8.10}/AgentCrew/modules/gui/components/keyboard_handler.py +0 -0
  119. {agentcrew_ai-0.8.8 → agentcrew_ai-0.8.10}/AgentCrew/modules/gui/components/menu_components.py +0 -0
  120. {agentcrew_ai-0.8.8 → agentcrew_ai-0.8.10}/AgentCrew/modules/gui/components/message_handlers.py +0 -0
  121. {agentcrew_ai-0.8.8 → agentcrew_ai-0.8.10}/AgentCrew/modules/gui/components/tool_handlers.py +0 -0
  122. {agentcrew_ai-0.8.8 → agentcrew_ai-0.8.10}/AgentCrew/modules/gui/components/ui_state_manager.py +0 -0
  123. {agentcrew_ai-0.8.8 → agentcrew_ai-0.8.10}/AgentCrew/modules/gui/qt_ui.py +0 -0
  124. {agentcrew_ai-0.8.8 → agentcrew_ai-0.8.10}/AgentCrew/modules/gui/themes/README.md +0 -0
  125. {agentcrew_ai-0.8.8 → agentcrew_ai-0.8.10}/AgentCrew/modules/gui/themes/__init__.py +0 -0
  126. {agentcrew_ai-0.8.8 → agentcrew_ai-0.8.10}/AgentCrew/modules/gui/themes/atom_light.py +0 -0
  127. {agentcrew_ai-0.8.8 → agentcrew_ai-0.8.10}/AgentCrew/modules/gui/themes/catppuccin.py +0 -0
  128. {agentcrew_ai-0.8.8 → agentcrew_ai-0.8.10}/AgentCrew/modules/gui/themes/dracula.py +0 -0
  129. {agentcrew_ai-0.8.8 → agentcrew_ai-0.8.10}/AgentCrew/modules/gui/themes/nord.py +0 -0
  130. {agentcrew_ai-0.8.8 → agentcrew_ai-0.8.10}/AgentCrew/modules/gui/themes/saigontech.py +0 -0
  131. {agentcrew_ai-0.8.8 → agentcrew_ai-0.8.10}/AgentCrew/modules/gui/themes/style_provider.py +0 -0
  132. {agentcrew_ai-0.8.8 → agentcrew_ai-0.8.10}/AgentCrew/modules/gui/themes/unicorn.py +0 -0
  133. {agentcrew_ai-0.8.8 → agentcrew_ai-0.8.10}/AgentCrew/modules/gui/utils/__init__.py +0 -0
  134. {agentcrew_ai-0.8.8 → agentcrew_ai-0.8.10}/AgentCrew/modules/gui/utils/macos_clipboard.py +0 -0
  135. {agentcrew_ai-0.8.8 → agentcrew_ai-0.8.10}/AgentCrew/modules/gui/utils/strings.py +0 -0
  136. {agentcrew_ai-0.8.8 → agentcrew_ai-0.8.10}/AgentCrew/modules/gui/utils/wins_clipboard.py +0 -0
  137. {agentcrew_ai-0.8.8 → agentcrew_ai-0.8.10}/AgentCrew/modules/gui/widgets/__init__.py +0 -0
  138. {agentcrew_ai-0.8.8 → agentcrew_ai-0.8.10}/AgentCrew/modules/gui/widgets/config_window.py +0 -0
  139. {agentcrew_ai-0.8.8 → agentcrew_ai-0.8.10}/AgentCrew/modules/gui/widgets/configs/__init__.py +0 -0
  140. {agentcrew_ai-0.8.8 → agentcrew_ai-0.8.10}/AgentCrew/modules/gui/widgets/configs/agent_config.py +0 -0
  141. {agentcrew_ai-0.8.8 → agentcrew_ai-0.8.10}/AgentCrew/modules/gui/widgets/configs/custom_llm_provider.py +0 -0
  142. {agentcrew_ai-0.8.8 → agentcrew_ai-0.8.10}/AgentCrew/modules/gui/widgets/configs/global_settings.py +0 -0
  143. {agentcrew_ai-0.8.8 → agentcrew_ai-0.8.10}/AgentCrew/modules/gui/widgets/configs/mcp_config.py +0 -0
  144. {agentcrew_ai-0.8.8 → agentcrew_ai-0.8.10}/AgentCrew/modules/gui/widgets/configs/save_worker.py +0 -0
  145. {agentcrew_ai-0.8.8 → agentcrew_ai-0.8.10}/AgentCrew/modules/gui/widgets/diff_widget.py +0 -0
  146. {agentcrew_ai-0.8.8 → agentcrew_ai-0.8.10}/AgentCrew/modules/gui/widgets/history_sidebar.py +0 -0
  147. {agentcrew_ai-0.8.8 → agentcrew_ai-0.8.10}/AgentCrew/modules/gui/widgets/json_editor.py +0 -0
  148. {agentcrew_ai-0.8.8 → agentcrew_ai-0.8.10}/AgentCrew/modules/gui/widgets/loading_overlay.py +0 -0
  149. {agentcrew_ai-0.8.8 → agentcrew_ai-0.8.10}/AgentCrew/modules/gui/widgets/markdown_editor.py +0 -0
  150. {agentcrew_ai-0.8.8 → agentcrew_ai-0.8.10}/AgentCrew/modules/gui/widgets/message_bubble.py +0 -0
  151. {agentcrew_ai-0.8.8 → agentcrew_ai-0.8.10}/AgentCrew/modules/gui/widgets/paste_aware_textedit.py +0 -0
  152. {agentcrew_ai-0.8.8 → agentcrew_ai-0.8.10}/AgentCrew/modules/gui/widgets/system_message.py +0 -0
  153. {agentcrew_ai-0.8.8 → agentcrew_ai-0.8.10}/AgentCrew/modules/gui/widgets/token_usage.py +0 -0
  154. {agentcrew_ai-0.8.8 → agentcrew_ai-0.8.10}/AgentCrew/modules/gui/widgets/tool_widget.py +0 -0
  155. {agentcrew_ai-0.8.8 → agentcrew_ai-0.8.10}/AgentCrew/modules/gui/worker.py +0 -0
  156. {agentcrew_ai-0.8.8 → agentcrew_ai-0.8.10}/AgentCrew/modules/image_generation/__init__.py +0 -0
  157. {agentcrew_ai-0.8.8 → agentcrew_ai-0.8.10}/AgentCrew/modules/image_generation/service.py +0 -0
  158. {agentcrew_ai-0.8.8 → agentcrew_ai-0.8.10}/AgentCrew/modules/image_generation/tool.py +0 -0
  159. {agentcrew_ai-0.8.8 → agentcrew_ai-0.8.10}/AgentCrew/modules/llm/__init__.py +0 -0
  160. {agentcrew_ai-0.8.8 → agentcrew_ai-0.8.10}/AgentCrew/modules/llm/base.py +0 -0
  161. {agentcrew_ai-0.8.8 → agentcrew_ai-0.8.10}/AgentCrew/modules/llm/model_registry.py +0 -0
  162. {agentcrew_ai-0.8.8 → agentcrew_ai-0.8.10}/AgentCrew/modules/llm/service_manager.py +0 -0
  163. {agentcrew_ai-0.8.8 → agentcrew_ai-0.8.10}/AgentCrew/modules/llm/types.py +0 -0
  164. {agentcrew_ai-0.8.8 → agentcrew_ai-0.8.10}/AgentCrew/modules/mcpclient/__init__.py +0 -0
  165. {agentcrew_ai-0.8.8 → agentcrew_ai-0.8.10}/AgentCrew/modules/mcpclient/auth.py +0 -0
  166. {agentcrew_ai-0.8.8 → agentcrew_ai-0.8.10}/AgentCrew/modules/mcpclient/config.py +0 -0
  167. {agentcrew_ai-0.8.8 → agentcrew_ai-0.8.10}/AgentCrew/modules/mcpclient/manager.py +0 -0
  168. {agentcrew_ai-0.8.8 → agentcrew_ai-0.8.10}/AgentCrew/modules/mcpclient/service.py +0 -0
  169. {agentcrew_ai-0.8.8 → agentcrew_ai-0.8.10}/AgentCrew/modules/mcpclient/tool.py +0 -0
  170. {agentcrew_ai-0.8.8 → agentcrew_ai-0.8.10}/AgentCrew/modules/memory/__init__.py +0 -0
  171. {agentcrew_ai-0.8.8 → agentcrew_ai-0.8.10}/AgentCrew/modules/memory/base_service.py +0 -0
  172. {agentcrew_ai-0.8.8 → agentcrew_ai-0.8.10}/AgentCrew/modules/memory/chroma_service.py +0 -0
  173. {agentcrew_ai-0.8.8 → agentcrew_ai-0.8.10}/AgentCrew/modules/memory/context_persistent.py +0 -0
  174. {agentcrew_ai-0.8.8 → agentcrew_ai-0.8.10}/AgentCrew/modules/memory/github_copilot_ef.py +0 -0
  175. {agentcrew_ai-0.8.8 → agentcrew_ai-0.8.10}/AgentCrew/modules/memory/google_genai_ef.py +0 -0
  176. {agentcrew_ai-0.8.8 → agentcrew_ai-0.8.10}/AgentCrew/modules/memory/tool.py +0 -0
  177. {agentcrew_ai-0.8.8 → agentcrew_ai-0.8.10}/AgentCrew/modules/memory/voyageai_ef.py +0 -0
  178. {agentcrew_ai-0.8.8 → agentcrew_ai-0.8.10}/AgentCrew/modules/openai/__init__.py +0 -0
  179. {agentcrew_ai-0.8.8 → agentcrew_ai-0.8.10}/AgentCrew/modules/openai/service.py +0 -0
  180. {agentcrew_ai-0.8.8 → agentcrew_ai-0.8.10}/AgentCrew/modules/prompts/__init__.py +0 -0
  181. {agentcrew_ai-0.8.8 → agentcrew_ai-0.8.10}/AgentCrew/modules/prompts/constants.py +0 -0
  182. {agentcrew_ai-0.8.8 → agentcrew_ai-0.8.10}/AgentCrew/modules/tools/README.md +0 -0
  183. {agentcrew_ai-0.8.8 → agentcrew_ai-0.8.10}/AgentCrew/modules/tools/registration.py +0 -0
  184. {agentcrew_ai-0.8.8 → agentcrew_ai-0.8.10}/AgentCrew/modules/tools/registry.py +0 -0
  185. {agentcrew_ai-0.8.8 → agentcrew_ai-0.8.10}/AgentCrew/modules/voice/__init__.py +0 -0
  186. {agentcrew_ai-0.8.8 → agentcrew_ai-0.8.10}/AgentCrew/modules/voice/audio_handler.py +0 -0
  187. {agentcrew_ai-0.8.8 → agentcrew_ai-0.8.10}/AgentCrew/modules/voice/base.py +0 -0
  188. {agentcrew_ai-0.8.8 → agentcrew_ai-0.8.10}/AgentCrew/modules/voice/deepinfra_service.py +0 -0
  189. {agentcrew_ai-0.8.8 → agentcrew_ai-0.8.10}/AgentCrew/modules/voice/elevenlabs_service.py +0 -0
  190. {agentcrew_ai-0.8.8 → agentcrew_ai-0.8.10}/AgentCrew/modules/voice/text_cleaner.py +0 -0
  191. {agentcrew_ai-0.8.8 → agentcrew_ai-0.8.10}/AgentCrew/modules/web_search/__init__.py +0 -0
  192. {agentcrew_ai-0.8.8 → agentcrew_ai-0.8.10}/AgentCrew/modules/web_search/service.py +0 -0
  193. {agentcrew_ai-0.8.8 → agentcrew_ai-0.8.10}/AgentCrew/modules/web_search/tool.py +0 -0
  194. {agentcrew_ai-0.8.8 → agentcrew_ai-0.8.10}/CONTRIBUTING.md +0 -0
  195. {agentcrew_ai-0.8.8 → agentcrew_ai-0.8.10}/LICENSE +0 -0
  196. {agentcrew_ai-0.8.8 → agentcrew_ai-0.8.10}/MANIFEST.in +0 -0
  197. {agentcrew_ai-0.8.8 → agentcrew_ai-0.8.10}/README.md +0 -0
  198. {agentcrew_ai-0.8.8 → agentcrew_ai-0.8.10}/agentcrew_ai.egg-info/SOURCES.txt +0 -0
  199. {agentcrew_ai-0.8.8 → agentcrew_ai-0.8.10}/agentcrew_ai.egg-info/dependency_links.txt +0 -0
  200. {agentcrew_ai-0.8.8 → agentcrew_ai-0.8.10}/agentcrew_ai.egg-info/entry_points.txt +0 -0
  201. {agentcrew_ai-0.8.8 → agentcrew_ai-0.8.10}/agentcrew_ai.egg-info/top_level.txt +0 -0
  202. {agentcrew_ai-0.8.8 → agentcrew_ai-0.8.10}/setup.cfg +0 -0
@@ -0,0 +1 @@
1
+ __version__ = "0.8.10"
@@ -43,6 +43,41 @@ PROVIDER_LIST = [
43
43
  ]
44
44
 
45
45
 
46
+ def common_options(func):
47
+ import functools
48
+
49
+ @click.option(
50
+ "--provider",
51
+ type=click.Choice(PROVIDER_LIST),
52
+ default=None,
53
+ help="LLM provider to use (claude, groq, openai, google, github_copilot, or deepinfra)",
54
+ )
55
+ @click.option(
56
+ "--agent-config",
57
+ default=None,
58
+ help="Path/URL to the agent configuration file.",
59
+ )
60
+ @click.option(
61
+ "--mcp-config", default=None, help="Path to the mcp servers configuration file."
62
+ )
63
+ @click.option(
64
+ "--memory-llm",
65
+ type=click.Choice(
66
+ ["claude", "groq", "openai", "google", "deepinfra", "github_copilot"]
67
+ ),
68
+ default=None,
69
+ help="LLM Model use for analyzing and processing memory",
70
+ )
71
+ @click.option(
72
+ "--memory-path", default=None, help="Path to the memory database location"
73
+ )
74
+ @functools.wraps(func)
75
+ def wrapper(*args, **kwargs):
76
+ return func(*args, **kwargs)
77
+
78
+ return wrapper
79
+
80
+
46
81
  class AgentCrewApplication:
47
82
  """
48
83
  Centralized application class for AgentCrew.
@@ -4,6 +4,7 @@ import sys
4
4
  import requests
5
5
  import subprocess
6
6
  import platform
7
+ from AgentCrew.app import common_options
7
8
 
8
9
 
9
10
  PROVIDER_LIST = [
@@ -48,38 +49,6 @@ def cli():
48
49
  )
49
50
 
50
51
 
51
- def common_options(func):
52
- import functools
53
-
54
- @click.option(
55
- "--provider",
56
- type=click.Choice(PROVIDER_LIST),
57
- default=None,
58
- help="LLM provider to use (claude, groq, openai, google, github_copilot, or deepinfra)",
59
- )
60
- @click.option(
61
- "--agent-config",
62
- default=None,
63
- help="Path/URL to the agent configuration file.",
64
- )
65
- @click.option(
66
- "--mcp-config", default=None, help="Path to the mcp servers configuration file."
67
- )
68
- @click.option(
69
- "--memory-llm",
70
- type=click.Choice(
71
- ["claude", "groq", "openai", "google", "deepinfra", "github_copilot"]
72
- ),
73
- default=None,
74
- help="LLM Model use for analyzing and processing memory",
75
- )
76
- @functools.wraps(func)
77
- def wrapper(*args, **kwargs):
78
- return func(*args, **kwargs)
79
-
80
- return wrapper
81
-
82
-
83
52
  def cli_prod():
84
53
  if sys.argv[1] == "--version":
85
54
  click.echo(f"AgentCrew version: {get_current_version()}")
@@ -251,11 +220,16 @@ def run_update_command():
251
220
  default=False,
252
221
  help="Enable voice input/output (if supported by the agent)",
253
222
  )
254
- def chat(provider, agent_config, mcp_config, memory_llm, console, with_voice):
223
+ def chat(
224
+ provider, agent_config, mcp_config, memory_llm, memory_path, console, with_voice
225
+ ):
255
226
  """Start an interactive chat session with LLM"""
256
227
  check_and_update()
257
228
  from AgentCrew.app import AgentCrewApplication
258
229
 
230
+ if memory_path:
231
+ os.environ["MEMORYDB_PATH"] = memory_path
232
+
259
233
  app = AgentCrewApplication()
260
234
 
261
235
  if console:
@@ -276,15 +250,19 @@ def a2a_server(
276
250
  port,
277
251
  base_url,
278
252
  provider,
279
- model_id,
280
253
  agent_config,
281
- api_key,
282
254
  mcp_config,
283
255
  memory_llm,
256
+ memory_path,
257
+ model_id,
258
+ api_key,
284
259
  ):
285
260
  """Start an A2A server exposing all SwissKnife agents"""
286
261
  from AgentCrew.app import AgentCrewApplication
287
262
 
263
+ if memory_path:
264
+ os.environ["MEMORYDB_PATH"] = memory_path
265
+
288
266
  app = AgentCrewApplication()
289
267
  app.run_server(
290
268
  host=host,
@@ -325,6 +303,7 @@ def job(
325
303
  agent_config,
326
304
  mcp_config,
327
305
  memory_llm,
306
+ memory_path,
328
307
  output_schema,
329
308
  task,
330
309
  files,
@@ -332,6 +311,9 @@ def job(
332
311
  """Run a single job/task with an agent"""
333
312
  from AgentCrew.app import AgentCrewApplication
334
313
 
314
+ if memory_path:
315
+ os.environ["MEMORYDB_PATH"] = memory_path
316
+
335
317
  try:
336
318
  app = AgentCrewApplication()
337
319
  response = app.run_job(
@@ -96,10 +96,13 @@ def get_current_version():
96
96
 
97
97
  @cli.command()
98
98
  @common_options
99
- def chat(provider, agent_config, mcp_config, memory_llm):
99
+ def chat(provider, agent_config, mcp_config, memory_llm, memory_path):
100
100
  """Start an interactive chat session with LLM"""
101
101
  from AgentCrew.app import AgentCrewApplication
102
102
 
103
+ if memory_path:
104
+ os.environ["MEMORYDB_PATH"] = memory_path
105
+
103
106
  app = AgentCrewApplication()
104
107
  app.run_console(provider, agent_config, mcp_config, memory_llm)
105
108
 
@@ -116,15 +119,19 @@ def a2a_server(
116
119
  port,
117
120
  base_url,
118
121
  provider,
119
- model_id,
120
122
  agent_config,
121
- api_key,
122
123
  mcp_config,
123
124
  memory_llm,
125
+ memory_path,
126
+ model_id,
127
+ api_key,
124
128
  ):
125
129
  """Start an A2A server exposing all SwissKnife agents"""
126
130
  from AgentCrew.app import AgentCrewApplication
127
131
 
132
+ if memory_path:
133
+ os.environ["MEMORYDB_PATH"] = memory_path
134
+
128
135
  app = AgentCrewApplication()
129
136
  app.run_server(
130
137
  host=host,
@@ -165,6 +172,7 @@ def job(
165
172
  agent_config,
166
173
  mcp_config,
167
174
  memory_llm,
175
+ memory_path,
168
176
  output_schema,
169
177
  task,
170
178
  files,
@@ -172,6 +180,9 @@ def job(
172
180
  """Run a single job/task with an agent"""
173
181
  from AgentCrew.app import AgentCrewApplication
174
182
 
183
+ if memory_path:
184
+ os.environ["MEMORYDB_PATH"] = memory_path
185
+
175
186
  try:
176
187
  app = AgentCrewApplication()
177
188
  response = app.run_job(
@@ -1,4 +1,4 @@
1
- import toml
1
+ import tomllib as toml
2
2
  import json
3
3
  from typing import Dict, Any, Optional, List
4
4
 
@@ -61,7 +61,7 @@ class AgentManager:
61
61
 
62
62
  try:
63
63
  if config_path.endswith(".toml"):
64
- with open(config_path, "r", encoding="utf-8") as file:
64
+ with open(config_path, "rb") as file:
65
65
  config = toml.load(file)
66
66
  elif config_path.endswith(".json"):
67
67
  with open(config_path, "r", encoding="utf-8") as file:
@@ -72,7 +72,7 @@ class AgentManager:
72
72
  )
73
73
  except FileNotFoundError:
74
74
  raise FileNotFoundError(f"Configuration file not found: {config_path}")
75
- except (toml.TomlDecodeError, json.JSONDecodeError):
75
+ except (toml.TOMLDecodeError, json.JSONDecodeError):
76
76
  raise ValueError("Invalid configuration file format.")
77
77
 
78
78
  # Filter enabled agents (default to True if enabled field is missing)
@@ -170,10 +170,6 @@ def extract_clickable_elements(chrome_interface, uuid_mapping: Dict[str, str]) -
170
170
  text = element.get("text", "").strip()
171
171
  element_type = element.get("type", "").strip()
172
172
 
173
- # Skip empty text entries
174
- if not text:
175
- continue
176
-
177
173
  # Generate UUID and store mapping
178
174
  element_uuid = str(uuid.uuid4())[:8] # Use first 8 characters for brevity
179
175
  uuid_mapping[element_uuid] = xpath
@@ -465,6 +465,15 @@ class MessageHandler(Observable):
465
465
  except GeneratorExit:
466
466
  return assistant_response, input_tokens, output_tokens
467
467
  except Exception as e:
468
+ from openai import BadRequestError
469
+
470
+ if isinstance(e, BadRequestError):
471
+ if e.code == "model_max_prompt_tokens_exceeded":
472
+ from AgentCrew.modules.agents import LocalAgent
473
+
474
+ if isinstance(self.agent, LocalAgent):
475
+ self.agent.input_tokens_usage = 128_000
476
+ return await self.get_assistant_response()
468
477
  if self.current_user_input:
469
478
  self.conversation_manager.store_conversation_turn(
470
479
  self.current_user_input, self.current_user_input_idx
@@ -1,6 +1,7 @@
1
1
  import os
2
2
  import json
3
- import toml
3
+ import tomllib as toml
4
+ from tomli_w import dump as toml_dump
4
5
  from typing import Dict, Any, Optional, List
5
6
  from datetime import datetime
6
7
  from loguru import logger
@@ -62,7 +63,8 @@ class ConfigManagement:
62
63
  self.config_data = json.load(f)
63
64
  self.file_format = "json"
64
65
  elif file_extension == ".toml":
65
- self.config_data = toml.load(self.config_path)
66
+ with open(self.config_path, "rb") as f:
67
+ self.config_data = toml.load(f)
66
68
  self.file_format = "toml"
67
69
  else:
68
70
  raise ValueError(f"Unsupported file format: {file_extension}")
@@ -96,8 +98,8 @@ class ConfigManagement:
96
98
  with open(self.config_path, "w", encoding="utf-8") as f:
97
99
  json.dump(self.config_data, f, indent=2)
98
100
  elif self.file_format == "toml":
99
- with open(self.config_path, "w", encoding="utf-8") as f:
100
- toml.dump(self.config_data, f)
101
+ with open(self.config_path, "wb") as f:
102
+ toml_dump(self.config_data, f, multiline_strings=True)
101
103
  else:
102
104
  raise ValueError(f"Unsupported file format: {self.file_format}")
103
105
  except Exception as e:
@@ -347,8 +349,8 @@ class ConfigManagement:
347
349
  os.makedirs(os.path.dirname(agents_config_path), exist_ok=True)
348
350
 
349
351
  # Create new config file
350
- with open(agents_config_path, "w", encoding="utf-8") as f:
351
- toml.dump(config_data, f)
352
+ with open(agents_config_path, "wb") as f:
353
+ toml_dump(config_data, f, multiline_strings=True)
352
354
 
353
355
  def reload_agents_from_config(self):
354
356
  from AgentCrew.modules.agents import RemoteAgent, LocalAgent, AgentManager
@@ -708,10 +710,11 @@ class ConfigManagement:
708
710
  os.makedirs(output_dir, exist_ok=True)
709
711
 
710
712
  # Write to file
711
- with open(output_file, "w", encoding="utf-8") as f:
712
- if file_format == "toml":
713
- toml.dump(export_config, f)
714
- else: # json
713
+ if file_format == "toml":
714
+ with open(output_file, "wb") as f:
715
+ toml_dump(export_config, f, multiline_strings=True)
716
+ else: # json
717
+ with open(output_file, "w", encoding="utf-8") as f:
715
718
  json.dump(export_config, f, indent=2, ensure_ascii=False)
716
719
 
717
720
  result["success"] = True
@@ -231,7 +231,9 @@ class CommandHandlers:
231
231
  """
232
232
  try:
233
233
  if file_or_url.startswith("@hub/"):
234
- hub_host = os.environ.get("AGENTCREW_HUB_HOST", "https://agentplace.cloud")
234
+ hub_host = os.environ.get(
235
+ "AGENTCREW_HUB_HOST", "https://agentplace.cloud"
236
+ )
235
237
  file_or_url = hub_host.rstrip("/") + "/" + file_or_url[5:]
236
238
 
237
239
  if file_or_url.startswith(("http://", "https://")):
@@ -72,6 +72,16 @@ _OPENAI_MODELS = [
72
72
  input_token_price_1m=1.25,
73
73
  output_token_price_1m=10,
74
74
  ),
75
+ Model(
76
+ id="gpt-5.2",
77
+ provider="openai",
78
+ name="GPT-5.2",
79
+ description="GPT-5 is our flagship model for coding, reasoning, and agentic tasks across domains",
80
+ capabilities=["tool_use", "vision", "thinking", "stream", "structured_output"],
81
+ max_context_token=400_000,
82
+ input_token_price_1m=1.25,
83
+ output_token_price_1m=10,
84
+ ),
75
85
  Model(
76
86
  id="gpt-5.1-codex",
77
87
  provider="openai",
@@ -90,6 +100,15 @@ _OPENAI_MODELS = [
90
100
  input_token_price_1m=0.25,
91
101
  output_token_price_1m=2.0,
92
102
  ),
103
+ Model(
104
+ id="gpt-5.1-codex-max",
105
+ provider="openai",
106
+ name="GPT-5.1 Codex Max",
107
+ description="GPT‑5.1-Codex-Max is purpose-built for agentic coding",
108
+ capabilities=["tool_use", "vision", "thinking", "stream", "structured_output"],
109
+ input_token_price_1m=1.25,
110
+ output_token_price_1m=10.0,
111
+ ),
93
112
  Model(
94
113
  id="gpt-4.1-mini",
95
114
  provider="openai",
@@ -424,7 +443,7 @@ _GITHUB_COPILOT_MODELS = [
424
443
  provider="github_copilot",
425
444
  name="GPT 5",
426
445
  description="",
427
- capabilities=["tool_use", "vision", "stream", "structured_output"],
446
+ capabilities=["tool_use", "thinking", "vision", "stream", "structured_output"],
428
447
  default=False,
429
448
  input_token_price_1m=0.0,
430
449
  output_token_price_1m=0.0,
@@ -434,12 +453,24 @@ _GITHUB_COPILOT_MODELS = [
434
453
  provider="copilot_response",
435
454
  name="GPT 5 Codex",
436
455
  description="",
437
- capabilities=["tool_use", "vision", "stream", "structured_output"],
456
+ capabilities=["tool_use", "thinking", "vision", "stream", "structured_output"],
438
457
  default=False,
439
458
  input_token_price_1m=0.0,
440
459
  output_token_price_1m=0.0,
441
460
  endpoint="response",
442
461
  ),
462
+ Model(
463
+ id="gpt-5.1-codex-max",
464
+ provider="copilot_response",
465
+ name="GPT 5.1 Codex Max",
466
+ description="",
467
+ capabilities=["tool_use", "thinking", "vision", "stream", "structured_output"],
468
+ default=False,
469
+ max_context_token=400_000,
470
+ input_token_price_1m=0.0,
471
+ output_token_price_1m=0.0,
472
+ endpoint="response",
473
+ ),
443
474
  Model(
444
475
  id="gpt-5-mini",
445
476
  provider="github_copilot",
@@ -461,6 +492,17 @@ _GITHUB_COPILOT_MODELS = [
461
492
  input_token_price_1m=0.0,
462
493
  output_token_price_1m=0.0,
463
494
  ),
495
+ Model(
496
+ id="gpt-5.2",
497
+ provider="github_copilot",
498
+ name="GPT 5.2 Preview",
499
+ description="",
500
+ capabilities=["tool_use", "vision", "stream", "structured_output"],
501
+ max_context_token=264_000,
502
+ default=False,
503
+ input_token_price_1m=0.0,
504
+ output_token_price_1m=0.0,
505
+ ),
464
506
  Model(
465
507
  id="gpt-5.1-codex",
466
508
  provider="copilot_response",
@@ -225,7 +225,6 @@ class OpenAIResponseService(BaseLLMService):
225
225
  "input": input_data,
226
226
  "stream": True,
227
227
  "instructions": self.system_prompt or None,
228
- "temperature": self.temperature,
229
228
  }
230
229
 
231
230
  forced_sample_params = ModelRegistry.get_model_sample_params(full_model_id)
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: agentcrew-ai
3
- Version: 0.8.8
3
+ Version: 0.8.10
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
@@ -30,7 +30,6 @@ Requires-Dist: openai>=1.65.2
30
30
  Requires-Dist: tree-sitter>=0.23.2
31
31
  Requires-Dist: mcp>=1.3.0
32
32
  Requires-Dist: google-genai>=1.7.0
33
- Requires-Dist: toml>=0.10.2
34
33
  Requires-Dist: pyside6>=6.8.3
35
34
  Requires-Dist: markdown>=3.7
36
35
  Requires-Dist: tree-sitter-language-pack>=0.7.0
@@ -51,6 +50,7 @@ Requires-Dist: html-to-markdown>=2.9.1
51
50
  Requires-Dist: pip-system-certs>=5.2
52
51
  Requires-Dist: loguru>=0.7.3
53
52
  Requires-Dist: jsonschema>=4.25.1
53
+ Requires-Dist: tomli-w>=1.2.0
54
54
  Provides-Extra: cpu
55
55
  Requires-Dist: torch>=2.8.0; extra == "cpu"
56
56
  Requires-Dist: torchvision>=0.23.0; extra == "cpu"
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: agentcrew-ai
3
- Version: 0.8.8
3
+ Version: 0.8.10
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
@@ -30,7 +30,6 @@ Requires-Dist: openai>=1.65.2
30
30
  Requires-Dist: tree-sitter>=0.23.2
31
31
  Requires-Dist: mcp>=1.3.0
32
32
  Requires-Dist: google-genai>=1.7.0
33
- Requires-Dist: toml>=0.10.2
34
33
  Requires-Dist: pyside6>=6.8.3
35
34
  Requires-Dist: markdown>=3.7
36
35
  Requires-Dist: tree-sitter-language-pack>=0.7.0
@@ -51,6 +50,7 @@ Requires-Dist: html-to-markdown>=2.9.1
51
50
  Requires-Dist: pip-system-certs>=5.2
52
51
  Requires-Dist: loguru>=0.7.3
53
52
  Requires-Dist: jsonschema>=4.25.1
53
+ Requires-Dist: tomli-w>=1.2.0
54
54
  Provides-Extra: cpu
55
55
  Requires-Dist: torch>=2.8.0; extra == "cpu"
56
56
  Requires-Dist: torchvision>=0.23.0; extra == "cpu"
@@ -13,7 +13,6 @@ openai>=1.65.2
13
13
  tree-sitter>=0.23.2
14
14
  mcp>=1.3.0
15
15
  google-genai>=1.7.0
16
- toml>=0.10.2
17
16
  pyside6>=6.8.3
18
17
  markdown>=3.7
19
18
  tree-sitter-language-pack>=0.7.0
@@ -31,6 +30,7 @@ html-to-markdown>=2.9.1
31
30
  pip-system-certs>=5.2
32
31
  loguru>=0.7.3
33
32
  jsonschema>=4.25.1
33
+ tomli-w>=1.2.0
34
34
 
35
35
  [:python_version < "3.13" and sys_platform == "darwin"]
36
36
  numpy<2,>=1.24.4
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "agentcrew-ai"
3
- version = "0.8.8"
3
+ version = "0.8.10"
4
4
  requires-python = ">=3.12"
5
5
  classifiers = [
6
6
  "Programming Language :: Python :: 3",
@@ -34,7 +34,6 @@ dependencies = [
34
34
  "tree-sitter>=0.23.2",
35
35
  "mcp>=1.3.0",
36
36
  "google-genai>=1.7.0",
37
- "toml>=0.10.2",
38
37
  "pyside6>=6.8.3",
39
38
  "markdown>=3.7",
40
39
  "tree-sitter-language-pack>=0.7.0",
@@ -55,6 +54,7 @@ dependencies = [
55
54
  "pip-system-certs>=5.2",
56
55
  "loguru>=0.7.3",
57
56
  "jsonschema>=4.25.1",
57
+ "tomli-w>=1.2.0",
58
58
  ]
59
59
 
60
60
  [project.optional-dependencies]
@@ -1 +0,0 @@
1
- __version__ = "0.8.8"