aiecs 1.4.3__tar.gz → 1.4.5__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.

Potentially problematic release.


This version of aiecs might be problematic. Click here for more details.

Files changed (209) hide show
  1. {aiecs-1.4.3/aiecs.egg-info → aiecs-1.4.5}/PKG-INFO +1 -1
  2. {aiecs-1.4.3 → aiecs-1.4.5}/aiecs/__init__.py +1 -1
  3. {aiecs-1.4.3 → aiecs-1.4.5}/aiecs/main.py +2 -2
  4. {aiecs-1.4.3 → aiecs-1.4.5}/aiecs/tools/docs/ai_document_writer_orchestrator.py +8 -4
  5. {aiecs-1.4.3 → aiecs-1.4.5}/aiecs/tools/docs/document_parser_tool.py +7 -6
  6. {aiecs-1.4.3 → aiecs-1.4.5}/aiecs/tools/docs/document_writer_tool.py +9 -4
  7. {aiecs-1.4.3 → aiecs-1.4.5/aiecs.egg-info}/PKG-INFO +1 -1
  8. {aiecs-1.4.3 → aiecs-1.4.5}/pyproject.toml +1 -1
  9. {aiecs-1.4.3 → aiecs-1.4.5}/LICENSE +0 -0
  10. {aiecs-1.4.3 → aiecs-1.4.5}/MANIFEST.in +0 -0
  11. {aiecs-1.4.3 → aiecs-1.4.5}/README.md +0 -0
  12. {aiecs-1.4.3 → aiecs-1.4.5}/aiecs/__main__.py +0 -0
  13. {aiecs-1.4.3 → aiecs-1.4.5}/aiecs/aiecs_client.py +0 -0
  14. {aiecs-1.4.3 → aiecs-1.4.5}/aiecs/application/__init__.py +0 -0
  15. {aiecs-1.4.3 → aiecs-1.4.5}/aiecs/application/executors/__init__.py +0 -0
  16. {aiecs-1.4.3 → aiecs-1.4.5}/aiecs/application/executors/operation_executor.py +0 -0
  17. {aiecs-1.4.3 → aiecs-1.4.5}/aiecs/config/__init__.py +0 -0
  18. {aiecs-1.4.3 → aiecs-1.4.5}/aiecs/config/config.py +0 -0
  19. {aiecs-1.4.3 → aiecs-1.4.5}/aiecs/config/registry.py +0 -0
  20. {aiecs-1.4.3 → aiecs-1.4.5}/aiecs/core/__init__.py +0 -0
  21. {aiecs-1.4.3 → aiecs-1.4.5}/aiecs/core/interface/__init__.py +0 -0
  22. {aiecs-1.4.3 → aiecs-1.4.5}/aiecs/core/interface/execution_interface.py +0 -0
  23. {aiecs-1.4.3 → aiecs-1.4.5}/aiecs/core/interface/storage_interface.py +0 -0
  24. {aiecs-1.4.3 → aiecs-1.4.5}/aiecs/domain/__init__.py +0 -0
  25. {aiecs-1.4.3 → aiecs-1.4.5}/aiecs/domain/agent/__init__.py +0 -0
  26. {aiecs-1.4.3 → aiecs-1.4.5}/aiecs/domain/agent/base_agent.py +0 -0
  27. {aiecs-1.4.3 → aiecs-1.4.5}/aiecs/domain/agent/exceptions.py +0 -0
  28. {aiecs-1.4.3 → aiecs-1.4.5}/aiecs/domain/agent/hybrid_agent.py +0 -0
  29. {aiecs-1.4.3 → aiecs-1.4.5}/aiecs/domain/agent/integration/__init__.py +0 -0
  30. {aiecs-1.4.3 → aiecs-1.4.5}/aiecs/domain/agent/integration/context_compressor.py +0 -0
  31. {aiecs-1.4.3 → aiecs-1.4.5}/aiecs/domain/agent/integration/context_engine_adapter.py +0 -0
  32. {aiecs-1.4.3 → aiecs-1.4.5}/aiecs/domain/agent/integration/retry_policy.py +0 -0
  33. {aiecs-1.4.3 → aiecs-1.4.5}/aiecs/domain/agent/integration/role_config.py +0 -0
  34. {aiecs-1.4.3 → aiecs-1.4.5}/aiecs/domain/agent/lifecycle.py +0 -0
  35. {aiecs-1.4.3 → aiecs-1.4.5}/aiecs/domain/agent/llm_agent.py +0 -0
  36. {aiecs-1.4.3 → aiecs-1.4.5}/aiecs/domain/agent/memory/__init__.py +0 -0
  37. {aiecs-1.4.3 → aiecs-1.4.5}/aiecs/domain/agent/memory/conversation.py +0 -0
  38. {aiecs-1.4.3 → aiecs-1.4.5}/aiecs/domain/agent/migration/__init__.py +0 -0
  39. {aiecs-1.4.3 → aiecs-1.4.5}/aiecs/domain/agent/migration/conversion.py +0 -0
  40. {aiecs-1.4.3 → aiecs-1.4.5}/aiecs/domain/agent/migration/legacy_wrapper.py +0 -0
  41. {aiecs-1.4.3 → aiecs-1.4.5}/aiecs/domain/agent/models.py +0 -0
  42. {aiecs-1.4.3 → aiecs-1.4.5}/aiecs/domain/agent/observability.py +0 -0
  43. {aiecs-1.4.3 → aiecs-1.4.5}/aiecs/domain/agent/persistence.py +0 -0
  44. {aiecs-1.4.3 → aiecs-1.4.5}/aiecs/domain/agent/prompts/__init__.py +0 -0
  45. {aiecs-1.4.3 → aiecs-1.4.5}/aiecs/domain/agent/prompts/builder.py +0 -0
  46. {aiecs-1.4.3 → aiecs-1.4.5}/aiecs/domain/agent/prompts/formatters.py +0 -0
  47. {aiecs-1.4.3 → aiecs-1.4.5}/aiecs/domain/agent/prompts/template.py +0 -0
  48. {aiecs-1.4.3 → aiecs-1.4.5}/aiecs/domain/agent/registry.py +0 -0
  49. {aiecs-1.4.3 → aiecs-1.4.5}/aiecs/domain/agent/tool_agent.py +0 -0
  50. {aiecs-1.4.3 → aiecs-1.4.5}/aiecs/domain/agent/tools/__init__.py +0 -0
  51. {aiecs-1.4.3 → aiecs-1.4.5}/aiecs/domain/agent/tools/schema_generator.py +0 -0
  52. {aiecs-1.4.3 → aiecs-1.4.5}/aiecs/domain/community/__init__.py +0 -0
  53. {aiecs-1.4.3 → aiecs-1.4.5}/aiecs/domain/community/agent_adapter.py +0 -0
  54. {aiecs-1.4.3 → aiecs-1.4.5}/aiecs/domain/community/analytics.py +0 -0
  55. {aiecs-1.4.3 → aiecs-1.4.5}/aiecs/domain/community/collaborative_workflow.py +0 -0
  56. {aiecs-1.4.3 → aiecs-1.4.5}/aiecs/domain/community/communication_hub.py +0 -0
  57. {aiecs-1.4.3 → aiecs-1.4.5}/aiecs/domain/community/community_builder.py +0 -0
  58. {aiecs-1.4.3 → aiecs-1.4.5}/aiecs/domain/community/community_integration.py +0 -0
  59. {aiecs-1.4.3 → aiecs-1.4.5}/aiecs/domain/community/community_manager.py +0 -0
  60. {aiecs-1.4.3 → aiecs-1.4.5}/aiecs/domain/community/decision_engine.py +0 -0
  61. {aiecs-1.4.3 → aiecs-1.4.5}/aiecs/domain/community/exceptions.py +0 -0
  62. {aiecs-1.4.3 → aiecs-1.4.5}/aiecs/domain/community/models/__init__.py +0 -0
  63. {aiecs-1.4.3 → aiecs-1.4.5}/aiecs/domain/community/models/community_models.py +0 -0
  64. {aiecs-1.4.3 → aiecs-1.4.5}/aiecs/domain/community/resource_manager.py +0 -0
  65. {aiecs-1.4.3 → aiecs-1.4.5}/aiecs/domain/community/shared_context_manager.py +0 -0
  66. {aiecs-1.4.3 → aiecs-1.4.5}/aiecs/domain/context/__init__.py +0 -0
  67. {aiecs-1.4.3 → aiecs-1.4.5}/aiecs/domain/context/context_engine.py +0 -0
  68. {aiecs-1.4.3 → aiecs-1.4.5}/aiecs/domain/context/conversation_models.py +0 -0
  69. {aiecs-1.4.3 → aiecs-1.4.5}/aiecs/domain/execution/__init__.py +0 -0
  70. {aiecs-1.4.3 → aiecs-1.4.5}/aiecs/domain/execution/model.py +0 -0
  71. {aiecs-1.4.3 → aiecs-1.4.5}/aiecs/domain/task/__init__.py +0 -0
  72. {aiecs-1.4.3 → aiecs-1.4.5}/aiecs/domain/task/dsl_processor.py +0 -0
  73. {aiecs-1.4.3 → aiecs-1.4.5}/aiecs/domain/task/model.py +0 -0
  74. {aiecs-1.4.3 → aiecs-1.4.5}/aiecs/domain/task/task_context.py +0 -0
  75. {aiecs-1.4.3 → aiecs-1.4.5}/aiecs/infrastructure/__init__.py +0 -0
  76. {aiecs-1.4.3 → aiecs-1.4.5}/aiecs/infrastructure/messaging/__init__.py +0 -0
  77. {aiecs-1.4.3 → aiecs-1.4.5}/aiecs/infrastructure/messaging/celery_task_manager.py +0 -0
  78. {aiecs-1.4.3 → aiecs-1.4.5}/aiecs/infrastructure/messaging/websocket_manager.py +0 -0
  79. {aiecs-1.4.3 → aiecs-1.4.5}/aiecs/infrastructure/monitoring/__init__.py +0 -0
  80. {aiecs-1.4.3 → aiecs-1.4.5}/aiecs/infrastructure/monitoring/executor_metrics.py +0 -0
  81. {aiecs-1.4.3 → aiecs-1.4.5}/aiecs/infrastructure/monitoring/global_metrics_manager.py +0 -0
  82. {aiecs-1.4.3 → aiecs-1.4.5}/aiecs/infrastructure/monitoring/structured_logger.py +0 -0
  83. {aiecs-1.4.3 → aiecs-1.4.5}/aiecs/infrastructure/monitoring/tracing_manager.py +0 -0
  84. {aiecs-1.4.3 → aiecs-1.4.5}/aiecs/infrastructure/persistence/__init__.py +0 -0
  85. {aiecs-1.4.3 → aiecs-1.4.5}/aiecs/infrastructure/persistence/context_engine_client.py +0 -0
  86. {aiecs-1.4.3 → aiecs-1.4.5}/aiecs/infrastructure/persistence/database_manager.py +0 -0
  87. {aiecs-1.4.3 → aiecs-1.4.5}/aiecs/infrastructure/persistence/file_storage.py +0 -0
  88. {aiecs-1.4.3 → aiecs-1.4.5}/aiecs/infrastructure/persistence/redis_client.py +0 -0
  89. {aiecs-1.4.3 → aiecs-1.4.5}/aiecs/llm/__init__.py +0 -0
  90. {aiecs-1.4.3 → aiecs-1.4.5}/aiecs/llm/callbacks/__init__.py +0 -0
  91. {aiecs-1.4.3 → aiecs-1.4.5}/aiecs/llm/callbacks/custom_callbacks.py +0 -0
  92. {aiecs-1.4.3 → aiecs-1.4.5}/aiecs/llm/client_factory.py +0 -0
  93. {aiecs-1.4.3 → aiecs-1.4.5}/aiecs/llm/clients/__init__.py +0 -0
  94. {aiecs-1.4.3 → aiecs-1.4.5}/aiecs/llm/clients/base_client.py +0 -0
  95. {aiecs-1.4.3 → aiecs-1.4.5}/aiecs/llm/clients/googleai_client.py +0 -0
  96. {aiecs-1.4.3 → aiecs-1.4.5}/aiecs/llm/clients/openai_client.py +0 -0
  97. {aiecs-1.4.3 → aiecs-1.4.5}/aiecs/llm/clients/vertex_client.py +0 -0
  98. {aiecs-1.4.3 → aiecs-1.4.5}/aiecs/llm/clients/xai_client.py +0 -0
  99. {aiecs-1.4.3 → aiecs-1.4.5}/aiecs/llm/config/__init__.py +0 -0
  100. {aiecs-1.4.3 → aiecs-1.4.5}/aiecs/llm/config/config_loader.py +0 -0
  101. {aiecs-1.4.3 → aiecs-1.4.5}/aiecs/llm/config/config_validator.py +0 -0
  102. {aiecs-1.4.3 → aiecs-1.4.5}/aiecs/llm/config/model_config.py +0 -0
  103. {aiecs-1.4.3 → aiecs-1.4.5}/aiecs/llm/utils/__init__.py +0 -0
  104. {aiecs-1.4.3 → aiecs-1.4.5}/aiecs/llm/utils/validate_config.py +0 -0
  105. {aiecs-1.4.3 → aiecs-1.4.5}/aiecs/scripts/__init__.py +0 -0
  106. {aiecs-1.4.3 → aiecs-1.4.5}/aiecs/scripts/aid/VERSION_MANAGEMENT.md +0 -0
  107. {aiecs-1.4.3 → aiecs-1.4.5}/aiecs/scripts/aid/__init__.py +0 -0
  108. {aiecs-1.4.3 → aiecs-1.4.5}/aiecs/scripts/aid/version_manager.py +0 -0
  109. {aiecs-1.4.3 → aiecs-1.4.5}/aiecs/scripts/dependance_check/DEPENDENCY_SYSTEM_SUMMARY.md +0 -0
  110. {aiecs-1.4.3 → aiecs-1.4.5}/aiecs/scripts/dependance_check/README_DEPENDENCY_CHECKER.md +0 -0
  111. {aiecs-1.4.3 → aiecs-1.4.5}/aiecs/scripts/dependance_check/__init__.py +0 -0
  112. {aiecs-1.4.3 → aiecs-1.4.5}/aiecs/scripts/dependance_check/dependency_checker.py +0 -0
  113. {aiecs-1.4.3 → aiecs-1.4.5}/aiecs/scripts/dependance_check/dependency_fixer.py +0 -0
  114. {aiecs-1.4.3 → aiecs-1.4.5}/aiecs/scripts/dependance_check/download_nlp_data.py +0 -0
  115. {aiecs-1.4.3 → aiecs-1.4.5}/aiecs/scripts/dependance_check/quick_dependency_check.py +0 -0
  116. {aiecs-1.4.3 → aiecs-1.4.5}/aiecs/scripts/dependance_check/setup_nlp_data.sh +0 -0
  117. {aiecs-1.4.3 → aiecs-1.4.5}/aiecs/scripts/dependance_patch/__init__.py +0 -0
  118. {aiecs-1.4.3 → aiecs-1.4.5}/aiecs/scripts/dependance_patch/fix_weasel/README_WEASEL_PATCH.md +0 -0
  119. {aiecs-1.4.3 → aiecs-1.4.5}/aiecs/scripts/dependance_patch/fix_weasel/__init__.py +0 -0
  120. {aiecs-1.4.3 → aiecs-1.4.5}/aiecs/scripts/dependance_patch/fix_weasel/fix_weasel_validator.py +0 -0
  121. {aiecs-1.4.3 → aiecs-1.4.5}/aiecs/scripts/dependance_patch/fix_weasel/fix_weasel_validator.sh +0 -0
  122. {aiecs-1.4.3 → aiecs-1.4.5}/aiecs/scripts/dependance_patch/fix_weasel/patch_weasel_library.sh +0 -0
  123. {aiecs-1.4.3 → aiecs-1.4.5}/aiecs/scripts/dependance_patch/fix_weasel/run_weasel_patch.sh +0 -0
  124. {aiecs-1.4.3 → aiecs-1.4.5}/aiecs/scripts/tools_develop/README.md +0 -0
  125. {aiecs-1.4.3 → aiecs-1.4.5}/aiecs/scripts/tools_develop/TOOL_AUTO_DISCOVERY.md +0 -0
  126. {aiecs-1.4.3 → aiecs-1.4.5}/aiecs/scripts/tools_develop/__init__.py +0 -0
  127. {aiecs-1.4.3 → aiecs-1.4.5}/aiecs/scripts/tools_develop/check_type_annotations.py +0 -0
  128. {aiecs-1.4.3 → aiecs-1.4.5}/aiecs/scripts/tools_develop/validate_tool_schemas.py +0 -0
  129. {aiecs-1.4.3 → aiecs-1.4.5}/aiecs/scripts/tools_develop/verify_tools.py +0 -0
  130. {aiecs-1.4.3 → aiecs-1.4.5}/aiecs/tasks/__init__.py +0 -0
  131. {aiecs-1.4.3 → aiecs-1.4.5}/aiecs/tasks/worker.py +0 -0
  132. {aiecs-1.4.3 → aiecs-1.4.5}/aiecs/tools/__init__.py +0 -0
  133. {aiecs-1.4.3 → aiecs-1.4.5}/aiecs/tools/apisource/__init__.py +0 -0
  134. {aiecs-1.4.3 → aiecs-1.4.5}/aiecs/tools/apisource/intelligence/__init__.py +0 -0
  135. {aiecs-1.4.3 → aiecs-1.4.5}/aiecs/tools/apisource/intelligence/data_fusion.py +0 -0
  136. {aiecs-1.4.3 → aiecs-1.4.5}/aiecs/tools/apisource/intelligence/query_analyzer.py +0 -0
  137. {aiecs-1.4.3 → aiecs-1.4.5}/aiecs/tools/apisource/intelligence/search_enhancer.py +0 -0
  138. {aiecs-1.4.3 → aiecs-1.4.5}/aiecs/tools/apisource/monitoring/__init__.py +0 -0
  139. {aiecs-1.4.3 → aiecs-1.4.5}/aiecs/tools/apisource/monitoring/metrics.py +0 -0
  140. {aiecs-1.4.3 → aiecs-1.4.5}/aiecs/tools/apisource/providers/__init__.py +0 -0
  141. {aiecs-1.4.3 → aiecs-1.4.5}/aiecs/tools/apisource/providers/base.py +0 -0
  142. {aiecs-1.4.3 → aiecs-1.4.5}/aiecs/tools/apisource/providers/census.py +0 -0
  143. {aiecs-1.4.3 → aiecs-1.4.5}/aiecs/tools/apisource/providers/fred.py +0 -0
  144. {aiecs-1.4.3 → aiecs-1.4.5}/aiecs/tools/apisource/providers/newsapi.py +0 -0
  145. {aiecs-1.4.3 → aiecs-1.4.5}/aiecs/tools/apisource/providers/worldbank.py +0 -0
  146. {aiecs-1.4.3 → aiecs-1.4.5}/aiecs/tools/apisource/reliability/__init__.py +0 -0
  147. {aiecs-1.4.3 → aiecs-1.4.5}/aiecs/tools/apisource/reliability/error_handler.py +0 -0
  148. {aiecs-1.4.3 → aiecs-1.4.5}/aiecs/tools/apisource/reliability/fallback_strategy.py +0 -0
  149. {aiecs-1.4.3 → aiecs-1.4.5}/aiecs/tools/apisource/tool.py +0 -0
  150. {aiecs-1.4.3 → aiecs-1.4.5}/aiecs/tools/apisource/utils/__init__.py +0 -0
  151. {aiecs-1.4.3 → aiecs-1.4.5}/aiecs/tools/apisource/utils/validators.py +0 -0
  152. {aiecs-1.4.3 → aiecs-1.4.5}/aiecs/tools/base_tool.py +0 -0
  153. {aiecs-1.4.3 → aiecs-1.4.5}/aiecs/tools/docs/__init__.py +0 -0
  154. {aiecs-1.4.3 → aiecs-1.4.5}/aiecs/tools/docs/ai_document_orchestrator.py +0 -0
  155. {aiecs-1.4.3 → aiecs-1.4.5}/aiecs/tools/docs/content_insertion_tool.py +0 -0
  156. {aiecs-1.4.3 → aiecs-1.4.5}/aiecs/tools/docs/document_creator_tool.py +0 -0
  157. {aiecs-1.4.3 → aiecs-1.4.5}/aiecs/tools/docs/document_layout_tool.py +0 -0
  158. {aiecs-1.4.3 → aiecs-1.4.5}/aiecs/tools/langchain_adapter.py +0 -0
  159. {aiecs-1.4.3 → aiecs-1.4.5}/aiecs/tools/schema_generator.py +0 -0
  160. {aiecs-1.4.3 → aiecs-1.4.5}/aiecs/tools/search_tool/__init__.py +0 -0
  161. {aiecs-1.4.3 → aiecs-1.4.5}/aiecs/tools/search_tool/analyzers.py +0 -0
  162. {aiecs-1.4.3 → aiecs-1.4.5}/aiecs/tools/search_tool/cache.py +0 -0
  163. {aiecs-1.4.3 → aiecs-1.4.5}/aiecs/tools/search_tool/constants.py +0 -0
  164. {aiecs-1.4.3 → aiecs-1.4.5}/aiecs/tools/search_tool/context.py +0 -0
  165. {aiecs-1.4.3 → aiecs-1.4.5}/aiecs/tools/search_tool/core.py +0 -0
  166. {aiecs-1.4.3 → aiecs-1.4.5}/aiecs/tools/search_tool/deduplicator.py +0 -0
  167. {aiecs-1.4.3 → aiecs-1.4.5}/aiecs/tools/search_tool/error_handler.py +0 -0
  168. {aiecs-1.4.3 → aiecs-1.4.5}/aiecs/tools/search_tool/metrics.py +0 -0
  169. {aiecs-1.4.3 → aiecs-1.4.5}/aiecs/tools/search_tool/rate_limiter.py +0 -0
  170. {aiecs-1.4.3 → aiecs-1.4.5}/aiecs/tools/search_tool/schemas.py +0 -0
  171. {aiecs-1.4.3 → aiecs-1.4.5}/aiecs/tools/statistics/__init__.py +0 -0
  172. {aiecs-1.4.3 → aiecs-1.4.5}/aiecs/tools/statistics/ai_data_analysis_orchestrator.py +0 -0
  173. {aiecs-1.4.3 → aiecs-1.4.5}/aiecs/tools/statistics/ai_insight_generator_tool.py +0 -0
  174. {aiecs-1.4.3 → aiecs-1.4.5}/aiecs/tools/statistics/ai_report_orchestrator_tool.py +0 -0
  175. {aiecs-1.4.3 → aiecs-1.4.5}/aiecs/tools/statistics/data_loader_tool.py +0 -0
  176. {aiecs-1.4.3 → aiecs-1.4.5}/aiecs/tools/statistics/data_profiler_tool.py +0 -0
  177. {aiecs-1.4.3 → aiecs-1.4.5}/aiecs/tools/statistics/data_transformer_tool.py +0 -0
  178. {aiecs-1.4.3 → aiecs-1.4.5}/aiecs/tools/statistics/data_visualizer_tool.py +0 -0
  179. {aiecs-1.4.3 → aiecs-1.4.5}/aiecs/tools/statistics/model_trainer_tool.py +0 -0
  180. {aiecs-1.4.3 → aiecs-1.4.5}/aiecs/tools/statistics/statistical_analyzer_tool.py +0 -0
  181. {aiecs-1.4.3 → aiecs-1.4.5}/aiecs/tools/task_tools/__init__.py +0 -0
  182. {aiecs-1.4.3 → aiecs-1.4.5}/aiecs/tools/task_tools/chart_tool.py +0 -0
  183. {aiecs-1.4.3 → aiecs-1.4.5}/aiecs/tools/task_tools/classfire_tool.py +0 -0
  184. {aiecs-1.4.3 → aiecs-1.4.5}/aiecs/tools/task_tools/image_tool.py +0 -0
  185. {aiecs-1.4.3 → aiecs-1.4.5}/aiecs/tools/task_tools/office_tool.py +0 -0
  186. {aiecs-1.4.3 → aiecs-1.4.5}/aiecs/tools/task_tools/pandas_tool.py +0 -0
  187. {aiecs-1.4.3 → aiecs-1.4.5}/aiecs/tools/task_tools/report_tool.py +0 -0
  188. {aiecs-1.4.3 → aiecs-1.4.5}/aiecs/tools/task_tools/research_tool.py +0 -0
  189. {aiecs-1.4.3 → aiecs-1.4.5}/aiecs/tools/task_tools/scraper_tool.py +0 -0
  190. {aiecs-1.4.3 → aiecs-1.4.5}/aiecs/tools/task_tools/stats_tool.py +0 -0
  191. {aiecs-1.4.3 → aiecs-1.4.5}/aiecs/tools/temp_file_manager.py +0 -0
  192. {aiecs-1.4.3 → aiecs-1.4.5}/aiecs/tools/tool_executor/__init__.py +0 -0
  193. {aiecs-1.4.3 → aiecs-1.4.5}/aiecs/tools/tool_executor/tool_executor.py +0 -0
  194. {aiecs-1.4.3 → aiecs-1.4.5}/aiecs/utils/LLM_output_structor.py +0 -0
  195. {aiecs-1.4.3 → aiecs-1.4.5}/aiecs/utils/__init__.py +0 -0
  196. {aiecs-1.4.3 → aiecs-1.4.5}/aiecs/utils/base_callback.py +0 -0
  197. {aiecs-1.4.3 → aiecs-1.4.5}/aiecs/utils/cache_provider.py +0 -0
  198. {aiecs-1.4.3 → aiecs-1.4.5}/aiecs/utils/execution_utils.py +0 -0
  199. {aiecs-1.4.3 → aiecs-1.4.5}/aiecs/utils/logging.py +0 -0
  200. {aiecs-1.4.3 → aiecs-1.4.5}/aiecs/utils/prompt_loader.py +0 -0
  201. {aiecs-1.4.3 → aiecs-1.4.5}/aiecs/utils/token_usage_repository.py +0 -0
  202. {aiecs-1.4.3 → aiecs-1.4.5}/aiecs/ws/__init__.py +0 -0
  203. {aiecs-1.4.3 → aiecs-1.4.5}/aiecs/ws/socket_server.py +0 -0
  204. {aiecs-1.4.3 → aiecs-1.4.5}/aiecs.egg-info/SOURCES.txt +0 -0
  205. {aiecs-1.4.3 → aiecs-1.4.5}/aiecs.egg-info/dependency_links.txt +0 -0
  206. {aiecs-1.4.3 → aiecs-1.4.5}/aiecs.egg-info/entry_points.txt +0 -0
  207. {aiecs-1.4.3 → aiecs-1.4.5}/aiecs.egg-info/requires.txt +0 -0
  208. {aiecs-1.4.3 → aiecs-1.4.5}/aiecs.egg-info/top_level.txt +0 -0
  209. {aiecs-1.4.3 → aiecs-1.4.5}/setup.cfg +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: aiecs
3
- Version: 1.4.3
3
+ Version: 1.4.5
4
4
  Summary: AI Execute Services - A middleware framework for AI-powered task execution and tool orchestration
5
5
  Author-email: AIECS Team <iretbl@gmail.com>
6
6
  License-Expression: MIT
@@ -5,7 +5,7 @@ A powerful Python middleware framework for building AI-powered applications
5
5
  with tool orchestration, task execution, and multi-provider LLM support.
6
6
  """
7
7
 
8
- __version__ = "1.4.3"
8
+ __version__ = "1.4.5"
9
9
  __author__ = "AIECS Team"
10
10
  __email__ = "iretbl@gmail.com"
11
11
 
@@ -142,7 +142,7 @@ async def lifespan(app: FastAPI):
142
142
  app = FastAPI(
143
143
  title="AIECS - AI Execute Services",
144
144
  description="Middleware service for AI-powered task execution and tool orchestration",
145
- version="1.4.3",
145
+ version="1.4.5",
146
146
  lifespan=lifespan
147
147
  )
148
148
 
@@ -167,7 +167,7 @@ async def health_check():
167
167
  return {
168
168
  "status": "healthy",
169
169
  "service": "aiecs",
170
- "version": "1.4.3"
170
+ "version": "1.4.5"
171
171
  }
172
172
 
173
173
 
@@ -6,7 +6,8 @@ from typing import Dict, Any, List, Optional, Union, Callable
6
6
  from enum import Enum
7
7
  from datetime import datetime
8
8
 
9
- from pydantic import BaseModel, Field, ValidationError, ConfigDict
9
+ from pydantic import BaseModel, Field, ValidationError
10
+ from pydantic_settings import BaseSettings, SettingsConfigDict
10
11
 
11
12
  from aiecs.tools.base_tool import BaseTool
12
13
  from aiecs.tools import register_tool
@@ -85,9 +86,12 @@ class AIDocumentWriterOrchestrator(BaseTool):
85
86
  """
86
87
 
87
88
  # Configuration schema
88
- class Config(BaseModel):
89
- """Configuration for the AI document writer orchestrator tool"""
90
- model_config = ConfigDict(env_prefix="AI_DOC_WRITER_")
89
+ class Config(BaseSettings):
90
+ """Configuration for the AI document writer orchestrator tool
91
+
92
+ Automatically reads from environment variables with AI_DOC_WRITER_ prefix.
93
+ """
94
+ model_config = SettingsConfigDict(env_prefix="AI_DOC_WRITER_")
91
95
 
92
96
  default_ai_provider: str = Field(
93
97
  default="openai",
@@ -10,7 +10,8 @@ from pathlib import Path
10
10
  import tempfile
11
11
 
12
12
  import httpx
13
- from pydantic import BaseModel, Field, ValidationError, ConfigDict
13
+ from pydantic import BaseModel, Field, ValidationError
14
+ from pydantic_settings import BaseSettings, SettingsConfigDict
14
15
 
15
16
  from aiecs.tools.base_tool import BaseTool
16
17
  from aiecs.tools import register_tool
@@ -87,13 +88,13 @@ class DocumentParserTool(BaseTool):
87
88
  """
88
89
 
89
90
  # Configuration schema
90
- class Config(BaseModel):
91
+ class Config(BaseSettings):
91
92
  """Configuration for the document parser tool
92
93
 
93
94
  Automatically reads from environment variables with DOC_PARSER_ prefix.
94
95
  Example: DOC_PARSER_GCS_PROJECT_ID -> gcs_project_id
95
96
  """
96
- model_config = ConfigDict(env_prefix="DOC_PARSER_")
97
+ model_config = SettingsConfigDict(env_prefix="DOC_PARSER_")
97
98
 
98
99
  user_agent: str = Field(
99
100
  default="DocumentParser/1.0",
@@ -136,9 +137,9 @@ class DocumentParserTool(BaseTool):
136
137
  """Initialize DocumentParserTool with settings"""
137
138
  super().__init__(config)
138
139
 
139
- # Parse configuration
140
- # If config is None or empty, let Pydantic read from environment variables
141
- # This ensures that get_tool() can properly load config from .env files
140
+ # Parse configuration with BaseSettings
141
+ # BaseSettings automatically reads from environment variables with DOC_PARSER_ prefix
142
+ # Config dict values override environment variables
142
143
  if config:
143
144
  # Filter out None values to allow env vars to be used for missing keys
144
145
  filtered_config = {k: v for k, v in config.items() if v is not None}
@@ -12,8 +12,9 @@ from datetime import datetime
12
12
  from pathlib import Path
13
13
  import tempfile
14
14
 
15
- from pydantic import BaseModel, Field, ConfigDict
15
+ from pydantic import BaseModel, Field
16
16
  from pydantic import ValidationError as PydanticValidationError
17
+ from pydantic_settings import BaseSettings, SettingsConfigDict
17
18
 
18
19
  from aiecs.tools.base_tool import BaseTool
19
20
  from aiecs.tools import register_tool
@@ -142,9 +143,13 @@ class DocumentWriterTool(BaseTool):
142
143
  """
143
144
 
144
145
  # Configuration schema
145
- class Config(BaseModel):
146
- """Configuration for the document writer tool"""
147
- model_config = ConfigDict(env_prefix="DOC_WRITER_")
146
+ class Config(BaseSettings):
147
+ """Configuration for the document writer tool
148
+
149
+ Automatically reads from environment variables with DOC_WRITER_ prefix.
150
+ Example: DOC_WRITER_GCS_PROJECT_ID -> gcs_project_id
151
+ """
152
+ model_config = SettingsConfigDict(env_prefix="DOC_WRITER_")
148
153
 
149
154
  temp_dir: str = Field(
150
155
  default=os.path.join(tempfile.gettempdir(), 'document_writer'),
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: aiecs
3
- Version: 1.4.3
3
+ Version: 1.4.5
4
4
  Summary: AI Execute Services - A middleware framework for AI-powered task execution and tool orchestration
5
5
  Author-email: AIECS Team <iretbl@gmail.com>
6
6
  License-Expression: MIT
@@ -28,7 +28,7 @@ pytest-timeout = "^2.4.0"
28
28
 
29
29
  [project]
30
30
  name = "aiecs"
31
- version = "1.4.3"
31
+ version = "1.4.5"
32
32
  description = "AI Execute Services - A middleware framework for AI-powered task execution and tool orchestration"
33
33
  authors = [
34
34
  {name = "AIECS Team", email = "iretbl@gmail.com"}
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes