aiecs 1.0.1__py3-none-any.whl → 1.7.6__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.
Potentially problematic release.
This version of aiecs might be problematic. Click here for more details.
- aiecs/__init__.py +13 -16
- aiecs/__main__.py +7 -7
- aiecs/aiecs_client.py +269 -75
- aiecs/application/executors/operation_executor.py +79 -54
- aiecs/application/knowledge_graph/__init__.py +7 -0
- aiecs/application/knowledge_graph/builder/__init__.py +37 -0
- aiecs/application/knowledge_graph/builder/data_quality.py +302 -0
- aiecs/application/knowledge_graph/builder/data_reshaping.py +293 -0
- aiecs/application/knowledge_graph/builder/document_builder.py +369 -0
- aiecs/application/knowledge_graph/builder/graph_builder.py +490 -0
- aiecs/application/knowledge_graph/builder/import_optimizer.py +396 -0
- aiecs/application/knowledge_graph/builder/schema_inference.py +462 -0
- aiecs/application/knowledge_graph/builder/schema_mapping.py +563 -0
- aiecs/application/knowledge_graph/builder/structured_pipeline.py +1384 -0
- aiecs/application/knowledge_graph/builder/text_chunker.py +317 -0
- aiecs/application/knowledge_graph/extractors/__init__.py +27 -0
- aiecs/application/knowledge_graph/extractors/base.py +98 -0
- aiecs/application/knowledge_graph/extractors/llm_entity_extractor.py +422 -0
- aiecs/application/knowledge_graph/extractors/llm_relation_extractor.py +347 -0
- aiecs/application/knowledge_graph/extractors/ner_entity_extractor.py +241 -0
- aiecs/application/knowledge_graph/fusion/__init__.py +78 -0
- aiecs/application/knowledge_graph/fusion/ab_testing.py +395 -0
- aiecs/application/knowledge_graph/fusion/abbreviation_expander.py +327 -0
- aiecs/application/knowledge_graph/fusion/alias_index.py +597 -0
- aiecs/application/knowledge_graph/fusion/alias_matcher.py +384 -0
- aiecs/application/knowledge_graph/fusion/cache_coordinator.py +343 -0
- aiecs/application/knowledge_graph/fusion/entity_deduplicator.py +433 -0
- aiecs/application/knowledge_graph/fusion/entity_linker.py +511 -0
- aiecs/application/knowledge_graph/fusion/evaluation_dataset.py +240 -0
- aiecs/application/knowledge_graph/fusion/knowledge_fusion.py +632 -0
- aiecs/application/knowledge_graph/fusion/matching_config.py +489 -0
- aiecs/application/knowledge_graph/fusion/name_normalizer.py +352 -0
- aiecs/application/knowledge_graph/fusion/relation_deduplicator.py +183 -0
- aiecs/application/knowledge_graph/fusion/semantic_name_matcher.py +464 -0
- aiecs/application/knowledge_graph/fusion/similarity_pipeline.py +534 -0
- aiecs/application/knowledge_graph/pattern_matching/__init__.py +21 -0
- aiecs/application/knowledge_graph/pattern_matching/pattern_matcher.py +342 -0
- aiecs/application/knowledge_graph/pattern_matching/query_executor.py +366 -0
- aiecs/application/knowledge_graph/profiling/__init__.py +12 -0
- aiecs/application/knowledge_graph/profiling/query_plan_visualizer.py +195 -0
- aiecs/application/knowledge_graph/profiling/query_profiler.py +223 -0
- aiecs/application/knowledge_graph/reasoning/__init__.py +27 -0
- aiecs/application/knowledge_graph/reasoning/evidence_synthesis.py +341 -0
- aiecs/application/knowledge_graph/reasoning/inference_engine.py +500 -0
- aiecs/application/knowledge_graph/reasoning/logic_form_parser.py +163 -0
- aiecs/application/knowledge_graph/reasoning/logic_parser/__init__.py +79 -0
- aiecs/application/knowledge_graph/reasoning/logic_parser/ast_builder.py +513 -0
- aiecs/application/knowledge_graph/reasoning/logic_parser/ast_nodes.py +913 -0
- aiecs/application/knowledge_graph/reasoning/logic_parser/ast_validator.py +866 -0
- aiecs/application/knowledge_graph/reasoning/logic_parser/error_handler.py +475 -0
- aiecs/application/knowledge_graph/reasoning/logic_parser/parser.py +396 -0
- aiecs/application/knowledge_graph/reasoning/logic_parser/query_context.py +208 -0
- aiecs/application/knowledge_graph/reasoning/logic_query_integration.py +170 -0
- aiecs/application/knowledge_graph/reasoning/query_planner.py +855 -0
- aiecs/application/knowledge_graph/reasoning/reasoning_engine.py +518 -0
- aiecs/application/knowledge_graph/retrieval/__init__.py +27 -0
- aiecs/application/knowledge_graph/retrieval/query_intent_classifier.py +211 -0
- aiecs/application/knowledge_graph/retrieval/retrieval_strategies.py +592 -0
- aiecs/application/knowledge_graph/retrieval/strategy_types.py +23 -0
- aiecs/application/knowledge_graph/search/__init__.py +59 -0
- aiecs/application/knowledge_graph/search/hybrid_search.py +457 -0
- aiecs/application/knowledge_graph/search/reranker.py +293 -0
- aiecs/application/knowledge_graph/search/reranker_strategies.py +535 -0
- aiecs/application/knowledge_graph/search/text_similarity.py +392 -0
- aiecs/application/knowledge_graph/traversal/__init__.py +15 -0
- aiecs/application/knowledge_graph/traversal/enhanced_traversal.py +305 -0
- aiecs/application/knowledge_graph/traversal/path_scorer.py +271 -0
- aiecs/application/knowledge_graph/validators/__init__.py +13 -0
- aiecs/application/knowledge_graph/validators/relation_validator.py +239 -0
- aiecs/application/knowledge_graph/visualization/__init__.py +11 -0
- aiecs/application/knowledge_graph/visualization/graph_visualizer.py +313 -0
- aiecs/common/__init__.py +9 -0
- aiecs/common/knowledge_graph/__init__.py +17 -0
- aiecs/common/knowledge_graph/runnable.py +471 -0
- aiecs/config/__init__.py +20 -5
- aiecs/config/config.py +762 -31
- aiecs/config/graph_config.py +131 -0
- aiecs/config/tool_config.py +399 -0
- aiecs/core/__init__.py +29 -13
- aiecs/core/interface/__init__.py +2 -2
- aiecs/core/interface/execution_interface.py +22 -22
- aiecs/core/interface/storage_interface.py +37 -88
- aiecs/core/registry/__init__.py +31 -0
- aiecs/core/registry/service_registry.py +92 -0
- aiecs/domain/__init__.py +270 -1
- aiecs/domain/agent/__init__.py +191 -0
- aiecs/domain/agent/base_agent.py +3870 -0
- aiecs/domain/agent/exceptions.py +99 -0
- aiecs/domain/agent/graph_aware_mixin.py +569 -0
- aiecs/domain/agent/hybrid_agent.py +1435 -0
- aiecs/domain/agent/integration/__init__.py +29 -0
- aiecs/domain/agent/integration/context_compressor.py +216 -0
- aiecs/domain/agent/integration/context_engine_adapter.py +587 -0
- aiecs/domain/agent/integration/protocols.py +281 -0
- aiecs/domain/agent/integration/retry_policy.py +218 -0
- aiecs/domain/agent/integration/role_config.py +213 -0
- aiecs/domain/agent/knowledge_aware_agent.py +1892 -0
- aiecs/domain/agent/lifecycle.py +291 -0
- aiecs/domain/agent/llm_agent.py +692 -0
- aiecs/domain/agent/memory/__init__.py +12 -0
- aiecs/domain/agent/memory/conversation.py +1124 -0
- aiecs/domain/agent/migration/__init__.py +14 -0
- aiecs/domain/agent/migration/conversion.py +163 -0
- aiecs/domain/agent/migration/legacy_wrapper.py +86 -0
- aiecs/domain/agent/models.py +884 -0
- aiecs/domain/agent/observability.py +479 -0
- aiecs/domain/agent/persistence.py +449 -0
- aiecs/domain/agent/prompts/__init__.py +29 -0
- aiecs/domain/agent/prompts/builder.py +159 -0
- aiecs/domain/agent/prompts/formatters.py +187 -0
- aiecs/domain/agent/prompts/template.py +255 -0
- aiecs/domain/agent/registry.py +253 -0
- aiecs/domain/agent/tool_agent.py +444 -0
- aiecs/domain/agent/tools/__init__.py +15 -0
- aiecs/domain/agent/tools/schema_generator.py +364 -0
- aiecs/domain/community/__init__.py +155 -0
- aiecs/domain/community/agent_adapter.py +469 -0
- aiecs/domain/community/analytics.py +432 -0
- aiecs/domain/community/collaborative_workflow.py +648 -0
- aiecs/domain/community/communication_hub.py +634 -0
- aiecs/domain/community/community_builder.py +320 -0
- aiecs/domain/community/community_integration.py +796 -0
- aiecs/domain/community/community_manager.py +803 -0
- aiecs/domain/community/decision_engine.py +849 -0
- aiecs/domain/community/exceptions.py +231 -0
- aiecs/domain/community/models/__init__.py +33 -0
- aiecs/domain/community/models/community_models.py +234 -0
- aiecs/domain/community/resource_manager.py +461 -0
- aiecs/domain/community/shared_context_manager.py +589 -0
- aiecs/domain/context/__init__.py +40 -10
- aiecs/domain/context/context_engine.py +1910 -0
- aiecs/domain/context/conversation_models.py +87 -53
- aiecs/domain/context/graph_memory.py +582 -0
- aiecs/domain/execution/model.py +12 -4
- aiecs/domain/knowledge_graph/__init__.py +19 -0
- aiecs/domain/knowledge_graph/models/__init__.py +52 -0
- aiecs/domain/knowledge_graph/models/entity.py +148 -0
- aiecs/domain/knowledge_graph/models/evidence.py +178 -0
- aiecs/domain/knowledge_graph/models/inference_rule.py +184 -0
- aiecs/domain/knowledge_graph/models/path.py +171 -0
- aiecs/domain/knowledge_graph/models/path_pattern.py +171 -0
- aiecs/domain/knowledge_graph/models/query.py +261 -0
- aiecs/domain/knowledge_graph/models/query_plan.py +181 -0
- aiecs/domain/knowledge_graph/models/relation.py +202 -0
- aiecs/domain/knowledge_graph/schema/__init__.py +23 -0
- aiecs/domain/knowledge_graph/schema/entity_type.py +131 -0
- aiecs/domain/knowledge_graph/schema/graph_schema.py +253 -0
- aiecs/domain/knowledge_graph/schema/property_schema.py +143 -0
- aiecs/domain/knowledge_graph/schema/relation_type.py +163 -0
- aiecs/domain/knowledge_graph/schema/schema_manager.py +691 -0
- aiecs/domain/knowledge_graph/schema/type_enums.py +209 -0
- aiecs/domain/task/dsl_processor.py +172 -56
- aiecs/domain/task/model.py +20 -8
- aiecs/domain/task/task_context.py +27 -24
- aiecs/infrastructure/__init__.py +0 -2
- aiecs/infrastructure/graph_storage/__init__.py +11 -0
- aiecs/infrastructure/graph_storage/base.py +837 -0
- aiecs/infrastructure/graph_storage/batch_operations.py +458 -0
- aiecs/infrastructure/graph_storage/cache.py +424 -0
- aiecs/infrastructure/graph_storage/distributed.py +223 -0
- aiecs/infrastructure/graph_storage/error_handling.py +380 -0
- aiecs/infrastructure/graph_storage/graceful_degradation.py +294 -0
- aiecs/infrastructure/graph_storage/health_checks.py +378 -0
- aiecs/infrastructure/graph_storage/in_memory.py +1197 -0
- aiecs/infrastructure/graph_storage/index_optimization.py +446 -0
- aiecs/infrastructure/graph_storage/lazy_loading.py +431 -0
- aiecs/infrastructure/graph_storage/metrics.py +344 -0
- aiecs/infrastructure/graph_storage/migration.py +400 -0
- aiecs/infrastructure/graph_storage/pagination.py +483 -0
- aiecs/infrastructure/graph_storage/performance_monitoring.py +456 -0
- aiecs/infrastructure/graph_storage/postgres.py +1563 -0
- aiecs/infrastructure/graph_storage/property_storage.py +353 -0
- aiecs/infrastructure/graph_storage/protocols.py +76 -0
- aiecs/infrastructure/graph_storage/query_optimizer.py +642 -0
- aiecs/infrastructure/graph_storage/schema_cache.py +290 -0
- aiecs/infrastructure/graph_storage/sqlite.py +1373 -0
- aiecs/infrastructure/graph_storage/streaming.py +487 -0
- aiecs/infrastructure/graph_storage/tenant.py +412 -0
- aiecs/infrastructure/messaging/celery_task_manager.py +92 -54
- aiecs/infrastructure/messaging/websocket_manager.py +51 -35
- aiecs/infrastructure/monitoring/__init__.py +22 -0
- aiecs/infrastructure/monitoring/executor_metrics.py +45 -11
- aiecs/infrastructure/monitoring/global_metrics_manager.py +212 -0
- aiecs/infrastructure/monitoring/structured_logger.py +3 -7
- aiecs/infrastructure/monitoring/tracing_manager.py +63 -35
- aiecs/infrastructure/persistence/__init__.py +14 -1
- aiecs/infrastructure/persistence/context_engine_client.py +184 -0
- aiecs/infrastructure/persistence/database_manager.py +67 -43
- aiecs/infrastructure/persistence/file_storage.py +180 -103
- aiecs/infrastructure/persistence/redis_client.py +74 -21
- aiecs/llm/__init__.py +73 -25
- aiecs/llm/callbacks/__init__.py +11 -0
- aiecs/llm/{custom_callbacks.py → callbacks/custom_callbacks.py} +26 -19
- aiecs/llm/client_factory.py +224 -36
- aiecs/llm/client_resolver.py +155 -0
- aiecs/llm/clients/__init__.py +38 -0
- aiecs/llm/clients/base_client.py +324 -0
- aiecs/llm/clients/google_function_calling_mixin.py +457 -0
- aiecs/llm/clients/googleai_client.py +241 -0
- aiecs/llm/clients/openai_client.py +158 -0
- aiecs/llm/clients/openai_compatible_mixin.py +367 -0
- aiecs/llm/clients/vertex_client.py +897 -0
- aiecs/llm/clients/xai_client.py +201 -0
- aiecs/llm/config/__init__.py +51 -0
- aiecs/llm/config/config_loader.py +272 -0
- aiecs/llm/config/config_validator.py +206 -0
- aiecs/llm/config/model_config.py +143 -0
- aiecs/llm/protocols.py +149 -0
- aiecs/llm/utils/__init__.py +10 -0
- aiecs/llm/utils/validate_config.py +89 -0
- aiecs/main.py +140 -121
- aiecs/scripts/aid/VERSION_MANAGEMENT.md +138 -0
- aiecs/scripts/aid/__init__.py +19 -0
- aiecs/scripts/aid/module_checker.py +499 -0
- aiecs/scripts/aid/version_manager.py +235 -0
- aiecs/scripts/{DEPENDENCY_SYSTEM_SUMMARY.md → dependance_check/DEPENDENCY_SYSTEM_SUMMARY.md} +1 -0
- aiecs/scripts/{README_DEPENDENCY_CHECKER.md → dependance_check/README_DEPENDENCY_CHECKER.md} +1 -0
- aiecs/scripts/dependance_check/__init__.py +15 -0
- aiecs/scripts/dependance_check/dependency_checker.py +1835 -0
- aiecs/scripts/{dependency_fixer.py → dependance_check/dependency_fixer.py} +192 -90
- aiecs/scripts/{download_nlp_data.py → dependance_check/download_nlp_data.py} +203 -71
- aiecs/scripts/dependance_patch/__init__.py +7 -0
- aiecs/scripts/dependance_patch/fix_weasel/__init__.py +11 -0
- aiecs/scripts/{fix_weasel_validator.py → dependance_patch/fix_weasel/fix_weasel_validator.py} +21 -14
- aiecs/scripts/{patch_weasel_library.sh → dependance_patch/fix_weasel/patch_weasel_library.sh} +1 -1
- aiecs/scripts/knowledge_graph/__init__.py +3 -0
- aiecs/scripts/knowledge_graph/run_threshold_experiments.py +212 -0
- aiecs/scripts/migrations/multi_tenancy/README.md +142 -0
- aiecs/scripts/tools_develop/README.md +671 -0
- aiecs/scripts/tools_develop/README_CONFIG_CHECKER.md +273 -0
- aiecs/scripts/tools_develop/TOOLS_CONFIG_GUIDE.md +1287 -0
- aiecs/scripts/tools_develop/TOOL_AUTO_DISCOVERY.md +234 -0
- aiecs/scripts/tools_develop/__init__.py +21 -0
- aiecs/scripts/tools_develop/check_all_tools_config.py +548 -0
- aiecs/scripts/tools_develop/check_type_annotations.py +257 -0
- aiecs/scripts/tools_develop/pre-commit-schema-coverage.sh +66 -0
- aiecs/scripts/tools_develop/schema_coverage.py +511 -0
- aiecs/scripts/tools_develop/validate_tool_schemas.py +475 -0
- aiecs/scripts/tools_develop/verify_executor_config_fix.py +98 -0
- aiecs/scripts/tools_develop/verify_tools.py +352 -0
- aiecs/tasks/__init__.py +0 -1
- aiecs/tasks/worker.py +115 -47
- aiecs/tools/__init__.py +194 -72
- aiecs/tools/apisource/__init__.py +99 -0
- aiecs/tools/apisource/intelligence/__init__.py +19 -0
- aiecs/tools/apisource/intelligence/data_fusion.py +632 -0
- aiecs/tools/apisource/intelligence/query_analyzer.py +417 -0
- aiecs/tools/apisource/intelligence/search_enhancer.py +385 -0
- aiecs/tools/apisource/monitoring/__init__.py +9 -0
- aiecs/tools/apisource/monitoring/metrics.py +330 -0
- aiecs/tools/apisource/providers/__init__.py +112 -0
- aiecs/tools/apisource/providers/base.py +671 -0
- aiecs/tools/apisource/providers/census.py +397 -0
- aiecs/tools/apisource/providers/fred.py +535 -0
- aiecs/tools/apisource/providers/newsapi.py +409 -0
- aiecs/tools/apisource/providers/worldbank.py +352 -0
- aiecs/tools/apisource/reliability/__init__.py +12 -0
- aiecs/tools/apisource/reliability/error_handler.py +363 -0
- aiecs/tools/apisource/reliability/fallback_strategy.py +376 -0
- aiecs/tools/apisource/tool.py +832 -0
- aiecs/tools/apisource/utils/__init__.py +9 -0
- aiecs/tools/apisource/utils/validators.py +334 -0
- aiecs/tools/base_tool.py +415 -21
- aiecs/tools/docs/__init__.py +121 -0
- aiecs/tools/docs/ai_document_orchestrator.py +607 -0
- aiecs/tools/docs/ai_document_writer_orchestrator.py +2350 -0
- aiecs/tools/docs/content_insertion_tool.py +1320 -0
- aiecs/tools/docs/document_creator_tool.py +1323 -0
- aiecs/tools/docs/document_layout_tool.py +1160 -0
- aiecs/tools/docs/document_parser_tool.py +1011 -0
- aiecs/tools/docs/document_writer_tool.py +1829 -0
- aiecs/tools/knowledge_graph/__init__.py +17 -0
- aiecs/tools/knowledge_graph/graph_reasoning_tool.py +807 -0
- aiecs/tools/knowledge_graph/graph_search_tool.py +944 -0
- aiecs/tools/knowledge_graph/kg_builder_tool.py +524 -0
- aiecs/tools/langchain_adapter.py +300 -138
- aiecs/tools/schema_generator.py +455 -0
- aiecs/tools/search_tool/__init__.py +100 -0
- aiecs/tools/search_tool/analyzers.py +581 -0
- aiecs/tools/search_tool/cache.py +264 -0
- aiecs/tools/search_tool/constants.py +128 -0
- aiecs/tools/search_tool/context.py +224 -0
- aiecs/tools/search_tool/core.py +778 -0
- aiecs/tools/search_tool/deduplicator.py +119 -0
- aiecs/tools/search_tool/error_handler.py +242 -0
- aiecs/tools/search_tool/metrics.py +343 -0
- aiecs/tools/search_tool/rate_limiter.py +172 -0
- aiecs/tools/search_tool/schemas.py +275 -0
- aiecs/tools/statistics/__init__.py +80 -0
- aiecs/tools/statistics/ai_data_analysis_orchestrator.py +646 -0
- aiecs/tools/statistics/ai_insight_generator_tool.py +508 -0
- aiecs/tools/statistics/ai_report_orchestrator_tool.py +684 -0
- aiecs/tools/statistics/data_loader_tool.py +555 -0
- aiecs/tools/statistics/data_profiler_tool.py +638 -0
- aiecs/tools/statistics/data_transformer_tool.py +580 -0
- aiecs/tools/statistics/data_visualizer_tool.py +498 -0
- aiecs/tools/statistics/model_trainer_tool.py +507 -0
- aiecs/tools/statistics/statistical_analyzer_tool.py +472 -0
- aiecs/tools/task_tools/__init__.py +49 -36
- aiecs/tools/task_tools/chart_tool.py +200 -184
- aiecs/tools/task_tools/classfire_tool.py +268 -267
- aiecs/tools/task_tools/image_tool.py +175 -131
- aiecs/tools/task_tools/office_tool.py +226 -146
- aiecs/tools/task_tools/pandas_tool.py +477 -121
- aiecs/tools/task_tools/report_tool.py +390 -142
- aiecs/tools/task_tools/research_tool.py +149 -79
- aiecs/tools/task_tools/scraper_tool.py +339 -145
- aiecs/tools/task_tools/stats_tool.py +448 -209
- aiecs/tools/temp_file_manager.py +26 -24
- aiecs/tools/tool_executor/__init__.py +18 -16
- aiecs/tools/tool_executor/tool_executor.py +364 -52
- aiecs/utils/LLM_output_structor.py +74 -48
- aiecs/utils/__init__.py +14 -3
- aiecs/utils/base_callback.py +0 -3
- aiecs/utils/cache_provider.py +696 -0
- aiecs/utils/execution_utils.py +50 -31
- aiecs/utils/prompt_loader.py +1 -0
- aiecs/utils/token_usage_repository.py +37 -11
- aiecs/ws/socket_server.py +14 -4
- {aiecs-1.0.1.dist-info → aiecs-1.7.6.dist-info}/METADATA +52 -15
- aiecs-1.7.6.dist-info/RECORD +337 -0
- aiecs-1.7.6.dist-info/entry_points.txt +13 -0
- aiecs/config/registry.py +0 -19
- aiecs/domain/context/content_engine.py +0 -982
- aiecs/llm/base_client.py +0 -99
- aiecs/llm/openai_client.py +0 -125
- aiecs/llm/vertex_client.py +0 -186
- aiecs/llm/xai_client.py +0 -184
- aiecs/scripts/dependency_checker.py +0 -857
- aiecs/scripts/quick_dependency_check.py +0 -269
- aiecs/tools/task_tools/search_api.py +0 -7
- aiecs-1.0.1.dist-info/RECORD +0 -90
- aiecs-1.0.1.dist-info/entry_points.txt +0 -7
- /aiecs/scripts/{setup_nlp_data.sh → dependance_check/setup_nlp_data.sh} +0 -0
- /aiecs/scripts/{README_WEASEL_PATCH.md → dependance_patch/fix_weasel/README_WEASEL_PATCH.md} +0 -0
- /aiecs/scripts/{fix_weasel_validator.sh → dependance_patch/fix_weasel/fix_weasel_validator.sh} +0 -0
- /aiecs/scripts/{run_weasel_patch.sh → dependance_patch/fix_weasel/run_weasel_patch.sh} +0 -0
- {aiecs-1.0.1.dist-info → aiecs-1.7.6.dist-info}/WHEEL +0 -0
- {aiecs-1.0.1.dist-info → aiecs-1.7.6.dist-info}/licenses/LICENSE +0 -0
- {aiecs-1.0.1.dist-info → aiecs-1.7.6.dist-info}/top_level.txt +0 -0
|
@@ -1,269 +0,0 @@
|
|
|
1
|
-
#!/usr/bin/env python3
|
|
2
|
-
"""
|
|
3
|
-
Quick dependency checker for AIECS post-installation.
|
|
4
|
-
|
|
5
|
-
This script performs a fast check of critical dependencies and provides
|
|
6
|
-
installation guidance for missing components.
|
|
7
|
-
"""
|
|
8
|
-
|
|
9
|
-
import os
|
|
10
|
-
import sys
|
|
11
|
-
import subprocess
|
|
12
|
-
import platform
|
|
13
|
-
import logging
|
|
14
|
-
from typing import Dict, List, Tuple, Optional
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
class QuickDependencyChecker:
|
|
18
|
-
"""Quick dependency checker for post-installation."""
|
|
19
|
-
|
|
20
|
-
def __init__(self):
|
|
21
|
-
self.logger = self._setup_logging()
|
|
22
|
-
self.system = platform.system().lower()
|
|
23
|
-
self.issues = []
|
|
24
|
-
self.critical_issues = []
|
|
25
|
-
|
|
26
|
-
def _setup_logging(self) -> logging.Logger:
|
|
27
|
-
"""Setup logging configuration."""
|
|
28
|
-
logging.basicConfig(
|
|
29
|
-
level=logging.INFO,
|
|
30
|
-
format='%(levelname)s: %(message)s'
|
|
31
|
-
)
|
|
32
|
-
return logging.getLogger(__name__)
|
|
33
|
-
|
|
34
|
-
def check_command(self, command: str, version_flag: str = "--version") -> bool:
|
|
35
|
-
"""Check if a system command is available."""
|
|
36
|
-
try:
|
|
37
|
-
result = subprocess.run(
|
|
38
|
-
[command, version_flag],
|
|
39
|
-
capture_output=True,
|
|
40
|
-
text=True,
|
|
41
|
-
timeout=5
|
|
42
|
-
)
|
|
43
|
-
return result.returncode == 0
|
|
44
|
-
except (subprocess.TimeoutExpired, FileNotFoundError, subprocess.CalledProcessError):
|
|
45
|
-
return False
|
|
46
|
-
|
|
47
|
-
def check_python_package(self, package_name: str) -> bool:
|
|
48
|
-
"""Check if a Python package is installed."""
|
|
49
|
-
try:
|
|
50
|
-
__import__(package_name)
|
|
51
|
-
return True
|
|
52
|
-
except ImportError:
|
|
53
|
-
return False
|
|
54
|
-
|
|
55
|
-
def check_critical_dependencies(self) -> Dict[str, bool]:
|
|
56
|
-
"""Check critical dependencies that affect core functionality."""
|
|
57
|
-
results = {}
|
|
58
|
-
|
|
59
|
-
# Core Python packages
|
|
60
|
-
core_packages = [
|
|
61
|
-
"fastapi", "uvicorn", "pydantic", "httpx", "celery", "redis",
|
|
62
|
-
"pandas", "numpy", "scipy", "scikit-learn", "matplotlib"
|
|
63
|
-
]
|
|
64
|
-
|
|
65
|
-
for pkg in core_packages:
|
|
66
|
-
results[f"python_{pkg}"] = self.check_python_package(pkg)
|
|
67
|
-
if not results[f"python_{pkg}"]:
|
|
68
|
-
self.critical_issues.append(f"Missing Python package: {pkg}")
|
|
69
|
-
|
|
70
|
-
# System dependencies for tools
|
|
71
|
-
system_deps = {
|
|
72
|
-
"java": ("Java Runtime Environment", "java", "-version"),
|
|
73
|
-
"tesseract": ("Tesseract OCR", "tesseract", "--version"),
|
|
74
|
-
}
|
|
75
|
-
|
|
76
|
-
for key, (name, cmd, flag) in system_deps.items():
|
|
77
|
-
results[f"system_{key}"] = self.check_command(cmd, flag)
|
|
78
|
-
if not results[f"system_{key}"]:
|
|
79
|
-
self.issues.append(f"Missing system dependency: {name}")
|
|
80
|
-
|
|
81
|
-
return results
|
|
82
|
-
|
|
83
|
-
def check_tool_specific_dependencies(self) -> Dict[str, Dict[str, bool]]:
|
|
84
|
-
"""Check dependencies for specific tools."""
|
|
85
|
-
tool_results = {}
|
|
86
|
-
|
|
87
|
-
# Image Tool dependencies
|
|
88
|
-
image_deps = {
|
|
89
|
-
"tesseract": self.check_command("tesseract"),
|
|
90
|
-
"PIL": self.check_python_package("PIL"),
|
|
91
|
-
"pytesseract": self.check_python_package("pytesseract"),
|
|
92
|
-
}
|
|
93
|
-
tool_results["image"] = image_deps
|
|
94
|
-
|
|
95
|
-
# ClassFire Tool dependencies
|
|
96
|
-
classfire_deps = {
|
|
97
|
-
"spacy": self.check_python_package("spacy"),
|
|
98
|
-
"nltk": self.check_python_package("nltk"),
|
|
99
|
-
"transformers": self.check_python_package("transformers"),
|
|
100
|
-
}
|
|
101
|
-
tool_results["classfire"] = classfire_deps
|
|
102
|
-
|
|
103
|
-
# Office Tool dependencies
|
|
104
|
-
office_deps = {
|
|
105
|
-
"java": self.check_command("java"),
|
|
106
|
-
"tika": self.check_python_package("tika"),
|
|
107
|
-
"python-docx": self.check_python_package("python-docx"),
|
|
108
|
-
"openpyxl": self.check_python_package("openpyxl"),
|
|
109
|
-
}
|
|
110
|
-
tool_results["office"] = office_deps
|
|
111
|
-
|
|
112
|
-
# Stats Tool dependencies
|
|
113
|
-
stats_deps = {
|
|
114
|
-
"pandas": self.check_python_package("pandas"),
|
|
115
|
-
"pyreadstat": self.check_python_package("pyreadstat"),
|
|
116
|
-
"statsmodels": self.check_python_package("statsmodels"),
|
|
117
|
-
}
|
|
118
|
-
tool_results["stats"] = stats_deps
|
|
119
|
-
|
|
120
|
-
# Report Tool dependencies
|
|
121
|
-
report_deps = {
|
|
122
|
-
"jinja2": self.check_python_package("jinja2"),
|
|
123
|
-
"matplotlib": self.check_python_package("matplotlib"),
|
|
124
|
-
"weasyprint": self.check_python_package("weasyprint"),
|
|
125
|
-
}
|
|
126
|
-
tool_results["report"] = report_deps
|
|
127
|
-
|
|
128
|
-
# Scraper Tool dependencies
|
|
129
|
-
scraper_deps = {
|
|
130
|
-
"playwright": self.check_python_package("playwright"),
|
|
131
|
-
"beautifulsoup4": self.check_python_package("beautifulsoup4"),
|
|
132
|
-
"scrapy": self.check_python_package("scrapy"),
|
|
133
|
-
}
|
|
134
|
-
tool_results["scraper"] = scraper_deps
|
|
135
|
-
|
|
136
|
-
return tool_results
|
|
137
|
-
|
|
138
|
-
def get_installation_commands(self) -> Dict[str, List[str]]:
|
|
139
|
-
"""Get installation commands for missing dependencies."""
|
|
140
|
-
commands = {
|
|
141
|
-
"system": [],
|
|
142
|
-
"python": [],
|
|
143
|
-
"models": []
|
|
144
|
-
}
|
|
145
|
-
|
|
146
|
-
# System dependencies
|
|
147
|
-
if self.system == "linux":
|
|
148
|
-
if not self.check_command("java"):
|
|
149
|
-
commands["system"].append("sudo apt-get install openjdk-11-jdk")
|
|
150
|
-
if not self.check_command("tesseract"):
|
|
151
|
-
commands["system"].append("sudo apt-get install tesseract-ocr tesseract-ocr-eng")
|
|
152
|
-
elif self.system == "darwin":
|
|
153
|
-
if not self.check_command("java"):
|
|
154
|
-
commands["system"].append("brew install openjdk@11")
|
|
155
|
-
if not self.check_command("tesseract"):
|
|
156
|
-
commands["system"].append("brew install tesseract")
|
|
157
|
-
|
|
158
|
-
# Python packages (these should already be installed via pip)
|
|
159
|
-
missing_packages = []
|
|
160
|
-
for issue in self.critical_issues:
|
|
161
|
-
if "Missing Python package:" in issue:
|
|
162
|
-
pkg = issue.split(": ")[1]
|
|
163
|
-
missing_packages.append(pkg)
|
|
164
|
-
|
|
165
|
-
if missing_packages:
|
|
166
|
-
commands["python"].append(f"pip install {' '.join(missing_packages)}")
|
|
167
|
-
|
|
168
|
-
# Models and data
|
|
169
|
-
commands["models"].append("python -m aiecs.scripts.download_nlp_data")
|
|
170
|
-
commands["models"].append("playwright install")
|
|
171
|
-
|
|
172
|
-
return commands
|
|
173
|
-
|
|
174
|
-
def generate_quick_report(self) -> str:
|
|
175
|
-
"""Generate a quick dependency report."""
|
|
176
|
-
report = []
|
|
177
|
-
report.append("🔍 AIECS Quick Dependency Check")
|
|
178
|
-
report.append("=" * 50)
|
|
179
|
-
|
|
180
|
-
# Check critical dependencies
|
|
181
|
-
critical_results = self.check_critical_dependencies()
|
|
182
|
-
tool_results = self.check_tool_specific_dependencies()
|
|
183
|
-
|
|
184
|
-
# Critical dependencies status
|
|
185
|
-
report.append("\n📦 Critical Dependencies:")
|
|
186
|
-
critical_ok = all(critical_results.values())
|
|
187
|
-
if critical_ok:
|
|
188
|
-
report.append("✅ All critical dependencies are available")
|
|
189
|
-
else:
|
|
190
|
-
report.append("❌ Some critical dependencies are missing")
|
|
191
|
-
for key, available in critical_results.items():
|
|
192
|
-
if not available:
|
|
193
|
-
dep_name = key.replace("python_", "").replace("system_", "")
|
|
194
|
-
report.append(f" ❌ {dep_name}")
|
|
195
|
-
|
|
196
|
-
# Tool-specific dependencies
|
|
197
|
-
report.append("\n🔧 Tool-Specific Dependencies:")
|
|
198
|
-
for tool, deps in tool_results.items():
|
|
199
|
-
tool_ok = all(deps.values())
|
|
200
|
-
status = "✅" if tool_ok else "⚠️"
|
|
201
|
-
report.append(f" {status} {tool.title()} Tool")
|
|
202
|
-
|
|
203
|
-
if not tool_ok:
|
|
204
|
-
for dep, available in deps.items():
|
|
205
|
-
if not available:
|
|
206
|
-
report.append(f" ❌ {dep}")
|
|
207
|
-
|
|
208
|
-
# Installation commands
|
|
209
|
-
commands = self.get_installation_commands()
|
|
210
|
-
if any(commands.values()):
|
|
211
|
-
report.append("\n🛠️ Installation Commands:")
|
|
212
|
-
|
|
213
|
-
if commands["system"]:
|
|
214
|
-
report.append(" System Dependencies:")
|
|
215
|
-
for cmd in commands["system"]:
|
|
216
|
-
report.append(f" {cmd}")
|
|
217
|
-
|
|
218
|
-
if commands["python"]:
|
|
219
|
-
report.append(" Python Packages:")
|
|
220
|
-
for cmd in commands["python"]:
|
|
221
|
-
report.append(f" {cmd}")
|
|
222
|
-
|
|
223
|
-
if commands["models"]:
|
|
224
|
-
report.append(" Models and Data:")
|
|
225
|
-
for cmd in commands["models"]:
|
|
226
|
-
report.append(f" {cmd}")
|
|
227
|
-
|
|
228
|
-
# Summary
|
|
229
|
-
total_issues = len(self.issues) + len(self.critical_issues)
|
|
230
|
-
if total_issues == 0:
|
|
231
|
-
report.append("\n🎉 All dependencies are available!")
|
|
232
|
-
report.append("AIECS is ready to use with full functionality.")
|
|
233
|
-
else:
|
|
234
|
-
report.append(f"\n⚠️ Found {total_issues} dependency issues.")
|
|
235
|
-
if self.critical_issues:
|
|
236
|
-
report.append(f" Critical: {len(self.critical_issues)}")
|
|
237
|
-
if self.issues:
|
|
238
|
-
report.append(f" Optional: {len(self.issues)}")
|
|
239
|
-
report.append("Please install missing dependencies for full functionality.")
|
|
240
|
-
|
|
241
|
-
return "\n".join(report)
|
|
242
|
-
|
|
243
|
-
def run_check(self) -> int:
|
|
244
|
-
"""Run the quick dependency check."""
|
|
245
|
-
print("🔍 Running quick dependency check...")
|
|
246
|
-
|
|
247
|
-
# Generate and display report
|
|
248
|
-
report = self.generate_quick_report()
|
|
249
|
-
print(report)
|
|
250
|
-
|
|
251
|
-
# Return exit code
|
|
252
|
-
if self.critical_issues:
|
|
253
|
-
return 1
|
|
254
|
-
else:
|
|
255
|
-
return 0
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
def main():
|
|
259
|
-
"""Main function."""
|
|
260
|
-
checker = QuickDependencyChecker()
|
|
261
|
-
return checker.run_check()
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
if __name__ == "__main__":
|
|
265
|
-
sys.exit(main())
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
aiecs-1.0.1.dist-info/RECORD
DELETED
|
@@ -1,90 +0,0 @@
|
|
|
1
|
-
aiecs/__init__.py,sha256=KRDxAtJkyuZ6cJD8J_A_zgCpoBw8vM6ASGMyZodm-eM,1859
|
|
2
|
-
aiecs/__main__.py,sha256=AfQpzy3SgwWuP4DuymYcm4MISMuzqwhxxGSYo53PBvY,1035
|
|
3
|
-
aiecs/aiecs_client.py,sha256=gJbCY6zuHR9TZPCgHhxd-d4CwCW9P_lUrtTSC5-ADWE,10527
|
|
4
|
-
aiecs/main.py,sha256=Cqae4VgROn3F6kvrS9ggwjOkoFjorqNAUReDK33TGKM,9306
|
|
5
|
-
aiecs/application/__init__.py,sha256=NkmrUH1DqxJ3vaVC8QwscNdlWqHfC7ZagL4k3nZ_qz4,192
|
|
6
|
-
aiecs/application/executors/__init__.py,sha256=WIl7L9HBsEhNfbNtJdvBvFUJXzESvNZVaiAA6tdtJcs,191
|
|
7
|
-
aiecs/application/executors/operation_executor.py,sha256=-7mFo1hUnWdehVPg0fnSiRhW3LACpIiyLSH-iu7bX4U,13818
|
|
8
|
-
aiecs/config/__init__.py,sha256=HykU6FgZrUx0w8V1_kAjP9NpXZTddZ9M3xo0fmBwMU8,336
|
|
9
|
-
aiecs/config/config.py,sha256=vWkbWpRLxkRDdsl8hwgNpTKdvOhlxXiNh7oLQZBse-U,4993
|
|
10
|
-
aiecs/config/registry.py,sha256=5CPJcjeMu3FLc_keuCtJT60DtUxF6w-I68uIoxpcdq8,637
|
|
11
|
-
aiecs/core/__init__.py,sha256=H0ZIk96q0KHKivcobnUCVJdJZmewucVJ9MKhRgUxmk0,1037
|
|
12
|
-
aiecs/core/interface/__init__.py,sha256=soI7zdoN3eQynVb9uiwmgXkM5E75JYffTILktHb48x8,688
|
|
13
|
-
aiecs/core/interface/execution_interface.py,sha256=6bXruts8dyAg647lxPDQkF-cdJG1W8ZqpxFQ6hjVrd4,4810
|
|
14
|
-
aiecs/core/interface/storage_interface.py,sha256=F7GQEZ_ZiRWeen7oZO6A4S0nW0VORYsygk2BYLw5aiY,5680
|
|
15
|
-
aiecs/domain/__init__.py,sha256=a_cGb8TCaa-azcNpetGHvTFprPb6SlcJt-tfJ5GC2N8,397
|
|
16
|
-
aiecs/domain/context/__init__.py,sha256=ljKpQg1THBPRM61vVCEc97-bJl7z5qaP8pQs-lXlBzA,863
|
|
17
|
-
aiecs/domain/context/content_engine.py,sha256=1Ex2sMI7wRpFrvHE6srkk2JQBaNAau75ZzQVmSxEbIA,36045
|
|
18
|
-
aiecs/domain/context/conversation_models.py,sha256=HoxMXoZGyhMXbk8AcA-vMa-G--ulY4yew2VeGFHxgZU,13006
|
|
19
|
-
aiecs/domain/execution/__init__.py,sha256=usXYgPcS-j0CFBN5K1v1WuxQUHsgap3tsaZnDCcKVXs,216
|
|
20
|
-
aiecs/domain/execution/model.py,sha256=GEQLo8t6V4tvbY0mMuWb_YCNLfi809q_T_x16ZfoNQQ,1453
|
|
21
|
-
aiecs/domain/task/__init__.py,sha256=WtU0MPg3xpkKa4RUTbSEkppUxGdvn-ai_3UCRvMjLR8,226
|
|
22
|
-
aiecs/domain/task/dsl_processor.py,sha256=3QUxUK63BbUf1KG3ybcu_XkKXt-U8BuYvFjxDwVmpPs,20352
|
|
23
|
-
aiecs/domain/task/model.py,sha256=NLzXpNuVN1R08UP5wD--mnPi7CZEhvEVPbZCgpw2K2U,1670
|
|
24
|
-
aiecs/domain/task/task_context.py,sha256=waYuAKsdNZTg2orB_6cLbx0ZC-OBxvJLd-gj9bicKyY,10788
|
|
25
|
-
aiecs/infrastructure/__init__.py,sha256=dE-T4IQ0sQTekkMJGqX3HkaaWKJ4gSbq7IN1o8PMHYw,684
|
|
26
|
-
aiecs/infrastructure/messaging/__init__.py,sha256=KOEywSnktNWEN4O8_GE4KSopjMNEyfYhfUaTOkMxLUE,299
|
|
27
|
-
aiecs/infrastructure/messaging/celery_task_manager.py,sha256=yEKJdO_N9hYb3wlOnoVkBzWahvRj637tOkn4geIjPP0,12984
|
|
28
|
-
aiecs/infrastructure/messaging/websocket_manager.py,sha256=HhhLQw2hRV5Scc5HNMMZbAQGQp9QZBYPJQHulKwaeiI,11280
|
|
29
|
-
aiecs/infrastructure/monitoring/__init__.py,sha256=fQ13Q1MTIJTNlh35BSCqXpayCTM_kYvvPTMRzQfPymA,256
|
|
30
|
-
aiecs/infrastructure/monitoring/executor_metrics.py,sha256=z8KJpq6tfCOEArfR-YJ4UClTsef2mNMFuSDHrP51Aww,6040
|
|
31
|
-
aiecs/infrastructure/monitoring/structured_logger.py,sha256=iI895YHmPoaLdXjxHxd952PeTfGw6sh-yUDCnF8R7NY,1657
|
|
32
|
-
aiecs/infrastructure/monitoring/tracing_manager.py,sha256=g4u6paNCZCYdGDEMZiv4bYv_GTG0s8oug-BJgFmkDp0,13449
|
|
33
|
-
aiecs/infrastructure/persistence/__init__.py,sha256=7M0Z58QsSC6PJlZoLfBEiYQJh6t62P5QtwjiqBU0rEs,238
|
|
34
|
-
aiecs/infrastructure/persistence/database_manager.py,sha256=MRkMTALeeybzAfnfuJrOXbEchBCrMAgsz8YYyEUVMjI,12592
|
|
35
|
-
aiecs/infrastructure/persistence/file_storage.py,sha256=d3tcV7Wg_-TGsbw3PY9ttNANntR5rIo7mBgE0CGXKZQ,23321
|
|
36
|
-
aiecs/infrastructure/persistence/redis_client.py,sha256=CqPtYFP8-KHl3cJG9VHun9YFFSp3kCc3ZaZbW7GlqUU,5791
|
|
37
|
-
aiecs/llm/__init__.py,sha256=EsOIu25eDnhEYKZDb1h_O9RxYIF7vaiORUZSUipzhsM,1084
|
|
38
|
-
aiecs/llm/base_client.py,sha256=xjirSGpLSsiWEhiTbKEFHNqbZanwJxBji9yVxegu77w,3193
|
|
39
|
-
aiecs/llm/client_factory.py,sha256=Ysa3NYJIwgqBfFomTfG-G8z3cIElLPcv_vFM4D1IyCc,13566
|
|
40
|
-
aiecs/llm/custom_callbacks.py,sha256=DyEbd1iSwiD8rN3cn96thCxFqk0JFwpBJLZdHijRv7I,9916
|
|
41
|
-
aiecs/llm/openai_client.py,sha256=Dmuo_91AiuM_57QuDiqkFdWFD3Jr-m4xJ89gKihivCs,4388
|
|
42
|
-
aiecs/llm/vertex_client.py,sha256=r_geBuF800g0CyUUAGmxYRjjTd9_X-H8rJ1vGeIvZ6U,8592
|
|
43
|
-
aiecs/llm/xai_client.py,sha256=CMCDdHh7uBGlFdYqTo4EKp7ZenjZIawtL5oWVVvLVCY,6800
|
|
44
|
-
aiecs/scripts/DEPENDENCY_SYSTEM_SUMMARY.md,sha256=K6V1Ugbxx-I-2w1GfS9y7wA4Spgb0mvC3qApBfUgpoc,5865
|
|
45
|
-
aiecs/scripts/README_DEPENDENCY_CHECKER.md,sha256=pE-ISxRycwUvn2EZeOzbtfSTVQPs2ui-_PGJAR50JRQ,6002
|
|
46
|
-
aiecs/scripts/README_WEASEL_PATCH.md,sha256=h0e3Xy6FArLgjika3pRZRhZRbyuj6iLzTU-AhHkWE7M,3581
|
|
47
|
-
aiecs/scripts/__init__.py,sha256=cVxQ5iqym520eDQSpV7B6hWolndCLMOVdvhC_D280PE,66
|
|
48
|
-
aiecs/scripts/dependency_checker.py,sha256=1BpwodgHTGeMcr7rGH0vnAokPCMOJTczzAUSzGiTOS0,33836
|
|
49
|
-
aiecs/scripts/dependency_fixer.py,sha256=0X8Eojf9N0yba2znEYrIwa7kWCKzZbV1OlnRwlrjq-Y,13961
|
|
50
|
-
aiecs/scripts/download_nlp_data.py,sha256=P2ObKS2P7oGCQU257mByU8Ca4-UXpfH8ZrgOUYT12Ys,10985
|
|
51
|
-
aiecs/scripts/fix_weasel_validator.py,sha256=w_s2VTIAgWPi-3VUXlrINBkLm9765QHdRf4g5RzBUug,4073
|
|
52
|
-
aiecs/scripts/fix_weasel_validator.sh,sha256=XqV3Yx1wi23dWXDbofFK6_SU0BVLr9E1HaIudIuem7Q,2736
|
|
53
|
-
aiecs/scripts/patch_weasel_library.sh,sha256=5mF6G2uL_K5zU4Sgf28W3c3-JI5lR-xuVk181LtWdVc,5489
|
|
54
|
-
aiecs/scripts/quick_dependency_check.py,sha256=-Foin8lz6LN6pV6Gxzd3N7UcQA9_rkM3SJdQLErA8uU,9827
|
|
55
|
-
aiecs/scripts/run_weasel_patch.sh,sha256=bwyFyeaITwDmG2_3HsTd7PHeexahh6MhEZwUuAC_85c,1233
|
|
56
|
-
aiecs/scripts/setup_nlp_data.sh,sha256=CqO-bLVc_mLhNpsSoXZjvJKhtLUbA_gYBqfp3nzUuRI,5843
|
|
57
|
-
aiecs/tasks/__init__.py,sha256=__xkKqXWQ24FkySb8xtsCCJYLKnqmHKbAnojxeELEiE,90
|
|
58
|
-
aiecs/tasks/worker.py,sha256=5cBeP2IyvwDe6tIhkiv6LfyQz41IFZ1S3Fr6IdNKP6Q,4298
|
|
59
|
-
aiecs/tools/__init__.py,sha256=LwXSVLYP67Sa6fYpVSYPaUF5tvbX4I9zm3cW2JGHI1U,6285
|
|
60
|
-
aiecs/tools/base_tool.py,sha256=1dndT1M5PAU3Cw-gE9vAIKACiq6na6CAUPIefAeALc4,6901
|
|
61
|
-
aiecs/tools/langchain_adapter.py,sha256=Yn8kOuaF8hoXAYBWUSfagHbzF8ecvQGbYrp-q0E3b_E,13316
|
|
62
|
-
aiecs/tools/temp_file_manager.py,sha256=_ipPCMKT5twYjtLJucOnhIyqtKEtSquKqx-xasKu_ks,4679
|
|
63
|
-
aiecs/tools/task_tools/__init__.py,sha256=hzsGoRmqX_gZcutXKynCLi6esBPXCx--cRkZVxaXAIA,2693
|
|
64
|
-
aiecs/tools/task_tools/chart_tool.py,sha256=C7fM8WvBkyQgNCg5xGndXUF6nNfY7lQjYj8l9DnPAq0,26442
|
|
65
|
-
aiecs/tools/task_tools/classfire_tool.py,sha256=UKlnRD3KjbU3ZhWuplP6BTuv6wcjt-7XBftlGZF6hcE,31950
|
|
66
|
-
aiecs/tools/task_tools/image_tool.py,sha256=0VgFSKIeX4tXge7GnJQoouvECjJJQmRBIn0aponlrMg,15024
|
|
67
|
-
aiecs/tools/task_tools/office_tool.py,sha256=FW9EUnCHmT_YiT9wfWrbgvmaOrALXYNJrqI2bvEu6lM,23169
|
|
68
|
-
aiecs/tools/task_tools/pandas_tool.py,sha256=762Nz-2s3l5sdDXFRriK2F22I_k_nkELaX1sDAtCpwk,24892
|
|
69
|
-
aiecs/tools/task_tools/report_tool.py,sha256=ZoETHFpO3UOD_JH7LBZZlyZY8A7DHHgSbYY8QPT95Wk,23567
|
|
70
|
-
aiecs/tools/task_tools/research_tool.py,sha256=JXPmC5Gg2SbZWG56e3fkZo-lYgG3h_XfYJUjEtXOceQ,15557
|
|
71
|
-
aiecs/tools/task_tools/scraper_tool.py,sha256=tlnPYFgS_Nbil05yuTZsooggDU1B3nnQ3LhA9pT8ffY,24712
|
|
72
|
-
aiecs/tools/task_tools/search_api.py,sha256=NIqZE5jaEKUIGTjSToxYzVfTB4xMmFX4yYNgp5tOm_w,217
|
|
73
|
-
aiecs/tools/task_tools/stats_tool.py,sha256=IUAhs5wUi1dknEha8twCT_m3MF4ZTqod3TDAFslfaF8,24300
|
|
74
|
-
aiecs/tools/tool_executor/__init__.py,sha256=gxuujSlQFj8DQ9ejCisO_cYqk5GQkJnwv0sJERd80CM,711
|
|
75
|
-
aiecs/tools/tool_executor/tool_executor.py,sha256=fuoKQahLBgRT6AQbHuOCLzG53w4UAD-QTraGjraEEsw,19496
|
|
76
|
-
aiecs/utils/LLM_output_structor.py,sha256=zKkOhrg6smToD0NTCqj3OepBQDTZXgPK4VsKJEFgxyg,15793
|
|
77
|
-
aiecs/utils/__init__.py,sha256=PkukDzRaeeAJUmfm9vA9ez1l3tjvhDRnWZCqzWI6nNw,562
|
|
78
|
-
aiecs/utils/base_callback.py,sha256=UpNrOZZ1RCmiVPnuhjFNde_m29yWg1ID16vzfzBMk7U,1661
|
|
79
|
-
aiecs/utils/execution_utils.py,sha256=uQoUcLKAbmkcMhucdhngrAfeXE6DvuG26qIx4wyx2fo,5871
|
|
80
|
-
aiecs/utils/logging.py,sha256=kvZ9OjFChfLN_2MEGvIDBK3trPAhikkh87rK49vN3bU,29
|
|
81
|
-
aiecs/utils/prompt_loader.py,sha256=cBS2bZXpYQOWSiOGkhwIzyy3_bETqwIblRi_9qQT9iQ,423
|
|
82
|
-
aiecs/utils/token_usage_repository.py,sha256=cSu2lQq7obNrjYBdtvqkCeWeApscHVcYa9JNgl3T3gU,10206
|
|
83
|
-
aiecs/ws/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
84
|
-
aiecs/ws/socket_server.py,sha256=j_9idVY_rWlTsF51FgmuhWCWFVt7_gAHL8vNg3IxV5g,1476
|
|
85
|
-
aiecs-1.0.1.dist-info/licenses/LICENSE,sha256=_1YRaIS0eZu1pv6xfz245UkU0i1Va2B841hv3OWRwqg,12494
|
|
86
|
-
aiecs-1.0.1.dist-info/METADATA,sha256=tRQdJ7E_SGsY28EGauleXzQE5UAiZ1cebT7WLnjo1CI,16388
|
|
87
|
-
aiecs-1.0.1.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
88
|
-
aiecs-1.0.1.dist-info/entry_points.txt,sha256=0Bj2pSaZM-ADKTktbCQ0KQxRe0s8mQFKVsg3IGDJGqA,342
|
|
89
|
-
aiecs-1.0.1.dist-info/top_level.txt,sha256=22IlUlOqh9Ni3jXlQNMNUqzbW8dcxXPeR_EQ-BJVcV8,6
|
|
90
|
-
aiecs-1.0.1.dist-info/RECORD,,
|
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
[console_scripts]
|
|
2
|
-
aiecs = aiecs.__main__:main
|
|
3
|
-
aiecs-check-deps = aiecs.scripts.dependency_checker:main
|
|
4
|
-
aiecs-download-nlp-data = aiecs.scripts.download_nlp_data:main
|
|
5
|
-
aiecs-fix-deps = aiecs.scripts.dependency_fixer:main
|
|
6
|
-
aiecs-patch-weasel = aiecs.scripts.fix_weasel_validator:main
|
|
7
|
-
aiecs-quick-check = aiecs.scripts.quick_dependency_check:main
|
|
File without changes
|
/aiecs/scripts/{README_WEASEL_PATCH.md → dependance_patch/fix_weasel/README_WEASEL_PATCH.md}
RENAMED
|
File without changes
|
/aiecs/scripts/{fix_weasel_validator.sh → dependance_patch/fix_weasel/fix_weasel_validator.sh}
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|