aiecs 1.0.1__py3-none-any.whl → 1.7.17__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 +435 -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 +3949 -0
- aiecs/domain/agent/exceptions.py +99 -0
- aiecs/domain/agent/graph_aware_mixin.py +569 -0
- aiecs/domain/agent/hybrid_agent.py +1731 -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 +894 -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 +377 -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 +230 -37
- aiecs/llm/client_resolver.py +155 -0
- aiecs/llm/clients/__init__.py +38 -0
- aiecs/llm/clients/base_client.py +328 -0
- aiecs/llm/clients/google_function_calling_mixin.py +415 -0
- aiecs/llm/clients/googleai_client.py +314 -0
- aiecs/llm/clients/openai_client.py +158 -0
- aiecs/llm/clients/openai_compatible_mixin.py +367 -0
- aiecs/llm/clients/vertex_client.py +1186 -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 +1464 -0
- aiecs/tools/docs/document_layout_tool.py +1160 -0
- aiecs/tools/docs/document_parser_tool.py +1016 -0
- aiecs/tools/docs/document_writer_tool.py +2008 -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 +220 -141
- 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.17.dist-info}/METADATA +52 -15
- aiecs-1.7.17.dist-info/RECORD +337 -0
- aiecs-1.7.17.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.17.dist-info}/WHEEL +0 -0
- {aiecs-1.0.1.dist-info → aiecs-1.7.17.dist-info}/licenses/LICENSE +0 -0
- {aiecs-1.0.1.dist-info → aiecs-1.7.17.dist-info}/top_level.txt +0 -0
|
@@ -0,0 +1,337 @@
|
|
|
1
|
+
aiecs/__init__.py,sha256=E2PYbWAzU7vTEUbmirpTecpqae3VBiyuZsyNM2KQ3h0,1837
|
|
2
|
+
aiecs/__main__.py,sha256=SUsWL1jOdR3zv6yOi1dAdNH4wvzSVg07Vhlb6I9-bQY,1048
|
|
3
|
+
aiecs/aiecs_client.py,sha256=CjSeiPZ9X0u6xkJcpVRXmCbIm0Wqyx3ejl7o7CaTzUI,18039
|
|
4
|
+
aiecs/main.py,sha256=zYHFgadRkqvbzGBwargGVKHIxWDNm5EkMv3REMGiY6s,10722
|
|
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=WXPLnSYesTrkyVMd5HbOKG705k4eJiEV8200-ZSL0L8,14798
|
|
8
|
+
aiecs/application/knowledge_graph/__init__.py,sha256=lmNudJa3XttNd2h8tBCCZ_NJ2dKnXmT1hdeIqtY-UdA,145
|
|
9
|
+
aiecs/application/knowledge_graph/builder/__init__.py,sha256=dBa7GAQgpYosdN2FQJuQPBxfIaY9vde8LZWoU2kTz1k,926
|
|
10
|
+
aiecs/application/knowledge_graph/builder/data_quality.py,sha256=rugcFNliJcWQtQFxnn-_wJrDSSAgq6p0k1TBXrmT6SE,11561
|
|
11
|
+
aiecs/application/knowledge_graph/builder/data_reshaping.py,sha256=Tj0X4ZiuFd58f3ej1VKm4I4i52HZQMp2uq63-pl1uKw,9202
|
|
12
|
+
aiecs/application/knowledge_graph/builder/document_builder.py,sha256=IlW09k8kN7E5MTXJlXeYXBf7vAl348WmCGncjPc06vI,12636
|
|
13
|
+
aiecs/application/knowledge_graph/builder/graph_builder.py,sha256=-QDNoR0SHrEvX75sXdmoG_ZQB5VlNK5XBp9xY5Sejfo,18776
|
|
14
|
+
aiecs/application/knowledge_graph/builder/import_optimizer.py,sha256=lh6oa2eW3JqKdRCzXCje2Ew8jORKZARjbCSdcieqmnI,12163
|
|
15
|
+
aiecs/application/knowledge_graph/builder/schema_inference.py,sha256=DTJWdebOXaRd5tFwEgAvufbdMT_kZSJ50tZdWS0NAY4,15248
|
|
16
|
+
aiecs/application/knowledge_graph/builder/schema_mapping.py,sha256=eBRCZKY1eEDE9w3VaXdywx2h6HuVsSCU4qOCV-7t9bc,21034
|
|
17
|
+
aiecs/application/knowledge_graph/builder/structured_pipeline.py,sha256=domjvcxKUTQslJtNxCWi_0Vdb38Y_5nZGOsWzc3xeQM,52224
|
|
18
|
+
aiecs/application/knowledge_graph/builder/text_chunker.py,sha256=jvs4fxPocL_mobLPQqtqsk0Waub11EqUb1PIsLAbxZk,9567
|
|
19
|
+
aiecs/application/knowledge_graph/extractors/__init__.py,sha256=FtCvr-R7CTDcEV4SqtUARoJ5OnULLhw26Ad4NRq8Cmg,705
|
|
20
|
+
aiecs/application/knowledge_graph/extractors/base.py,sha256=XQisuU3UKteHqskqeV0uE_edz7-P03fgJyXDc1YqX1U,3336
|
|
21
|
+
aiecs/application/knowledge_graph/extractors/llm_entity_extractor.py,sha256=0hvZr1ozuf6_ld40OBo4CsDCGlc9Un0ejWIIv90IPrA,15263
|
|
22
|
+
aiecs/application/knowledge_graph/extractors/llm_relation_extractor.py,sha256=4OPvAjy_qj0NaVIA6c50cazu7ILOs_uBXXfcxJHOeM4,11484
|
|
23
|
+
aiecs/application/knowledge_graph/extractors/ner_entity_extractor.py,sha256=2yiGGK3tzjOD-ncMI_5_psKtJyLwpUQ-yuED8q3JZn0,7806
|
|
24
|
+
aiecs/application/knowledge_graph/fusion/__init__.py,sha256=xQ30M8uhOx8-RV8eJ_Mzs2WhNYdu0piYmlncq_MluZ4,2217
|
|
25
|
+
aiecs/application/knowledge_graph/fusion/ab_testing.py,sha256=JQ4utU9udcUDSCm8j6goSQbl-dyP90kMohtohB4Kw78,13024
|
|
26
|
+
aiecs/application/knowledge_graph/fusion/abbreviation_expander.py,sha256=z6Q8YRZQt6FdnVrAlwTWGPP68emaeHl5ke_TqJX_yFE,10535
|
|
27
|
+
aiecs/application/knowledge_graph/fusion/alias_index.py,sha256=FQ2viMIxkzfPBoaQCnPHnnzc0Vnvuw690pb024cLBf8,19569
|
|
28
|
+
aiecs/application/knowledge_graph/fusion/alias_matcher.py,sha256=zavZ-sw8L3-DvybEd4k3SiOJQy0Jn60tJfflICoXGz0,10989
|
|
29
|
+
aiecs/application/knowledge_graph/fusion/cache_coordinator.py,sha256=PzDxhZ4ZAM7XfZkayIc2pxROylENqjmJBO3w12z0Fck,11123
|
|
30
|
+
aiecs/application/knowledge_graph/fusion/entity_deduplicator.py,sha256=WwaEVAOOV6czwiwTwjzlK28zFdrTtfztqu1SCtGRec8,14501
|
|
31
|
+
aiecs/application/knowledge_graph/fusion/entity_linker.py,sha256=5Llv9rI5FpFa1YMCao6j1Bs-Z927JQzRlGsg1PfQ100,18706
|
|
32
|
+
aiecs/application/knowledge_graph/fusion/evaluation_dataset.py,sha256=JhQUbNAydjw-NXjXisGiUWpRj3mbz6A0aVP-utOVGRs,12227
|
|
33
|
+
aiecs/application/knowledge_graph/fusion/knowledge_fusion.py,sha256=6Tjzzuxcg5s8KXRev07popDOuTW_ZYrf500yCZhlDsw,23178
|
|
34
|
+
aiecs/application/knowledge_graph/fusion/matching_config.py,sha256=4kjUKHuamwsjXNlRrotZ6zA4SDTyIWZmgW-wmxWeFZk,16558
|
|
35
|
+
aiecs/application/knowledge_graph/fusion/name_normalizer.py,sha256=fK1A7j8FMMKEwnIeNvOCyCa8wJniUew8qosGx9Ddph0,11395
|
|
36
|
+
aiecs/application/knowledge_graph/fusion/relation_deduplicator.py,sha256=HtzghqXoQaXEgX88LGCmAcNKkZVqmRabC-751FTF2dM,5597
|
|
37
|
+
aiecs/application/knowledge_graph/fusion/semantic_name_matcher.py,sha256=mDGSixwdG0eiKoxls7VSgkmNuzbE9MqCBh1VtOpqTDU,14595
|
|
38
|
+
aiecs/application/knowledge_graph/fusion/similarity_pipeline.py,sha256=LVZvdCX7Gr0OmtfjaROYug09ISFSbd3VVCTl8xhu_3c,18482
|
|
39
|
+
aiecs/application/knowledge_graph/pattern_matching/__init__.py,sha256=0Y-4NvFOH2RbIbo7gb_Uaww4IxOGmWFHcZKjEhIqZNo,461
|
|
40
|
+
aiecs/application/knowledge_graph/pattern_matching/pattern_matcher.py,sha256=2J2lJR77AFlUn0yHcYWJXoV15mPfyEavcFMQdHehGl8,11109
|
|
41
|
+
aiecs/application/knowledge_graph/pattern_matching/query_executor.py,sha256=DvErB75IhIQ_ZCkgGVVkquyyy3x6Wh0vah0TNk54raA,11269
|
|
42
|
+
aiecs/application/knowledge_graph/profiling/__init__.py,sha256=L2RB_zxk7I-rTY4I2iPfqQdZzNZFiQrF83B2ABIaSVU,266
|
|
43
|
+
aiecs/application/knowledge_graph/profiling/query_plan_visualizer.py,sha256=-OQM-FMJ3mkPltwM1kg1QVcNSXKFZdF1b757-GBByns,5932
|
|
44
|
+
aiecs/application/knowledge_graph/profiling/query_profiler.py,sha256=-hjnqZtGmOm8ae7cAg3hyJDyXLYBvyKwIaZ1uAoJ7-U,6713
|
|
45
|
+
aiecs/application/knowledge_graph/reasoning/__init__.py,sha256=R3WivCoP6xHaiMGEJVELRWpbDyh-GbPDRBr5OT8spX4,659
|
|
46
|
+
aiecs/application/knowledge_graph/reasoning/evidence_synthesis.py,sha256=e8VCvWDPXv2x1Iu-ygN6fIQz6YtAT0UGP_cVJutS0XM,11184
|
|
47
|
+
aiecs/application/knowledge_graph/reasoning/inference_engine.py,sha256=w-Y4B4SROYfbG_tyIZFA8qo3V8xo0ZlFKOl_ZlwKTZs,16486
|
|
48
|
+
aiecs/application/knowledge_graph/reasoning/logic_form_parser.py,sha256=wOmur6ZVeUW-0IgsIDkp67SuaMvVLCtJtLFFvXsly4Q,5000
|
|
49
|
+
aiecs/application/knowledge_graph/reasoning/logic_query_integration.py,sha256=EZgTAI1o60nqhtlVWq7kVS0IWUWSdzdarUuv4pCGwJE,5566
|
|
50
|
+
aiecs/application/knowledge_graph/reasoning/query_planner.py,sha256=501GhiCywd5l86fk91TDnB6FmhVA7oJ-vkOlN-Q-ZTM,30816
|
|
51
|
+
aiecs/application/knowledge_graph/reasoning/reasoning_engine.py,sha256=gs_Qk0-C0GRQEQX9vw98bB3SJVEOOQ8TrtnMnkqZm24,20473
|
|
52
|
+
aiecs/application/knowledge_graph/reasoning/logic_parser/__init__.py,sha256=D2QHTVGo-hqwCc1Ulq7ZYLdNNfoNVtJPiV_KPxoeBB8,1720
|
|
53
|
+
aiecs/application/knowledge_graph/reasoning/logic_parser/ast_builder.py,sha256=o_TIC9Iqh76ay3RvcwGyiRdIgQ4lvXBeWycFNhjQWNE,14897
|
|
54
|
+
aiecs/application/knowledge_graph/reasoning/logic_parser/ast_nodes.py,sha256=SO2w1xEAM5zgCl121k8JTxlGPjw1XeIxPNNUweOo3Y8,32264
|
|
55
|
+
aiecs/application/knowledge_graph/reasoning/logic_parser/ast_validator.py,sha256=ZpqMxrZD1OLkIPpa_guRgi923Unwp4peEWhjuj8BL_U,31195
|
|
56
|
+
aiecs/application/knowledge_graph/reasoning/logic_parser/error_handler.py,sha256=PR5XeCpX678sSTGgc0SAd9BR1WbMbjeMG5zOlDme4vk,15094
|
|
57
|
+
aiecs/application/knowledge_graph/reasoning/logic_parser/parser.py,sha256=-WzYFryZTF_BB_P8NRBZztl_KRtyNtd6Hxz8JIm-Sto,12810
|
|
58
|
+
aiecs/application/knowledge_graph/reasoning/logic_parser/query_context.py,sha256=xM9wk_h16TNCffWaqLE8K1LqewBtoTW709KAW3ZoRSw,6429
|
|
59
|
+
aiecs/application/knowledge_graph/retrieval/__init__.py,sha256=pgbycGTCTo4rJQ2dWJrSENlVcf9y3kXpEIazqoJC83k,664
|
|
60
|
+
aiecs/application/knowledge_graph/retrieval/query_intent_classifier.py,sha256=D0XK-oLYrvzv3-dzdD_NPkVm9IPUdJ9bvJKK8SctXvw,6808
|
|
61
|
+
aiecs/application/knowledge_graph/retrieval/retrieval_strategies.py,sha256=ya0HbnToPImGvgQyo8gZW_E9V8WX0J1cme8iJW68QZk,18626
|
|
62
|
+
aiecs/application/knowledge_graph/retrieval/strategy_types.py,sha256=HI7yhC1bTD76TtQodk0cQpNO5285IxRkdD_K0p7BlHU,706
|
|
63
|
+
aiecs/application/knowledge_graph/search/__init__.py,sha256=3-c89qUNQq9qcRofVPQanOnKO7G1PEAemJPm98ZRGx4,1471
|
|
64
|
+
aiecs/application/knowledge_graph/search/hybrid_search.py,sha256=BKkvy7ixmZe9bKlYy4WFMf4Nn6-PdyPvGnsDyyAba_g,15329
|
|
65
|
+
aiecs/application/knowledge_graph/search/reranker.py,sha256=Jo1fVk0H8iReDlUzH2ktSpsRyPoC4UMZZ2b0-S3rKkg,9281
|
|
66
|
+
aiecs/application/knowledge_graph/search/reranker_strategies.py,sha256=Fm0hSvkHjwb34QQAz1jScCyjrpWWMTpMmEdYGyKibTE,17579
|
|
67
|
+
aiecs/application/knowledge_graph/search/text_similarity.py,sha256=LH3UnSZoB51AIRze-zC2bg9NK2cvR5ZpMKaU9E0FDRk,11810
|
|
68
|
+
aiecs/application/knowledge_graph/traversal/__init__.py,sha256=mEGKpq6RD7pbyKaRVxhLwD1QjLx9nQ9vwvix4rxce3E,351
|
|
69
|
+
aiecs/application/knowledge_graph/traversal/enhanced_traversal.py,sha256=gL9ZgneyBinQ6pMqCiScqZuwF4WmsGMagxOXnnvc9L4,11471
|
|
70
|
+
aiecs/application/knowledge_graph/traversal/path_scorer.py,sha256=OzNLX-jbQYQ0zSx9xSr9sHHVV6adGY8wt40Z4FDaPpg,8367
|
|
71
|
+
aiecs/application/knowledge_graph/validators/__init__.py,sha256=mRywUj6JziSjExv7IG8TwV-pcRotqeltYJCuIDKchsU,234
|
|
72
|
+
aiecs/application/knowledge_graph/validators/relation_validator.py,sha256=5jYG0ezjSUIu1AgV-n_3aFtbAkia5HII6wUE8vl7D20,9130
|
|
73
|
+
aiecs/application/knowledge_graph/visualization/__init__.py,sha256=JxDSSdxC6ofhhEsoWS7gYfpj-wt2qENK0Ji8hr2eXOE,227
|
|
74
|
+
aiecs/application/knowledge_graph/visualization/graph_visualizer.py,sha256=-oxH1PNNMXuvDdextmIOnZqR_l_sc-fiUeDWOj7DSwo,9918
|
|
75
|
+
aiecs/common/__init__.py,sha256=6XzlzbA5JU8sFIAEF9-MZTGCbksTqCickXqEITT6cpI,116
|
|
76
|
+
aiecs/common/knowledge_graph/__init__.py,sha256=RBvTWuB_PzolXDYBAdqJrFYpQV34VGW0v21t4Bja8Uo,294
|
|
77
|
+
aiecs/common/knowledge_graph/runnable.py,sha256=BLsV9HHfO4lT3_LkFQbf_rUT_iXloZi4D-ztwFqVNuY,15233
|
|
78
|
+
aiecs/config/__init__.py,sha256=aQk0xVquxBZmLTol8wvF4Jv8Yl9G6qyMvA1RL_JE99k,974
|
|
79
|
+
aiecs/config/config.py,sha256=jI5d4xLbU-7NoUcQIydpB9CCKUFyXElJt_OENaHGy_8,33657
|
|
80
|
+
aiecs/config/graph_config.py,sha256=9-Xrgd1kswfoIep5nzKmVhEz2vPENqtm_l9nZkXLXL0,3993
|
|
81
|
+
aiecs/config/tool_config.py,sha256=iuMBlHlNWoXzcXxVaGuU1BOruh0yQbAZtPTrAqkNPkQ,16301
|
|
82
|
+
aiecs/core/__init__.py,sha256=WnY-iEE0BpdRg26vVSCILvERzcXg6kajS4IiO2-NovI,1471
|
|
83
|
+
aiecs/core/interface/__init__.py,sha256=BwngZE6IqA7UBql71C5mCgVhfzmDtdZKFM7Dd3KIlTM,690
|
|
84
|
+
aiecs/core/interface/execution_interface.py,sha256=4_aqjLPhPvLFq-EsVHLlzlLJw6IoKw49fv8Zeh3iMpY,4618
|
|
85
|
+
aiecs/core/interface/storage_interface.py,sha256=EJEV_R9CLZwwRyy70OmsXnDTmtqp_d_dwSCQjzr8plI,5143
|
|
86
|
+
aiecs/core/registry/__init__.py,sha256=Dd0UspDS1RLCIawmKN8w9rQa4Nx-vVE6yHNhGEMnefk,697
|
|
87
|
+
aiecs/core/registry/service_registry.py,sha256=RqKh4C7X3TJlJRBiT9tNZnwFIcXux05BSPTG6Mxswus,2445
|
|
88
|
+
aiecs/domain/__init__.py,sha256=hRyDL-WbPk16S0abxtMdPY0vzU3qaHRV2REYRo_fHiU,6854
|
|
89
|
+
aiecs/domain/agent/__init__.py,sha256=yMDE7r_z8EHGmteWc4E9JoNBVRgeR72VNU7p3c5Oblg,4084
|
|
90
|
+
aiecs/domain/agent/base_agent.py,sha256=r6jn8Ux9FswRAYXSx8IrsB_SigeCC5VebPLCb7OmJMk,148078
|
|
91
|
+
aiecs/domain/agent/exceptions.py,sha256=axBRJebHP_JpMfjDstOGRxRXsvPXpmZ78Tccv5TxUs0,2951
|
|
92
|
+
aiecs/domain/agent/graph_aware_mixin.py,sha256=1LScf_JuAU67JtuUgoL7DRCQ6WNJA66-U7AXdgEms1Q,18665
|
|
93
|
+
aiecs/domain/agent/hybrid_agent.py,sha256=EmuAqUZvlPiquMhHiAEsG0N9ZEi3qqhNXGj5rVlfDD4,72468
|
|
94
|
+
aiecs/domain/agent/knowledge_aware_agent.py,sha256=xkCY12RFK1cNwrRdFGIOKkX6BuwBFO0jIjRRCCsn-ew,74013
|
|
95
|
+
aiecs/domain/agent/lifecycle.py,sha256=Mqi0YJYBsTfsD-NC0EZOA1Di889qrnRPzQAehxZO32M,8719
|
|
96
|
+
aiecs/domain/agent/llm_agent.py,sha256=Aj6MvoiKTC8Qxfm6JtCruz77onLa5qUah98SituU8XU,24592
|
|
97
|
+
aiecs/domain/agent/models.py,sha256=c7cgW5Oydw86zcfT39CctByWTuZk2FpvWLFjpWjd9pw,36751
|
|
98
|
+
aiecs/domain/agent/observability.py,sha256=BjCzX0f7GJkusEYsYrVZKFXuIoRO9kH3wgVgHb-W5T0,13806
|
|
99
|
+
aiecs/domain/agent/persistence.py,sha256=Qfd8LWR9am4vueJp5eAjjBKuPxlbGsOScSQkUbIwt84,14399
|
|
100
|
+
aiecs/domain/agent/registry.py,sha256=IvPJeFi7PY2Av8qzywGqhLmycR96k5PA8YVCVxnKvqg,6841
|
|
101
|
+
aiecs/domain/agent/tool_agent.py,sha256=6LB3L7VbHMDdaJ0k_hZ9xjts0t7wWbk2A0slY5Y45XU,15387
|
|
102
|
+
aiecs/domain/agent/integration/__init__.py,sha256=N2d4l-L60DQRY1C5EwXILDE18ZOQAqpd3imtiSyS1gE,731
|
|
103
|
+
aiecs/domain/agent/integration/context_compressor.py,sha256=auuUm0X-5B9F8pT0TpbL2MTRb8SNREtX3_Z85dJ5_tQ,6677
|
|
104
|
+
aiecs/domain/agent/integration/context_engine_adapter.py,sha256=niBmUXpyeCDdpLiPKIhKq2rmtB40cuHHWN5be3ay0tI,21993
|
|
105
|
+
aiecs/domain/agent/integration/protocols.py,sha256=Erdz4lux0LP5GDmmQDXX6fj0Y7pEteMsz5L-RunxMvg,8369
|
|
106
|
+
aiecs/domain/agent/integration/retry_policy.py,sha256=MNt6Po5k8W1369HcRJeLkZVo50ynVCwdM4px01NLDUQ,6087
|
|
107
|
+
aiecs/domain/agent/integration/role_config.py,sha256=SWm4q--F3_20lNZmLch6bDAR2xEs1Kk-o5M1OfLRbkM,6789
|
|
108
|
+
aiecs/domain/agent/memory/__init__.py,sha256=NBBWCROQA3MY-ueOUm9M30oDlghoo-UgzF-rVSt0HX4,184
|
|
109
|
+
aiecs/domain/agent/memory/conversation.py,sha256=8YkKhL563ziX9JPwvLZH8eh4fE8L7rhtBmT7nNYzXYY,43131
|
|
110
|
+
aiecs/domain/agent/migration/__init__.py,sha256=fb4RuWlthdGVqHvKJhf4QSmLniBiwCMe0Uz_V3H_KJM,320
|
|
111
|
+
aiecs/domain/agent/migration/conversion.py,sha256=5QAHlGNHYgnS-8evmqE2gr2Zj6yuoNQqz6mTG6afCLk,4676
|
|
112
|
+
aiecs/domain/agent/migration/legacy_wrapper.py,sha256=UA-Ta-HJOZxGiJ4P2NtGONS--D2ToF-zW6CtqfMEATc,2867
|
|
113
|
+
aiecs/domain/agent/prompts/__init__.py,sha256=-TRbenbeESHikvJ13rI-d2zt35SfdS9OMCCgBU6TRWY,592
|
|
114
|
+
aiecs/domain/agent/prompts/builder.py,sha256=uWkuBbLSk1leQu4Lx82_gZQ1CxlOFZOevggTaPKVOSs,4071
|
|
115
|
+
aiecs/domain/agent/prompts/formatters.py,sha256=VuH42B02TUM5EP0aEyXVbdwD3xhuDQvsFpFz1R7s61c,4596
|
|
116
|
+
aiecs/domain/agent/prompts/template.py,sha256=5hLTJKGUa9I1DTsfL7HhErG1wXTe18jVBanCXqYUL2U,7365
|
|
117
|
+
aiecs/domain/agent/tools/__init__.py,sha256=fdeZxTqlimXuDjAoEEKmYRXhQK3Gyba2rIDU4JE2jVE,239
|
|
118
|
+
aiecs/domain/agent/tools/schema_generator.py,sha256=r7TP0h8qAkRAkVFygEng8Wkr5lU90WfZlgtObuHQGE0,13290
|
|
119
|
+
aiecs/domain/community/__init__.py,sha256=CcS5o6dpRM7NWm0HCl3d6MeDunwAQ1IABZlEVAQAZnU,3587
|
|
120
|
+
aiecs/domain/community/agent_adapter.py,sha256=3WeIPeOTgLEvjnv-Ee8oqL3mzh8R1r4CQfm8uqM4OA8,15139
|
|
121
|
+
aiecs/domain/community/analytics.py,sha256=CUczcN_cB7qatbeJYPVTbxb9vF9MDtZO1UkYXSrP5-o,17607
|
|
122
|
+
aiecs/domain/community/collaborative_workflow.py,sha256=Ka1wK7Xm8bOVysUTrNx58HNRTZPolBq4GV459T-sQBI,21117
|
|
123
|
+
aiecs/domain/community/communication_hub.py,sha256=4TAtM1hguBJQkRYNS1k5zigQ7E_2YUL9VmdM_vjiv5k,19740
|
|
124
|
+
aiecs/domain/community/community_builder.py,sha256=aGd0vF1uwKfS_VvmX05SMbE4w8w3CyhTwmyhiKFJVa8,10192
|
|
125
|
+
aiecs/domain/community/community_integration.py,sha256=6oWdt_ponopLOpYCzcLawKZTbFJCtCyEC7hrszhKRTM,29600
|
|
126
|
+
aiecs/domain/community/community_manager.py,sha256=Yq0bIZr74MHaWBzQfZFdB1ceWvrXGFmFj_LByo8pT7A,28969
|
|
127
|
+
aiecs/domain/community/decision_engine.py,sha256=WA6IXhwHxNFh3u0uz9puCgDkoXN89LQgH4SvMl_gJTs,32514
|
|
128
|
+
aiecs/domain/community/exceptions.py,sha256=1d88hvmiACg2SiENz1h-aPO_tPACBmaqhSowMI1AGwQ,7815
|
|
129
|
+
aiecs/domain/community/resource_manager.py,sha256=9C4RfC1-Nneod27dbfrz4kPYtblWqUxUynScIZWE434,16271
|
|
130
|
+
aiecs/domain/community/shared_context_manager.py,sha256=DmfWOup8QnNyhzKIIt7j5yecmM5IzXY-B2FPiPNwd48,20095
|
|
131
|
+
aiecs/domain/community/models/__init__.py,sha256=E-Y2u3GhNJwYx0mx8TDbiUoooNkNMY1JnjTkwPBytQk,605
|
|
132
|
+
aiecs/domain/community/models/community_models.py,sha256=O66eDnMoC5bxCHSl0SrK9ZhnLX4LP_CuD9K7WSr2TU0,10144
|
|
133
|
+
aiecs/domain/context/__init__.py,sha256=Ri5ZD-hst9KI4ZX4mrN2GbdMXBUt2vCrJEeP5s3lFRQ,1877
|
|
134
|
+
aiecs/domain/context/context_engine.py,sha256=fX10sclYNNpc_N8DEVqByqRTLAd0gSSmwyZj0mYfZsc,73702
|
|
135
|
+
aiecs/domain/context/conversation_models.py,sha256=hVyb0UxmilgbZYcjdLVPraSQho4mK3o2yT_qh2YWzrk,13343
|
|
136
|
+
aiecs/domain/context/graph_memory.py,sha256=2ryeUuWk5ttFGmZNHCLPT2iveGU3k3iPhkwY2KclM88,23574
|
|
137
|
+
aiecs/domain/execution/__init__.py,sha256=usXYgPcS-j0CFBN5K1v1WuxQUHsgap3tsaZnDCcKVXs,216
|
|
138
|
+
aiecs/domain/execution/model.py,sha256=89lsVDgnx6yxocdQqXRzf8Dt5wxk9a2J16eQCZZAtrA,1492
|
|
139
|
+
aiecs/domain/knowledge_graph/__init__.py,sha256=SwvWpzCCS9_fhRo3LjvSFC60_ArXGfZJ-gBPhQDHcxI,585
|
|
140
|
+
aiecs/domain/knowledge_graph/models/__init__.py,sha256=6S_5SSLyGSj8KwCoe2HX8gITwCthqIcbOHJW1x7KHao,1239
|
|
141
|
+
aiecs/domain/knowledge_graph/models/entity.py,sha256=MrFWrsPrRwh9Xsu0-o8ho1hS789UGjKnApt1JvCfuXI,4685
|
|
142
|
+
aiecs/domain/knowledge_graph/models/evidence.py,sha256=DXCBcMde19wkgmwqHHQw02xGDBnDNzymon-eguOvGkw,6233
|
|
143
|
+
aiecs/domain/knowledge_graph/models/inference_rule.py,sha256=hx2Y9gdZvOoEB7prgbp5mD47Gz95_wKC2DWdvwYPK90,5819
|
|
144
|
+
aiecs/domain/knowledge_graph/models/path.py,sha256=Z2SaibS0YAhsJQQP_8So_XTB_LhPYiLFTx2S3TAjY0k,4895
|
|
145
|
+
aiecs/domain/knowledge_graph/models/path_pattern.py,sha256=HSdlYWqqx2shvFDVrkj1C2pFGxdYS3EipiPJYE1BfBE,5097
|
|
146
|
+
aiecs/domain/knowledge_graph/models/query.py,sha256=OLj4Aq_96yxD2IFyOO1hyfgvxib1wsWTsWQcgETFZdQ,8574
|
|
147
|
+
aiecs/domain/knowledge_graph/models/query_plan.py,sha256=xNqdr-zJC3KU98_9n0WV56PHDg2JhTYk1vt4Un2upyo,6199
|
|
148
|
+
aiecs/domain/knowledge_graph/models/relation.py,sha256=D7EKpJRhIcFgKxorrgar3HziN_yY7hvllrlXxMSd280,7391
|
|
149
|
+
aiecs/domain/knowledge_graph/schema/__init__.py,sha256=QzwLsC9SWCRnfwQpCKhREcAvgqiPWkN8Zx1FeUIYTvM,650
|
|
150
|
+
aiecs/domain/knowledge_graph/schema/entity_type.py,sha256=6kVpMhHfhDDk1F_qzxsxM3W8__CA_idLVY89uoI8Eg0,4033
|
|
151
|
+
aiecs/domain/knowledge_graph/schema/graph_schema.py,sha256=UNbcsPlNKkvQd720Xyy2VvqQYFF1P33-naimstovIBI,8179
|
|
152
|
+
aiecs/domain/knowledge_graph/schema/property_schema.py,sha256=Mf43LX9yHCvur3Y32WOPU76WdkPIrz0iPlNXGaWc-QU,5006
|
|
153
|
+
aiecs/domain/knowledge_graph/schema/relation_type.py,sha256=4OaBeN2LuUno76FNbXTSqWqaN4v9x2Cn0MbVWiy0PRQ,5411
|
|
154
|
+
aiecs/domain/knowledge_graph/schema/schema_manager.py,sha256=AJJovmqvkQtgOck39q_TcsHvepsC0H4x2-BlH3GNx9A,25345
|
|
155
|
+
aiecs/domain/knowledge_graph/schema/type_enums.py,sha256=e1MosrqfOzYGYZlOFzeqdupL4LPMDW4dPJ5gZtCT5w8,6473
|
|
156
|
+
aiecs/domain/task/__init__.py,sha256=WtU0MPg3xpkKa4RUTbSEkppUxGdvn-ai_3UCRvMjLR8,226
|
|
157
|
+
aiecs/domain/task/dsl_processor.py,sha256=jVaxgjaJq0VEHQStMaoUD3SlufXeV07vVTMEauj0Wn0,21786
|
|
158
|
+
aiecs/domain/task/model.py,sha256=ZomdRJcLXdvlSjaVndsd7Kf--gE7iUl8A4sXlrLh10c,1744
|
|
159
|
+
aiecs/domain/task/task_context.py,sha256=b_Sa2KrjjaqiBM2Z-qch7UIuhEDVbr0rC6Gufy2vv-4,10758
|
|
160
|
+
aiecs/infrastructure/__init__.py,sha256=QXMtqD85Wqm6eo_vY6gw378aRd48HTdfFeCb7HFyWSw,682
|
|
161
|
+
aiecs/infrastructure/graph_storage/__init__.py,sha256=kQghtKWXVV3iLXFvC5OGvSUBG5cCLDxVAzFHiP4e-p0,394
|
|
162
|
+
aiecs/infrastructure/graph_storage/base.py,sha256=eqCjOEYGIUKRjA3IzUt16_qUcabJSHzFOpKKqJdqALQ,30644
|
|
163
|
+
aiecs/infrastructure/graph_storage/batch_operations.py,sha256=XREavctkaS_xhe5wjMF1gkxau7LCKHwV6YMy9i-WzoM,15857
|
|
164
|
+
aiecs/infrastructure/graph_storage/cache.py,sha256=gEG4cae8GaDh9kVXVwpQYUk66GJGbmSWSaHMklzPCo4,13867
|
|
165
|
+
aiecs/infrastructure/graph_storage/distributed.py,sha256=LdzSUDpd5Tu5FXQM_VRQFtqAXY7BIytzZJWBF1TUI0M,6445
|
|
166
|
+
aiecs/infrastructure/graph_storage/error_handling.py,sha256=gNiSyVGdxNmnmU3LFGZvlDP7JZNbmYOXvrJHHJRCP5E,10942
|
|
167
|
+
aiecs/infrastructure/graph_storage/graceful_degradation.py,sha256=WVByhNdEPAitP0o6gUbXGDIx_xK9hNpcY1kN53tvyck,10400
|
|
168
|
+
aiecs/infrastructure/graph_storage/health_checks.py,sha256=mMnz_ft9INTR2SDaWQgkDcEDhpFIontCZsze3hEVx-s,12119
|
|
169
|
+
aiecs/infrastructure/graph_storage/in_memory.py,sha256=C9F-GBEtWEBk3n0Tj-hHIrnjAMMp9EtAljX9ZmV8rdA,43390
|
|
170
|
+
aiecs/infrastructure/graph_storage/index_optimization.py,sha256=kXCTZtn96Ku8I7ZQcp61Usp9GMdnHZVKxLSpE1lumfU,17375
|
|
171
|
+
aiecs/infrastructure/graph_storage/lazy_loading.py,sha256=g9EYiNaww0fIW7us18j-0oDlyfdPpRNCFmKMP3f4hdA,13021
|
|
172
|
+
aiecs/infrastructure/graph_storage/metrics.py,sha256=pyeXZjzc360O4bEySQ5uNIDxyZaV6eiUF7tktmaI8Yw,10531
|
|
173
|
+
aiecs/infrastructure/graph_storage/migration.py,sha256=XGYEfDbtHOW02xhebsJzmPQzrQlmE2ADBKJC-neSIf0,14838
|
|
174
|
+
aiecs/infrastructure/graph_storage/pagination.py,sha256=Jh2REDWkp2Pj22eZXn7PkktABAS_onKT6gazEKejVd8,14268
|
|
175
|
+
aiecs/infrastructure/graph_storage/performance_monitoring.py,sha256=mpYlcO11WkQu-YJtC_bh-g8tbOK-vaow8CoBUH9A-Yo,14582
|
|
176
|
+
aiecs/infrastructure/graph_storage/postgres.py,sha256=9X6KpdCGFSaO8quEoVWamL0dFAstREiHlZpz5P4-_uA,68328
|
|
177
|
+
aiecs/infrastructure/graph_storage/property_storage.py,sha256=XJp8fa82B155DBlRqCD0BeEOdw3pvQo39oeSIuWR_PY,11489
|
|
178
|
+
aiecs/infrastructure/graph_storage/protocols.py,sha256=EKw5B-Qm1FJRX2iGJ4t0PYb2lc_aAVIL-JWU9d3erB8,2258
|
|
179
|
+
aiecs/infrastructure/graph_storage/query_optimizer.py,sha256=1gC_MkfWqVXyH5UNlDoSvCxbfenqVFNEflQ0v5Cd9eo,21532
|
|
180
|
+
aiecs/infrastructure/graph_storage/schema_cache.py,sha256=Se4Fr_ybiATDmzgo02jBU9hYDDn33W09Y1JYv_RVS08,7722
|
|
181
|
+
aiecs/infrastructure/graph_storage/sqlite.py,sha256=HGqg-7OW4dRg3mUSqanYNhfCT8bSpriUjR7GraaKvJY,54380
|
|
182
|
+
aiecs/infrastructure/graph_storage/streaming.py,sha256=WKbs2DOPJthmDrnDGzBudMpMrLYaAZBUQHawibkcU0Q,15057
|
|
183
|
+
aiecs/infrastructure/graph_storage/tenant.py,sha256=4CxNwifrU3m7NX2AbdQLfnitkrkm5Q-3XoOAv8-YLw4,13953
|
|
184
|
+
aiecs/infrastructure/messaging/__init__.py,sha256=KOEywSnktNWEN4O8_GE4KSopjMNEyfYhfUaTOkMxLUE,299
|
|
185
|
+
aiecs/infrastructure/messaging/celery_task_manager.py,sha256=9Y1rOPR8l6Z_ZS7zJ077aK6PocGLvVcp47Ivrs0vC4U,14157
|
|
186
|
+
aiecs/infrastructure/messaging/websocket_manager.py,sha256=lResJ8VGT348DaWtu1DCJXBKaiyPFS1HGEz_PqMpP6c,11777
|
|
187
|
+
aiecs/infrastructure/monitoring/__init__.py,sha256=4POkgG9lARNZCCt1e-g5iXjEup8rcy4dhw4XDGXx7LQ,826
|
|
188
|
+
aiecs/infrastructure/monitoring/executor_metrics.py,sha256=YxMEa2uh7xtIXpnEpT5NH6PO1L7wwDyeseG8ACeH_Zg,6465
|
|
189
|
+
aiecs/infrastructure/monitoring/global_metrics_manager.py,sha256=YLq05Wrlt2_iYjmwFzTsP7cDs6yfDAdAjQ1XYekuXX8,6495
|
|
190
|
+
aiecs/infrastructure/monitoring/structured_logger.py,sha256=BiugCJPsvn-seBf-CnezUxGf_YXUN89EYdr8phMZ8rw,1586
|
|
191
|
+
aiecs/infrastructure/monitoring/tracing_manager.py,sha256=RybjkaRzKHN25-dGxL8KxhZ3jxymbn3_Ulg85VwMKXs,13605
|
|
192
|
+
aiecs/infrastructure/persistence/__init__.py,sha256=gks1uw1ylThy5i7e0lTO0IHBWCUSorr1t-rlLYG2nf8,613
|
|
193
|
+
aiecs/infrastructure/persistence/context_engine_client.py,sha256=-w5eYmohbAok95KlwDPN2A4fv2sg6bQkurbPWNi55LI,6010
|
|
194
|
+
aiecs/infrastructure/persistence/database_manager.py,sha256=Oe8Sl-itZBs7bGKcM_50lq639muXrR9xetrXaqfGJSw,13125
|
|
195
|
+
aiecs/infrastructure/persistence/file_storage.py,sha256=4cZ8AbPMdajfJHUL8ZnuVuLRm7gW74HNQl1fUyfJ90A,26838
|
|
196
|
+
aiecs/infrastructure/persistence/redis_client.py,sha256=oL2C2wmDJC5lFpTEfPle7a1-lvP-3TBxPTIyrskpTlk,7569
|
|
197
|
+
aiecs/llm/__init__.py,sha256=vLn52v1LQgz75iZy6CvTb_vq5rMYbpZFZMFPKxJV-1k,2183
|
|
198
|
+
aiecs/llm/client_factory.py,sha256=in7ZyKxHHdz1jqD8jA0TOeZoT9VRE0M8NC4j97JFTGA,20031
|
|
199
|
+
aiecs/llm/client_resolver.py,sha256=rRyHYajOk6YpsTRJJW6Y2FwWwpJLe0b77ncaJXX2fwU,5075
|
|
200
|
+
aiecs/llm/protocols.py,sha256=8Qj7ryOGQ07_j5Xd-UHsIU9wiBU1BxLE-tdzf_bj__4,4516
|
|
201
|
+
aiecs/llm/callbacks/__init__.py,sha256=u02K5Tvlu-87NXxYzXuxFHuhHAF4OPIje_IvPIF93Lw,191
|
|
202
|
+
aiecs/llm/callbacks/custom_callbacks.py,sha256=g87NK2Zpgvpd_-6PLRFG_fTgIYqGucWL_xEnuU3Kq0g,9904
|
|
203
|
+
aiecs/llm/clients/__init__.py,sha256=GaUkYc0mnKrsBceGrjDZ3K6LZUVxGxHqxjB9zSxWRq8,822
|
|
204
|
+
aiecs/llm/clients/base_client.py,sha256=8L3C9dK3-cHqVCLGISBZIA89j36HM_2G5mhpmvTskbY,11144
|
|
205
|
+
aiecs/llm/clients/google_function_calling_mixin.py,sha256=od9-kgnhKtqJc_b-M0Xi2VGAlu8QwGR5MyXt0XpoxdM,16636
|
|
206
|
+
aiecs/llm/clients/googleai_client.py,sha256=c5tPbKQS8JVE687CYP_izStf4x0upgyyBT6eNmXOqcQ,12039
|
|
207
|
+
aiecs/llm/clients/openai_client.py,sha256=sgrYM7KGfCKNOe-wtz3fwVhG27VqYCvnz2hQggt12oM,5582
|
|
208
|
+
aiecs/llm/clients/openai_compatible_mixin.py,sha256=uJfycFcDF8Zlv5x2xAVVB0n6mUND4IcJ1pEInaxHB1s,14463
|
|
209
|
+
aiecs/llm/clients/vertex_client.py,sha256=z-3bfsS9yyZwKyyC5159PmzWMlYMscSHx7nKD8Pq1Bk,54527
|
|
210
|
+
aiecs/llm/clients/xai_client.py,sha256=mJW8hV12FcJtI8nhU34NV-by5o4Xhzv-Ua3Go8ET1kQ,7172
|
|
211
|
+
aiecs/llm/config/__init__.py,sha256=LCPZXrV4-zUMh6IS32WaUBMT43pSF8dqbhqH3xBcwJU,1107
|
|
212
|
+
aiecs/llm/config/config_loader.py,sha256=Jhd6y4FyMQO73Mwv45Qq--pmPh8XRAzbVxi1xqAgWF8,8653
|
|
213
|
+
aiecs/llm/config/config_validator.py,sha256=6pXxn7O8wSdoWf3zJdmCbufqR-ojWlDKaYrkly55D9Y,7235
|
|
214
|
+
aiecs/llm/config/model_config.py,sha256=ZlUmjlhS_U_BdRe3Y3Zk5M1029ctXHBSwdYqF07H_z8,5687
|
|
215
|
+
aiecs/llm/utils/__init__.py,sha256=zKlDyNjvJsv5URW0B1g4C9cimuB7jmKkcfxkLsTAOVY,239
|
|
216
|
+
aiecs/llm/utils/validate_config.py,sha256=lfi30kPSWoFqDfZvbZTjQfBWMvupBpDh_CzHfDKU3Sw,2959
|
|
217
|
+
aiecs/scripts/__init__.py,sha256=cVxQ5iqym520eDQSpV7B6hWolndCLMOVdvhC_D280PE,66
|
|
218
|
+
aiecs/scripts/aid/VERSION_MANAGEMENT.md,sha256=e0ZL0-ou9R6TW1U4QXNDNfiXVjK6m6SDub9KuJzu98Y,3162
|
|
219
|
+
aiecs/scripts/aid/__init__.py,sha256=s-x7DWZ4xKVMXY47Y_Sb4867Sf92JKQAaRRMKQlPoqM,349
|
|
220
|
+
aiecs/scripts/aid/module_checker.py,sha256=2A2CTOyrcUuv6QYAjLFqwwKn7LM6tw5cdOUi9PaGIQ8,19955
|
|
221
|
+
aiecs/scripts/aid/version_manager.py,sha256=kt39O5Me1F_lBp2Bhmv2390lN4Kj5LJjGGdPGZC1AY8,8774
|
|
222
|
+
aiecs/scripts/dependance_check/DEPENDENCY_SYSTEM_SUMMARY.md,sha256=u2OLwmXaRGuTwEfj3jQ_yzAO_Z49P1CBC1pV3iULuoE,5866
|
|
223
|
+
aiecs/scripts/dependance_check/README_DEPENDENCY_CHECKER.md,sha256=7sAyeiMN7I-RsTOudo_JO2CTbC5ObEV0z_YyGtjiMcI,6003
|
|
224
|
+
aiecs/scripts/dependance_check/__init__.py,sha256=KVP-Qy4P8ekpldTxaz4hZukHmqRsxWyDOEzmypO3QoM,402
|
|
225
|
+
aiecs/scripts/dependance_check/dependency_checker.py,sha256=3EC_hOsV6Tmch7p464FVf_cg_kmLhiD8VDiFVhh8aPo,72593
|
|
226
|
+
aiecs/scripts/dependance_check/dependency_fixer.py,sha256=3gPGoYqtUSEykL8jL97JV6Kot_LuKtH6IOhfCmn1E0E,17930
|
|
227
|
+
aiecs/scripts/dependance_check/download_nlp_data.py,sha256=Xsw2yZljln7hP8-GvN3xwLjjSvlsuhNM_maEm-goG_E,16220
|
|
228
|
+
aiecs/scripts/dependance_check/setup_nlp_data.sh,sha256=CqO-bLVc_mLhNpsSoXZjvJKhtLUbA_gYBqfp3nzUuRI,5843
|
|
229
|
+
aiecs/scripts/dependance_patch/__init__.py,sha256=XT5f9CTvwIk-MK1jNj2Ti1cugsRhrO_Cs3ayOfscfVg,88
|
|
230
|
+
aiecs/scripts/dependance_patch/fix_weasel/README_WEASEL_PATCH.md,sha256=h0e3Xy6FArLgjika3pRZRhZRbyuj6iLzTU-AhHkWE7M,3581
|
|
231
|
+
aiecs/scripts/dependance_patch/fix_weasel/__init__.py,sha256=JUkQI7uPj88_FopzcxBllEZ1UyQtunc9rXw7OYeKNXU,188
|
|
232
|
+
aiecs/scripts/dependance_patch/fix_weasel/fix_weasel_validator.py,sha256=CGYF3WwFHA_U1TCzmeRj4c-j774lIvCjZmT_xzXxGWs,4104
|
|
233
|
+
aiecs/scripts/dependance_patch/fix_weasel/fix_weasel_validator.sh,sha256=XqV3Yx1wi23dWXDbofFK6_SU0BVLr9E1HaIudIuem7Q,2736
|
|
234
|
+
aiecs/scripts/dependance_patch/fix_weasel/patch_weasel_library.sh,sha256=6OcbuJWLv8DDeKPgVrV4wG9UIm5ppN-y-OQPSBD9pSg,5491
|
|
235
|
+
aiecs/scripts/dependance_patch/fix_weasel/run_weasel_patch.sh,sha256=bwyFyeaITwDmG2_3HsTd7PHeexahh6MhEZwUuAC_85c,1233
|
|
236
|
+
aiecs/scripts/knowledge_graph/__init__.py,sha256=aHUCEXmO3-TQf40cpgRSZFNS418d4dY8WEGL8_-QT1s,32
|
|
237
|
+
aiecs/scripts/knowledge_graph/run_threshold_experiments.py,sha256=SWAQbwK3e-IVwlecAWONuBIOjckMo31PBUWB-e3WYMM,7147
|
|
238
|
+
aiecs/scripts/migrations/multi_tenancy/README.md,sha256=15rK-JNqtjirukYs0IzYNdkPqAF8X13rsI5_sBTieZQ,4085
|
|
239
|
+
aiecs/scripts/tools_develop/README.md,sha256=UQWONopZhZqgciY8M8AphuavKFjRw6GJOU1UfHrVCac,19418
|
|
240
|
+
aiecs/scripts/tools_develop/README_CONFIG_CHECKER.md,sha256=C4UviSSrODHpvhxptIGQr0tsjDsHgZVBbwD8FKHYRJw,6738
|
|
241
|
+
aiecs/scripts/tools_develop/TOOLS_CONFIG_GUIDE.md,sha256=8VdW8h7pf7NPhSOD6pfZI3Ogk-GbqP98o9URjEdR5Gw,42832
|
|
242
|
+
aiecs/scripts/tools_develop/TOOL_AUTO_DISCOVERY.md,sha256=M-xRPeOy_8Jz8c6CTCvgyYmzUktx6MwVUpLsXAVpU2M,6679
|
|
243
|
+
aiecs/scripts/tools_develop/__init__.py,sha256=WYhP2jcKvgd0pet3rd3uyLPgSmTbUAeVgdI9DN7esxc,414
|
|
244
|
+
aiecs/scripts/tools_develop/check_all_tools_config.py,sha256=RL7M2nekjG2sg29H7o185hJIKgghiLFxUHu32NFNUyE,20642
|
|
245
|
+
aiecs/scripts/tools_develop/check_type_annotations.py,sha256=5y7ZbgQ8ooz68G_eQ5vWyOh8xCLe4rExYpgJlBwIf1g,7829
|
|
246
|
+
aiecs/scripts/tools_develop/pre-commit-schema-coverage.sh,sha256=xP_zSwnCo9AHzfBKBovpmeI2E1mrMRhL-4aofQnjIk8,2258
|
|
247
|
+
aiecs/scripts/tools_develop/schema_coverage.py,sha256=M1oVZZyM1rwPJ3_cxOhYa8a1LNBKHLhY644eCvEoyeA,16627
|
|
248
|
+
aiecs/scripts/tools_develop/validate_tool_schemas.py,sha256=JUJ8_B1GmFGXG48MX5FBHNUN5Vn1aOIoAnhmrvcnOB4,17291
|
|
249
|
+
aiecs/scripts/tools_develop/verify_executor_config_fix.py,sha256=bcWoCOuC6HXhOysEeLVZcONNdOSaJ5tC23P0R9AfoH8,2786
|
|
250
|
+
aiecs/scripts/tools_develop/verify_tools.py,sha256=iJ7z8-JpUZm9OF1Idcx1CgIe37b2UPKXlNqqcPksXfc,11891
|
|
251
|
+
aiecs/tasks/__init__.py,sha256=8wuRzVR6UXR0SwTJqQrZ71nxKYIRrOpWDgaxNvbuj3w,60
|
|
252
|
+
aiecs/tasks/worker.py,sha256=R1DDfUWbfDAuE9wakMh6NPn7AOvR9glnmWKJYL3QYxo,5053
|
|
253
|
+
aiecs/tools/__init__.py,sha256=ZIq6Y4SEMyCgTIZJUOH56FmTVXfoCs7RB9pFcq7Tl1g,11726
|
|
254
|
+
aiecs/tools/base_tool.py,sha256=7lDtrUtUBPTuyz7e7QPiTwPG_mGqnCuRE3kZKoDrhFY,23961
|
|
255
|
+
aiecs/tools/langchain_adapter.py,sha256=jczHCJWtyVxjtaJgHFXXAiCWCwE-bYmBzuKi0Dl2hGs,19950
|
|
256
|
+
aiecs/tools/schema_generator.py,sha256=d3AMgV9ARo0FbTLGL9IL1pY0oHglOL8Zl16hvPlf3Kw,17084
|
|
257
|
+
aiecs/tools/temp_file_manager.py,sha256=4FirrMpjkPqw3GGkJ2VhY8MZqgDEgphzGOGQaZShuDM,4498
|
|
258
|
+
aiecs/tools/apisource/__init__.py,sha256=lrePj5IA7rbp-P_1S4pU3jJ2ScK9kJU5lO7875FLeF4,2343
|
|
259
|
+
aiecs/tools/apisource/tool.py,sha256=gi9KYEHqdGNfAEW4xtpXpLUeVW9hfT9P_HRO9o9FpcM,33604
|
|
260
|
+
aiecs/tools/apisource/intelligence/__init__.py,sha256=swfdMQw2Cjfjyw0NkNA3xC4W4u1jniqqc88JgJ8D6u0,476
|
|
261
|
+
aiecs/tools/apisource/intelligence/data_fusion.py,sha256=QXkl1tD2n_urft7hTpglzM2EC6TqaScIouQfsMRQ62Q,22919
|
|
262
|
+
aiecs/tools/apisource/intelligence/query_analyzer.py,sha256=vwGphHGBCmymblktRYt7rn3TMcuNKej5kYGmHXLlj-w,15018
|
|
263
|
+
aiecs/tools/apisource/intelligence/search_enhancer.py,sha256=V_GYKMn1LlTki5mj6hEWVODHIjRr_Suw7--t2W56VI4,12608
|
|
264
|
+
aiecs/tools/apisource/monitoring/__init__.py,sha256=d9Je6T6LcVWHkPhZWAciUQiejqswh_wY8mfIPraLxGM,179
|
|
265
|
+
aiecs/tools/apisource/monitoring/metrics.py,sha256=V0b8Vk0txEbIgsXipyRxGO04BGO6E3fcXmnTfCwlNUU,12516
|
|
266
|
+
aiecs/tools/apisource/providers/__init__.py,sha256=D2sEJUSB6ilkbGdVuBDi8MQ-KIJeL8hTHO9UShf3jFs,3088
|
|
267
|
+
aiecs/tools/apisource/providers/base.py,sha256=ErqHTQOvTRN0MYQ69yOjs4CmStVzW0ONpJls80zfneg,24603
|
|
268
|
+
aiecs/tools/apisource/providers/census.py,sha256=olxVETFrKtMOEjVkpLN8Bg_rp8U8gMoClWnrLTu-1MA,13257
|
|
269
|
+
aiecs/tools/apisource/providers/fred.py,sha256=ndIdFf3pnjFACHciwmI_TxRZgjQ0Srby8wQl-o0sW1M,20198
|
|
270
|
+
aiecs/tools/apisource/providers/newsapi.py,sha256=f_ytDRYYHoeEG8fBlXfSEjL4Sq45N3DpyYTlGOSyJWc,14684
|
|
271
|
+
aiecs/tools/apisource/providers/worldbank.py,sha256=ELC04_gTJwc2bSeUrNdXm4Q87EteixLsfD288syYVcM,12236
|
|
272
|
+
aiecs/tools/apisource/reliability/__init__.py,sha256=8yao1GmrOCncGAUSmOKnE-aSSJq-9FuWJGk4TgdAkyM,308
|
|
273
|
+
aiecs/tools/apisource/reliability/error_handler.py,sha256=kmakA4C9RO56vn2ePjafsuV1xALCxTSGtmTrZW487F0,12921
|
|
274
|
+
aiecs/tools/apisource/reliability/fallback_strategy.py,sha256=Bu0avE5FyFKwj00C4ltGb6nWOI7GM9Qbn1OlbGXjq8g,13441
|
|
275
|
+
aiecs/tools/apisource/utils/__init__.py,sha256=nKRTXi0Tq28pNZ4z3pp9JKVWwD22G8A5-Xtrmmrs5qo,167
|
|
276
|
+
aiecs/tools/apisource/utils/validators.py,sha256=XZBkMdt6e0YuKnfGHdlvnyeEvDApr6Tw3N1oFBRXUg0,10556
|
|
277
|
+
aiecs/tools/docs/__init__.py,sha256=PBSBqnPPCbPfKF4CFc49uTcdxf36i0aBp7gNeD2166w,3741
|
|
278
|
+
aiecs/tools/docs/ai_document_orchestrator.py,sha256=i_wCs_OzzwSvZKdkP_JRkXiUGWO1levkqbRIKSGynLI,24966
|
|
279
|
+
aiecs/tools/docs/ai_document_writer_orchestrator.py,sha256=tss4kbYW378rqIET_F3XqDpl2iIZHoiP0WqW_nRx_HQ,95313
|
|
280
|
+
aiecs/tools/docs/content_insertion_tool.py,sha256=3ojzrByhFY4PhWImHWfXQ5eG5S3Z6nHMU7YgwQc9piE,48968
|
|
281
|
+
aiecs/tools/docs/document_creator_tool.py,sha256=RYsHNZopWx1KE24O-_tCjSHgUiDheS14G0_1WcDUsT0,46857
|
|
282
|
+
aiecs/tools/docs/document_layout_tool.py,sha256=FSi1REQlGyqhIkZcHpr2dwaIXuR_iZVsJk_nFwEJGDw,44761
|
|
283
|
+
aiecs/tools/docs/document_parser_tool.py,sha256=vJQzR-SE7TrWwy2YwbUEkk5lJAx9ej6Zs95qTGscix8,40688
|
|
284
|
+
aiecs/tools/docs/document_writer_tool.py,sha256=CYYBiSBRX2_fsoe1LXGPKpjWQ92Sj9o88BSSt7koRgI,78079
|
|
285
|
+
aiecs/tools/knowledge_graph/__init__.py,sha256=-UEMSWpQ6IJFPU6RkKQ4TIckf2iSbPTAVdjy2X_sWOk,430
|
|
286
|
+
aiecs/tools/knowledge_graph/graph_reasoning_tool.py,sha256=ntuF7JlCXum_Ajaa977rWR9OfXh5WgwxYIRVfZg9arg,32650
|
|
287
|
+
aiecs/tools/knowledge_graph/graph_search_tool.py,sha256=Td7LTKsobvXnSugw6o62BNsqghQuZ8OSSkKTfLLy9H0,34365
|
|
288
|
+
aiecs/tools/knowledge_graph/kg_builder_tool.py,sha256=NdBCmbr69lI70Gu0sDyA-W8TR8xnd6A2AOm7xaa7dkw,18166
|
|
289
|
+
aiecs/tools/search_tool/__init__.py,sha256=DlthXA8UhCbAgtAEgig-I3UqGZpx3CK65NSwubf4ICA,2638
|
|
290
|
+
aiecs/tools/search_tool/analyzers.py,sha256=JCdnimJNAneFw_k9_yHNygTW0Ch8x6euZ4lM7yvD36w,20895
|
|
291
|
+
aiecs/tools/search_tool/cache.py,sha256=w5GKVQOj4REoH_9upQOOgoA1ZwEaXX4Dte58GAI9otY,8361
|
|
292
|
+
aiecs/tools/search_tool/constants.py,sha256=SaJPROgKzbSGgLBbPYbkXa0Q-sy2cMADR6Bjf_Kw7Lc,2523
|
|
293
|
+
aiecs/tools/search_tool/context.py,sha256=HtEPYWomZktGNrGmEu0uuTX9Z7-W00jnSGKyOEIwUBA,7374
|
|
294
|
+
aiecs/tools/search_tool/core.py,sha256=jsAM3HsEiZLWvEsAkuRpQek_L65swynH9qygZRqyaeM,31808
|
|
295
|
+
aiecs/tools/search_tool/deduplicator.py,sha256=W79X1oNfaXn71Zk1SRIaFJMpPQGZ5ECHIWyG61l9KaY,3551
|
|
296
|
+
aiecs/tools/search_tool/error_handler.py,sha256=041LAfG3rBtqmQ2VagzUbkJpsWWosVtBQbB9-gcbm_Q,9802
|
|
297
|
+
aiecs/tools/search_tool/metrics.py,sha256=IFVguV0ph6p2NImSZUJWzQaIHyRQA2yk1Qo7zi5ajOk,12356
|
|
298
|
+
aiecs/tools/search_tool/rate_limiter.py,sha256=zdeQL2guaeETlIQjDc0vMixxWXZpeQeWRTiPeujAf3s,5458
|
|
299
|
+
aiecs/tools/search_tool/schemas.py,sha256=B-LZn2Bolm6l9yDkgrALNcuLE4Q8A0aTUYzfxUbKZOE,8327
|
|
300
|
+
aiecs/tools/statistics/__init__.py,sha256=yWc2gCq75v5UXTvZ2DxK3kgJz9hOHyRZF2F-shFydqQ,2691
|
|
301
|
+
aiecs/tools/statistics/ai_data_analysis_orchestrator.py,sha256=kmTwTUoB40iHcnmYN_pSU_27cmSHZ5JNUQ9g6WUK_yY,23907
|
|
302
|
+
aiecs/tools/statistics/ai_insight_generator_tool.py,sha256=Qc77yUBEkG7xCgaUCUeNhjZ0yBF6iJxzRbE7zqquYXg,20210
|
|
303
|
+
aiecs/tools/statistics/ai_report_orchestrator_tool.py,sha256=14woxw-mh2bf13YzbOVyVgl9MVP-Mkr1BTna1dkVoD4,25534
|
|
304
|
+
aiecs/tools/statistics/data_loader_tool.py,sha256=1z01WYZCtVfcFP78mzog2Nt9p3dZ5Vb5Nl-eFL7Rx4A,20664
|
|
305
|
+
aiecs/tools/statistics/data_profiler_tool.py,sha256=LVJucm89q0Fhs2H9OCeqJlvRJ7B9Hd3469gRcvRqy24,24910
|
|
306
|
+
aiecs/tools/statistics/data_transformer_tool.py,sha256=8fRRdN9T1kiXUrI031fXW8cMmABnrlg_B_UL_rrKky8,22087
|
|
307
|
+
aiecs/tools/statistics/data_visualizer_tool.py,sha256=meN9ONrR1-f1cUGpaFMrmnyEGv5pz_7ah93Ob70G7EY,18409
|
|
308
|
+
aiecs/tools/statistics/model_trainer_tool.py,sha256=0-j2ZSUBwp-rWjbHnjrzYy7XJgyN7xQ7vsRVOUMOTQU,18891
|
|
309
|
+
aiecs/tools/statistics/statistical_analyzer_tool.py,sha256=c62Y2RURvy6nSttS9Nvyb4pRw3HKzGRowm2LIAOJ4gk,17766
|
|
310
|
+
aiecs/tools/task_tools/__init__.py,sha256=q9sqlTm7Acxbr8YQ5fVCREEi-8GxdENh6zAv-lKjLY8,2826
|
|
311
|
+
aiecs/tools/task_tools/chart_tool.py,sha256=FGbE6slb5nFSkdGqfJNsNsnHMSE2codo0hYfrhfX3u4,27153
|
|
312
|
+
aiecs/tools/task_tools/classfire_tool.py,sha256=FLkUUTFPlgzliVsfpS4zR1frppnIWNQj4u6hyqazdkA,32457
|
|
313
|
+
aiecs/tools/task_tools/image_tool.py,sha256=UYfONlOuWkhtlaxYhTpOZV8GZ65crxw3v7aql_jiN8s,18610
|
|
314
|
+
aiecs/tools/task_tools/office_tool.py,sha256=0Nw5ppP9sXnnk65yVt9BQYy3Nil8Td33N6ue2qcUJoU,26264
|
|
315
|
+
aiecs/tools/task_tools/pandas_tool.py,sha256=5MHoVz24p178xBZPhIo_dsiej4645jmZvEiy_i0e1mo,41832
|
|
316
|
+
aiecs/tools/task_tools/report_tool.py,sha256=8vIoFLfQvmOjUhFoht2tyZ5Wq7DqsPfXvx0lzORnxs0,34934
|
|
317
|
+
aiecs/tools/task_tools/research_tool.py,sha256=comD38XNHMwrQyGYuP5KWVeobF4inN2o3JCPsox6ixE,19198
|
|
318
|
+
aiecs/tools/task_tools/scraper_tool.py,sha256=Z_yY7b3bNYe_BEUPVy9d9DlagdhMv9bleC762bFK2L8,29538
|
|
319
|
+
aiecs/tools/task_tools/stats_tool.py,sha256=f_PrPgOOiJXpW-aA9_hXhyhpW7D2-QkPjnYF0Duh7tg,33563
|
|
320
|
+
aiecs/tools/tool_executor/__init__.py,sha256=sR2ss7Ep7OKSu0d0566rd14DDkH3tkYmbMLxpEs6kO8,783
|
|
321
|
+
aiecs/tools/tool_executor/tool_executor.py,sha256=WrQMwiiVi-GM8o41zIcT8hUZzvcOXdAhOenBPe998sw,30387
|
|
322
|
+
aiecs/utils/LLM_output_structor.py,sha256=sFQ6c2FFhEjzu3FWQTD833skS_I63YkPDnb0ixL7FBw,16232
|
|
323
|
+
aiecs/utils/__init__.py,sha256=k5aS7sGknT_MqZit3h9QupktoXcwD38I6IkqhkIF9Qc,838
|
|
324
|
+
aiecs/utils/base_callback.py,sha256=fjA6V6Wx_5hHhWKGf80U1bkSxjYg_ZqvLrCFJQGEsx8,1622
|
|
325
|
+
aiecs/utils/cache_provider.py,sha256=Bk082M9VksVGJd8-_ZN_uR0i7uXDUclbb7LV1LxpUEg,21657
|
|
326
|
+
aiecs/utils/execution_utils.py,sha256=PhAo_lxuDmUXLnvGFbzguzESzOCRY5g2bhGso1TN63U,5948
|
|
327
|
+
aiecs/utils/logging.py,sha256=kvZ9OjFChfLN_2MEGvIDBK3trPAhikkh87rK49vN3bU,29
|
|
328
|
+
aiecs/utils/prompt_loader.py,sha256=iNBNeUSnvbSE1SrllOlBllDdQXtfzq5dO5rjkcFEsSw,424
|
|
329
|
+
aiecs/utils/token_usage_repository.py,sha256=gFTu-AHawFmScq35T3ib5pTElZrXezu3ijxRRCxW6vc,10497
|
|
330
|
+
aiecs/ws/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
331
|
+
aiecs/ws/socket_server.py,sha256=4jJBx93DEOKs2JO-gZAH9R_MfMTVtLLTLtyYnRyCVew,1591
|
|
332
|
+
aiecs-1.7.17.dist-info/licenses/LICENSE,sha256=_1YRaIS0eZu1pv6xfz245UkU0i1Va2B841hv3OWRwqg,12494
|
|
333
|
+
aiecs-1.7.17.dist-info/METADATA,sha256=EJfH7jPBLmDasjx0k48dHRWQmtb6iNhwxlPSbFntMXQ,18101
|
|
334
|
+
aiecs-1.7.17.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
335
|
+
aiecs-1.7.17.dist-info/entry_points.txt,sha256=t_mIkFuLDmK-2si0thMfgK0WIBg-Ub94V3MchpWMaAs,899
|
|
336
|
+
aiecs-1.7.17.dist-info/top_level.txt,sha256=22IlUlOqh9Ni3jXlQNMNUqzbW8dcxXPeR_EQ-BJVcV8,6
|
|
337
|
+
aiecs-1.7.17.dist-info/RECORD,,
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
[console_scripts]
|
|
2
|
+
aiecs = aiecs.__main__:main
|
|
3
|
+
aiecs-check-deps = aiecs.scripts.dependance_check.dependency_checker:main
|
|
4
|
+
aiecs-check-modules = aiecs.scripts.aid.module_checker:main
|
|
5
|
+
aiecs-download-nlp-data = aiecs.scripts.dependance_check.download_nlp_data:main
|
|
6
|
+
aiecs-fix-deps = aiecs.scripts.dependance_check.dependency_fixer:main
|
|
7
|
+
aiecs-patch-weasel = aiecs.scripts.dependance_patch.fix_weasel.fix_weasel_validator:main
|
|
8
|
+
aiecs-tools-check-annotations = aiecs.scripts.tools_develop.check_type_annotations:main
|
|
9
|
+
aiecs-tools-check-config = aiecs.scripts.tools_develop.check_all_tools_config:main
|
|
10
|
+
aiecs-tools-schema-coverage = aiecs.scripts.tools_develop.schema_coverage:main
|
|
11
|
+
aiecs-tools-test-config = aiecs.scripts.tools_develop.test_all_tools_config_runtime:main
|
|
12
|
+
aiecs-tools-validate-schemas = aiecs.scripts.tools_develop.validate_tool_schemas:main
|
|
13
|
+
aiecs-version = aiecs.scripts.aid.version_manager:main
|
aiecs/config/registry.py
DELETED
|
@@ -1,19 +0,0 @@
|
|
|
1
|
-
AI_SERVICE_REGISTRY = {}
|
|
2
|
-
|
|
3
|
-
def register_ai_service(mode: str, service: str):
|
|
4
|
-
"""
|
|
5
|
-
Decorator for registering a class to the service center, so it can be found and called by (mode, service).
|
|
6
|
-
"""
|
|
7
|
-
def decorator(cls):
|
|
8
|
-
AI_SERVICE_REGISTRY[(mode, service)] = cls
|
|
9
|
-
return cls
|
|
10
|
-
return decorator
|
|
11
|
-
|
|
12
|
-
def get_ai_service(mode: str, service: str):
|
|
13
|
-
"""
|
|
14
|
-
Find registered service class based on mode and service name.
|
|
15
|
-
"""
|
|
16
|
-
key = (mode, service)
|
|
17
|
-
if key not in AI_SERVICE_REGISTRY:
|
|
18
|
-
raise ValueError(f"No registered service for mode '{mode}', service '{service}'")
|
|
19
|
-
return AI_SERVICE_REGISTRY[key]
|