aiecs 1.4.1__tar.gz → 1.4.2__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.
- {aiecs-1.4.1/aiecs.egg-info → aiecs-1.4.2}/PKG-INFO +1 -1
- {aiecs-1.4.1 → aiecs-1.4.2}/aiecs/__init__.py +1 -1
- {aiecs-1.4.1 → aiecs-1.4.2}/aiecs/infrastructure/persistence/file_storage.py +30 -7
- {aiecs-1.4.1 → aiecs-1.4.2}/aiecs/main.py +2 -2
- {aiecs-1.4.1 → aiecs-1.4.2/aiecs.egg-info}/PKG-INFO +1 -1
- {aiecs-1.4.1 → aiecs-1.4.2}/pyproject.toml +1 -1
- {aiecs-1.4.1 → aiecs-1.4.2}/LICENSE +0 -0
- {aiecs-1.4.1 → aiecs-1.4.2}/MANIFEST.in +0 -0
- {aiecs-1.4.1 → aiecs-1.4.2}/README.md +0 -0
- {aiecs-1.4.1 → aiecs-1.4.2}/aiecs/__main__.py +0 -0
- {aiecs-1.4.1 → aiecs-1.4.2}/aiecs/aiecs_client.py +0 -0
- {aiecs-1.4.1 → aiecs-1.4.2}/aiecs/application/__init__.py +0 -0
- {aiecs-1.4.1 → aiecs-1.4.2}/aiecs/application/executors/__init__.py +0 -0
- {aiecs-1.4.1 → aiecs-1.4.2}/aiecs/application/executors/operation_executor.py +0 -0
- {aiecs-1.4.1 → aiecs-1.4.2}/aiecs/config/__init__.py +0 -0
- {aiecs-1.4.1 → aiecs-1.4.2}/aiecs/config/config.py +0 -0
- {aiecs-1.4.1 → aiecs-1.4.2}/aiecs/config/registry.py +0 -0
- {aiecs-1.4.1 → aiecs-1.4.2}/aiecs/core/__init__.py +0 -0
- {aiecs-1.4.1 → aiecs-1.4.2}/aiecs/core/interface/__init__.py +0 -0
- {aiecs-1.4.1 → aiecs-1.4.2}/aiecs/core/interface/execution_interface.py +0 -0
- {aiecs-1.4.1 → aiecs-1.4.2}/aiecs/core/interface/storage_interface.py +0 -0
- {aiecs-1.4.1 → aiecs-1.4.2}/aiecs/domain/__init__.py +0 -0
- {aiecs-1.4.1 → aiecs-1.4.2}/aiecs/domain/agent/__init__.py +0 -0
- {aiecs-1.4.1 → aiecs-1.4.2}/aiecs/domain/agent/base_agent.py +0 -0
- {aiecs-1.4.1 → aiecs-1.4.2}/aiecs/domain/agent/exceptions.py +0 -0
- {aiecs-1.4.1 → aiecs-1.4.2}/aiecs/domain/agent/hybrid_agent.py +0 -0
- {aiecs-1.4.1 → aiecs-1.4.2}/aiecs/domain/agent/integration/__init__.py +0 -0
- {aiecs-1.4.1 → aiecs-1.4.2}/aiecs/domain/agent/integration/context_compressor.py +0 -0
- {aiecs-1.4.1 → aiecs-1.4.2}/aiecs/domain/agent/integration/context_engine_adapter.py +0 -0
- {aiecs-1.4.1 → aiecs-1.4.2}/aiecs/domain/agent/integration/retry_policy.py +0 -0
- {aiecs-1.4.1 → aiecs-1.4.2}/aiecs/domain/agent/integration/role_config.py +0 -0
- {aiecs-1.4.1 → aiecs-1.4.2}/aiecs/domain/agent/lifecycle.py +0 -0
- {aiecs-1.4.1 → aiecs-1.4.2}/aiecs/domain/agent/llm_agent.py +0 -0
- {aiecs-1.4.1 → aiecs-1.4.2}/aiecs/domain/agent/memory/__init__.py +0 -0
- {aiecs-1.4.1 → aiecs-1.4.2}/aiecs/domain/agent/memory/conversation.py +0 -0
- {aiecs-1.4.1 → aiecs-1.4.2}/aiecs/domain/agent/migration/__init__.py +0 -0
- {aiecs-1.4.1 → aiecs-1.4.2}/aiecs/domain/agent/migration/conversion.py +0 -0
- {aiecs-1.4.1 → aiecs-1.4.2}/aiecs/domain/agent/migration/legacy_wrapper.py +0 -0
- {aiecs-1.4.1 → aiecs-1.4.2}/aiecs/domain/agent/models.py +0 -0
- {aiecs-1.4.1 → aiecs-1.4.2}/aiecs/domain/agent/observability.py +0 -0
- {aiecs-1.4.1 → aiecs-1.4.2}/aiecs/domain/agent/persistence.py +0 -0
- {aiecs-1.4.1 → aiecs-1.4.2}/aiecs/domain/agent/prompts/__init__.py +0 -0
- {aiecs-1.4.1 → aiecs-1.4.2}/aiecs/domain/agent/prompts/builder.py +0 -0
- {aiecs-1.4.1 → aiecs-1.4.2}/aiecs/domain/agent/prompts/formatters.py +0 -0
- {aiecs-1.4.1 → aiecs-1.4.2}/aiecs/domain/agent/prompts/template.py +0 -0
- {aiecs-1.4.1 → aiecs-1.4.2}/aiecs/domain/agent/registry.py +0 -0
- {aiecs-1.4.1 → aiecs-1.4.2}/aiecs/domain/agent/tool_agent.py +0 -0
- {aiecs-1.4.1 → aiecs-1.4.2}/aiecs/domain/agent/tools/__init__.py +0 -0
- {aiecs-1.4.1 → aiecs-1.4.2}/aiecs/domain/agent/tools/schema_generator.py +0 -0
- {aiecs-1.4.1 → aiecs-1.4.2}/aiecs/domain/community/__init__.py +0 -0
- {aiecs-1.4.1 → aiecs-1.4.2}/aiecs/domain/community/agent_adapter.py +0 -0
- {aiecs-1.4.1 → aiecs-1.4.2}/aiecs/domain/community/analytics.py +0 -0
- {aiecs-1.4.1 → aiecs-1.4.2}/aiecs/domain/community/collaborative_workflow.py +0 -0
- {aiecs-1.4.1 → aiecs-1.4.2}/aiecs/domain/community/communication_hub.py +0 -0
- {aiecs-1.4.1 → aiecs-1.4.2}/aiecs/domain/community/community_builder.py +0 -0
- {aiecs-1.4.1 → aiecs-1.4.2}/aiecs/domain/community/community_integration.py +0 -0
- {aiecs-1.4.1 → aiecs-1.4.2}/aiecs/domain/community/community_manager.py +0 -0
- {aiecs-1.4.1 → aiecs-1.4.2}/aiecs/domain/community/decision_engine.py +0 -0
- {aiecs-1.4.1 → aiecs-1.4.2}/aiecs/domain/community/exceptions.py +0 -0
- {aiecs-1.4.1 → aiecs-1.4.2}/aiecs/domain/community/models/__init__.py +0 -0
- {aiecs-1.4.1 → aiecs-1.4.2}/aiecs/domain/community/models/community_models.py +0 -0
- {aiecs-1.4.1 → aiecs-1.4.2}/aiecs/domain/community/resource_manager.py +0 -0
- {aiecs-1.4.1 → aiecs-1.4.2}/aiecs/domain/community/shared_context_manager.py +0 -0
- {aiecs-1.4.1 → aiecs-1.4.2}/aiecs/domain/context/__init__.py +0 -0
- {aiecs-1.4.1 → aiecs-1.4.2}/aiecs/domain/context/context_engine.py +0 -0
- {aiecs-1.4.1 → aiecs-1.4.2}/aiecs/domain/context/conversation_models.py +0 -0
- {aiecs-1.4.1 → aiecs-1.4.2}/aiecs/domain/execution/__init__.py +0 -0
- {aiecs-1.4.1 → aiecs-1.4.2}/aiecs/domain/execution/model.py +0 -0
- {aiecs-1.4.1 → aiecs-1.4.2}/aiecs/domain/task/__init__.py +0 -0
- {aiecs-1.4.1 → aiecs-1.4.2}/aiecs/domain/task/dsl_processor.py +0 -0
- {aiecs-1.4.1 → aiecs-1.4.2}/aiecs/domain/task/model.py +0 -0
- {aiecs-1.4.1 → aiecs-1.4.2}/aiecs/domain/task/task_context.py +0 -0
- {aiecs-1.4.1 → aiecs-1.4.2}/aiecs/infrastructure/__init__.py +0 -0
- {aiecs-1.4.1 → aiecs-1.4.2}/aiecs/infrastructure/messaging/__init__.py +0 -0
- {aiecs-1.4.1 → aiecs-1.4.2}/aiecs/infrastructure/messaging/celery_task_manager.py +0 -0
- {aiecs-1.4.1 → aiecs-1.4.2}/aiecs/infrastructure/messaging/websocket_manager.py +0 -0
- {aiecs-1.4.1 → aiecs-1.4.2}/aiecs/infrastructure/monitoring/__init__.py +0 -0
- {aiecs-1.4.1 → aiecs-1.4.2}/aiecs/infrastructure/monitoring/executor_metrics.py +0 -0
- {aiecs-1.4.1 → aiecs-1.4.2}/aiecs/infrastructure/monitoring/global_metrics_manager.py +0 -0
- {aiecs-1.4.1 → aiecs-1.4.2}/aiecs/infrastructure/monitoring/structured_logger.py +0 -0
- {aiecs-1.4.1 → aiecs-1.4.2}/aiecs/infrastructure/monitoring/tracing_manager.py +0 -0
- {aiecs-1.4.1 → aiecs-1.4.2}/aiecs/infrastructure/persistence/__init__.py +0 -0
- {aiecs-1.4.1 → aiecs-1.4.2}/aiecs/infrastructure/persistence/context_engine_client.py +0 -0
- {aiecs-1.4.1 → aiecs-1.4.2}/aiecs/infrastructure/persistence/database_manager.py +0 -0
- {aiecs-1.4.1 → aiecs-1.4.2}/aiecs/infrastructure/persistence/redis_client.py +0 -0
- {aiecs-1.4.1 → aiecs-1.4.2}/aiecs/llm/__init__.py +0 -0
- {aiecs-1.4.1 → aiecs-1.4.2}/aiecs/llm/callbacks/__init__.py +0 -0
- {aiecs-1.4.1 → aiecs-1.4.2}/aiecs/llm/callbacks/custom_callbacks.py +0 -0
- {aiecs-1.4.1 → aiecs-1.4.2}/aiecs/llm/client_factory.py +0 -0
- {aiecs-1.4.1 → aiecs-1.4.2}/aiecs/llm/clients/__init__.py +0 -0
- {aiecs-1.4.1 → aiecs-1.4.2}/aiecs/llm/clients/base_client.py +0 -0
- {aiecs-1.4.1 → aiecs-1.4.2}/aiecs/llm/clients/googleai_client.py +0 -0
- {aiecs-1.4.1 → aiecs-1.4.2}/aiecs/llm/clients/openai_client.py +0 -0
- {aiecs-1.4.1 → aiecs-1.4.2}/aiecs/llm/clients/vertex_client.py +0 -0
- {aiecs-1.4.1 → aiecs-1.4.2}/aiecs/llm/clients/xai_client.py +0 -0
- {aiecs-1.4.1 → aiecs-1.4.2}/aiecs/llm/config/__init__.py +0 -0
- {aiecs-1.4.1 → aiecs-1.4.2}/aiecs/llm/config/config_loader.py +0 -0
- {aiecs-1.4.1 → aiecs-1.4.2}/aiecs/llm/config/config_validator.py +0 -0
- {aiecs-1.4.1 → aiecs-1.4.2}/aiecs/llm/config/model_config.py +0 -0
- {aiecs-1.4.1 → aiecs-1.4.2}/aiecs/llm/utils/__init__.py +0 -0
- {aiecs-1.4.1 → aiecs-1.4.2}/aiecs/llm/utils/validate_config.py +0 -0
- {aiecs-1.4.1 → aiecs-1.4.2}/aiecs/scripts/__init__.py +0 -0
- {aiecs-1.4.1 → aiecs-1.4.2}/aiecs/scripts/aid/VERSION_MANAGEMENT.md +0 -0
- {aiecs-1.4.1 → aiecs-1.4.2}/aiecs/scripts/aid/__init__.py +0 -0
- {aiecs-1.4.1 → aiecs-1.4.2}/aiecs/scripts/aid/version_manager.py +0 -0
- {aiecs-1.4.1 → aiecs-1.4.2}/aiecs/scripts/dependance_check/DEPENDENCY_SYSTEM_SUMMARY.md +0 -0
- {aiecs-1.4.1 → aiecs-1.4.2}/aiecs/scripts/dependance_check/README_DEPENDENCY_CHECKER.md +0 -0
- {aiecs-1.4.1 → aiecs-1.4.2}/aiecs/scripts/dependance_check/__init__.py +0 -0
- {aiecs-1.4.1 → aiecs-1.4.2}/aiecs/scripts/dependance_check/dependency_checker.py +0 -0
- {aiecs-1.4.1 → aiecs-1.4.2}/aiecs/scripts/dependance_check/dependency_fixer.py +0 -0
- {aiecs-1.4.1 → aiecs-1.4.2}/aiecs/scripts/dependance_check/download_nlp_data.py +0 -0
- {aiecs-1.4.1 → aiecs-1.4.2}/aiecs/scripts/dependance_check/quick_dependency_check.py +0 -0
- {aiecs-1.4.1 → aiecs-1.4.2}/aiecs/scripts/dependance_check/setup_nlp_data.sh +0 -0
- {aiecs-1.4.1 → aiecs-1.4.2}/aiecs/scripts/dependance_patch/__init__.py +0 -0
- {aiecs-1.4.1 → aiecs-1.4.2}/aiecs/scripts/dependance_patch/fix_weasel/README_WEASEL_PATCH.md +0 -0
- {aiecs-1.4.1 → aiecs-1.4.2}/aiecs/scripts/dependance_patch/fix_weasel/__init__.py +0 -0
- {aiecs-1.4.1 → aiecs-1.4.2}/aiecs/scripts/dependance_patch/fix_weasel/fix_weasel_validator.py +0 -0
- {aiecs-1.4.1 → aiecs-1.4.2}/aiecs/scripts/dependance_patch/fix_weasel/fix_weasel_validator.sh +0 -0
- {aiecs-1.4.1 → aiecs-1.4.2}/aiecs/scripts/dependance_patch/fix_weasel/patch_weasel_library.sh +0 -0
- {aiecs-1.4.1 → aiecs-1.4.2}/aiecs/scripts/dependance_patch/fix_weasel/run_weasel_patch.sh +0 -0
- {aiecs-1.4.1 → aiecs-1.4.2}/aiecs/scripts/tools_develop/README.md +0 -0
- {aiecs-1.4.1 → aiecs-1.4.2}/aiecs/scripts/tools_develop/TOOL_AUTO_DISCOVERY.md +0 -0
- {aiecs-1.4.1 → aiecs-1.4.2}/aiecs/scripts/tools_develop/__init__.py +0 -0
- {aiecs-1.4.1 → aiecs-1.4.2}/aiecs/scripts/tools_develop/check_type_annotations.py +0 -0
- {aiecs-1.4.1 → aiecs-1.4.2}/aiecs/scripts/tools_develop/validate_tool_schemas.py +0 -0
- {aiecs-1.4.1 → aiecs-1.4.2}/aiecs/scripts/tools_develop/verify_tools.py +0 -0
- {aiecs-1.4.1 → aiecs-1.4.2}/aiecs/tasks/__init__.py +0 -0
- {aiecs-1.4.1 → aiecs-1.4.2}/aiecs/tasks/worker.py +0 -0
- {aiecs-1.4.1 → aiecs-1.4.2}/aiecs/tools/__init__.py +0 -0
- {aiecs-1.4.1 → aiecs-1.4.2}/aiecs/tools/apisource/__init__.py +0 -0
- {aiecs-1.4.1 → aiecs-1.4.2}/aiecs/tools/apisource/intelligence/__init__.py +0 -0
- {aiecs-1.4.1 → aiecs-1.4.2}/aiecs/tools/apisource/intelligence/data_fusion.py +0 -0
- {aiecs-1.4.1 → aiecs-1.4.2}/aiecs/tools/apisource/intelligence/query_analyzer.py +0 -0
- {aiecs-1.4.1 → aiecs-1.4.2}/aiecs/tools/apisource/intelligence/search_enhancer.py +0 -0
- {aiecs-1.4.1 → aiecs-1.4.2}/aiecs/tools/apisource/monitoring/__init__.py +0 -0
- {aiecs-1.4.1 → aiecs-1.4.2}/aiecs/tools/apisource/monitoring/metrics.py +0 -0
- {aiecs-1.4.1 → aiecs-1.4.2}/aiecs/tools/apisource/providers/__init__.py +0 -0
- {aiecs-1.4.1 → aiecs-1.4.2}/aiecs/tools/apisource/providers/base.py +0 -0
- {aiecs-1.4.1 → aiecs-1.4.2}/aiecs/tools/apisource/providers/census.py +0 -0
- {aiecs-1.4.1 → aiecs-1.4.2}/aiecs/tools/apisource/providers/fred.py +0 -0
- {aiecs-1.4.1 → aiecs-1.4.2}/aiecs/tools/apisource/providers/newsapi.py +0 -0
- {aiecs-1.4.1 → aiecs-1.4.2}/aiecs/tools/apisource/providers/worldbank.py +0 -0
- {aiecs-1.4.1 → aiecs-1.4.2}/aiecs/tools/apisource/reliability/__init__.py +0 -0
- {aiecs-1.4.1 → aiecs-1.4.2}/aiecs/tools/apisource/reliability/error_handler.py +0 -0
- {aiecs-1.4.1 → aiecs-1.4.2}/aiecs/tools/apisource/reliability/fallback_strategy.py +0 -0
- {aiecs-1.4.1 → aiecs-1.4.2}/aiecs/tools/apisource/tool.py +0 -0
- {aiecs-1.4.1 → aiecs-1.4.2}/aiecs/tools/apisource/utils/__init__.py +0 -0
- {aiecs-1.4.1 → aiecs-1.4.2}/aiecs/tools/apisource/utils/validators.py +0 -0
- {aiecs-1.4.1 → aiecs-1.4.2}/aiecs/tools/base_tool.py +0 -0
- {aiecs-1.4.1 → aiecs-1.4.2}/aiecs/tools/docs/__init__.py +0 -0
- {aiecs-1.4.1 → aiecs-1.4.2}/aiecs/tools/docs/ai_document_orchestrator.py +0 -0
- {aiecs-1.4.1 → aiecs-1.4.2}/aiecs/tools/docs/ai_document_writer_orchestrator.py +0 -0
- {aiecs-1.4.1 → aiecs-1.4.2}/aiecs/tools/docs/content_insertion_tool.py +0 -0
- {aiecs-1.4.1 → aiecs-1.4.2}/aiecs/tools/docs/document_creator_tool.py +0 -0
- {aiecs-1.4.1 → aiecs-1.4.2}/aiecs/tools/docs/document_layout_tool.py +0 -0
- {aiecs-1.4.1 → aiecs-1.4.2}/aiecs/tools/docs/document_parser_tool.py +0 -0
- {aiecs-1.4.1 → aiecs-1.4.2}/aiecs/tools/docs/document_writer_tool.py +0 -0
- {aiecs-1.4.1 → aiecs-1.4.2}/aiecs/tools/langchain_adapter.py +0 -0
- {aiecs-1.4.1 → aiecs-1.4.2}/aiecs/tools/schema_generator.py +0 -0
- {aiecs-1.4.1 → aiecs-1.4.2}/aiecs/tools/search_tool/__init__.py +0 -0
- {aiecs-1.4.1 → aiecs-1.4.2}/aiecs/tools/search_tool/analyzers.py +0 -0
- {aiecs-1.4.1 → aiecs-1.4.2}/aiecs/tools/search_tool/cache.py +0 -0
- {aiecs-1.4.1 → aiecs-1.4.2}/aiecs/tools/search_tool/constants.py +0 -0
- {aiecs-1.4.1 → aiecs-1.4.2}/aiecs/tools/search_tool/context.py +0 -0
- {aiecs-1.4.1 → aiecs-1.4.2}/aiecs/tools/search_tool/core.py +0 -0
- {aiecs-1.4.1 → aiecs-1.4.2}/aiecs/tools/search_tool/deduplicator.py +0 -0
- {aiecs-1.4.1 → aiecs-1.4.2}/aiecs/tools/search_tool/error_handler.py +0 -0
- {aiecs-1.4.1 → aiecs-1.4.2}/aiecs/tools/search_tool/metrics.py +0 -0
- {aiecs-1.4.1 → aiecs-1.4.2}/aiecs/tools/search_tool/rate_limiter.py +0 -0
- {aiecs-1.4.1 → aiecs-1.4.2}/aiecs/tools/search_tool/schemas.py +0 -0
- {aiecs-1.4.1 → aiecs-1.4.2}/aiecs/tools/statistics/__init__.py +0 -0
- {aiecs-1.4.1 → aiecs-1.4.2}/aiecs/tools/statistics/ai_data_analysis_orchestrator.py +0 -0
- {aiecs-1.4.1 → aiecs-1.4.2}/aiecs/tools/statistics/ai_insight_generator_tool.py +0 -0
- {aiecs-1.4.1 → aiecs-1.4.2}/aiecs/tools/statistics/ai_report_orchestrator_tool.py +0 -0
- {aiecs-1.4.1 → aiecs-1.4.2}/aiecs/tools/statistics/data_loader_tool.py +0 -0
- {aiecs-1.4.1 → aiecs-1.4.2}/aiecs/tools/statistics/data_profiler_tool.py +0 -0
- {aiecs-1.4.1 → aiecs-1.4.2}/aiecs/tools/statistics/data_transformer_tool.py +0 -0
- {aiecs-1.4.1 → aiecs-1.4.2}/aiecs/tools/statistics/data_visualizer_tool.py +0 -0
- {aiecs-1.4.1 → aiecs-1.4.2}/aiecs/tools/statistics/model_trainer_tool.py +0 -0
- {aiecs-1.4.1 → aiecs-1.4.2}/aiecs/tools/statistics/statistical_analyzer_tool.py +0 -0
- {aiecs-1.4.1 → aiecs-1.4.2}/aiecs/tools/task_tools/__init__.py +0 -0
- {aiecs-1.4.1 → aiecs-1.4.2}/aiecs/tools/task_tools/chart_tool.py +0 -0
- {aiecs-1.4.1 → aiecs-1.4.2}/aiecs/tools/task_tools/classfire_tool.py +0 -0
- {aiecs-1.4.1 → aiecs-1.4.2}/aiecs/tools/task_tools/image_tool.py +0 -0
- {aiecs-1.4.1 → aiecs-1.4.2}/aiecs/tools/task_tools/office_tool.py +0 -0
- {aiecs-1.4.1 → aiecs-1.4.2}/aiecs/tools/task_tools/pandas_tool.py +0 -0
- {aiecs-1.4.1 → aiecs-1.4.2}/aiecs/tools/task_tools/report_tool.py +0 -0
- {aiecs-1.4.1 → aiecs-1.4.2}/aiecs/tools/task_tools/research_tool.py +0 -0
- {aiecs-1.4.1 → aiecs-1.4.2}/aiecs/tools/task_tools/scraper_tool.py +0 -0
- {aiecs-1.4.1 → aiecs-1.4.2}/aiecs/tools/task_tools/stats_tool.py +0 -0
- {aiecs-1.4.1 → aiecs-1.4.2}/aiecs/tools/temp_file_manager.py +0 -0
- {aiecs-1.4.1 → aiecs-1.4.2}/aiecs/tools/tool_executor/__init__.py +0 -0
- {aiecs-1.4.1 → aiecs-1.4.2}/aiecs/tools/tool_executor/tool_executor.py +0 -0
- {aiecs-1.4.1 → aiecs-1.4.2}/aiecs/utils/LLM_output_structor.py +0 -0
- {aiecs-1.4.1 → aiecs-1.4.2}/aiecs/utils/__init__.py +0 -0
- {aiecs-1.4.1 → aiecs-1.4.2}/aiecs/utils/base_callback.py +0 -0
- {aiecs-1.4.1 → aiecs-1.4.2}/aiecs/utils/cache_provider.py +0 -0
- {aiecs-1.4.1 → aiecs-1.4.2}/aiecs/utils/execution_utils.py +0 -0
- {aiecs-1.4.1 → aiecs-1.4.2}/aiecs/utils/logging.py +0 -0
- {aiecs-1.4.1 → aiecs-1.4.2}/aiecs/utils/prompt_loader.py +0 -0
- {aiecs-1.4.1 → aiecs-1.4.2}/aiecs/utils/token_usage_repository.py +0 -0
- {aiecs-1.4.1 → aiecs-1.4.2}/aiecs/ws/__init__.py +0 -0
- {aiecs-1.4.1 → aiecs-1.4.2}/aiecs/ws/socket_server.py +0 -0
- {aiecs-1.4.1 → aiecs-1.4.2}/aiecs.egg-info/SOURCES.txt +0 -0
- {aiecs-1.4.1 → aiecs-1.4.2}/aiecs.egg-info/dependency_links.txt +0 -0
- {aiecs-1.4.1 → aiecs-1.4.2}/aiecs.egg-info/entry_points.txt +0 -0
- {aiecs-1.4.1 → aiecs-1.4.2}/aiecs.egg-info/requires.txt +0 -0
- {aiecs-1.4.1 → aiecs-1.4.2}/aiecs.egg-info/top_level.txt +0 -0
- {aiecs-1.4.1 → aiecs-1.4.2}/setup.cfg +0 -0
|
@@ -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.
|
|
8
|
+
__version__ = "1.4.2"
|
|
9
9
|
__author__ = "AIECS Team"
|
|
10
10
|
__email__ = "iretbl@gmail.com"
|
|
11
11
|
|
|
@@ -133,7 +133,14 @@ class FileStorage:
|
|
|
133
133
|
if self.config.gcs_credentials_path:
|
|
134
134
|
os.environ['GOOGLE_APPLICATION_CREDENTIALS'] = self.config.gcs_credentials_path
|
|
135
135
|
|
|
136
|
-
# Create client
|
|
136
|
+
# Create client - project is required for bucket creation
|
|
137
|
+
# If project_id is None, client will use default project from credentials
|
|
138
|
+
# but we need it for bucket creation API calls
|
|
139
|
+
if not self.config.gcs_project_id:
|
|
140
|
+
logger.warning("GCS project ID not provided. Bucket creation will be disabled.")
|
|
141
|
+
logger.warning("Bucket must exist and be accessible. Falling back to local storage if bucket not found.")
|
|
142
|
+
|
|
143
|
+
# Create client with project ID (can be None, but bucket creation will fail)
|
|
137
144
|
self._gcs_client = storage.Client(project=self.config.gcs_project_id)
|
|
138
145
|
|
|
139
146
|
# Get or create bucket
|
|
@@ -144,12 +151,28 @@ class FileStorage:
|
|
|
144
151
|
logger.info(f"Connected to GCS bucket: {self.config.gcs_bucket_name}")
|
|
145
152
|
|
|
146
153
|
except NotFound:
|
|
147
|
-
#
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
154
|
+
# Only create bucket if project_id is provided
|
|
155
|
+
# Bucket creation requires project parameter in API call
|
|
156
|
+
if self.config.gcs_project_id:
|
|
157
|
+
try:
|
|
158
|
+
self._gcs_bucket = self._gcs_client.create_bucket(
|
|
159
|
+
self.config.gcs_bucket_name,
|
|
160
|
+
project=self.config.gcs_project_id, # Explicitly pass project parameter
|
|
161
|
+
location=self.config.gcs_location
|
|
162
|
+
)
|
|
163
|
+
logger.info(f"Created GCS bucket: {self.config.gcs_bucket_name} in project {self.config.gcs_project_id}")
|
|
164
|
+
except Exception as create_error:
|
|
165
|
+
logger.error(f"Failed to create GCS bucket {self.config.gcs_bucket_name}: {create_error}")
|
|
166
|
+
logger.warning("Bucket creation failed. Will use local storage fallback.")
|
|
167
|
+
self._gcs_bucket = None
|
|
168
|
+
else:
|
|
169
|
+
logger.error(
|
|
170
|
+
f"GCS bucket '{self.config.gcs_bucket_name}' not found and "
|
|
171
|
+
"project ID is not provided. Cannot create bucket without project parameter."
|
|
172
|
+
)
|
|
173
|
+
logger.warning("Please ensure the bucket exists or provide DOC_PARSER_GCS_PROJECT_ID in configuration.")
|
|
174
|
+
logger.warning("Falling back to local storage only.")
|
|
175
|
+
self._gcs_bucket = None
|
|
153
176
|
|
|
154
177
|
except DefaultCredentialsError:
|
|
155
178
|
logger.warning("GCS credentials not found, using local storage only")
|
|
@@ -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.
|
|
145
|
+
version="1.4.2",
|
|
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.
|
|
170
|
+
"version": "1.4.2"
|
|
171
171
|
}
|
|
172
172
|
|
|
173
173
|
|
|
@@ -28,7 +28,7 @@ pytest-timeout = "^2.4.0"
|
|
|
28
28
|
|
|
29
29
|
[project]
|
|
30
30
|
name = "aiecs"
|
|
31
|
-
version = "1.4.
|
|
31
|
+
version = "1.4.2"
|
|
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
|
|
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
|
|
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
|
|
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
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{aiecs-1.4.1 → aiecs-1.4.2}/aiecs/scripts/dependance_patch/fix_weasel/README_WEASEL_PATCH.md
RENAMED
|
File without changes
|
|
File without changes
|
{aiecs-1.4.1 → aiecs-1.4.2}/aiecs/scripts/dependance_patch/fix_weasel/fix_weasel_validator.py
RENAMED
|
File without changes
|
{aiecs-1.4.1 → aiecs-1.4.2}/aiecs/scripts/dependance_patch/fix_weasel/fix_weasel_validator.sh
RENAMED
|
File without changes
|
{aiecs-1.4.1 → aiecs-1.4.2}/aiecs/scripts/dependance_patch/fix_weasel/patch_weasel_library.sh
RENAMED
|
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
|
|
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
|
|
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
|
|
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
|