aiecs 1.5.1__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.
Files changed (302) hide show
  1. aiecs/__init__.py +72 -0
  2. aiecs/__main__.py +41 -0
  3. aiecs/aiecs_client.py +469 -0
  4. aiecs/application/__init__.py +10 -0
  5. aiecs/application/executors/__init__.py +10 -0
  6. aiecs/application/executors/operation_executor.py +363 -0
  7. aiecs/application/knowledge_graph/__init__.py +7 -0
  8. aiecs/application/knowledge_graph/builder/__init__.py +37 -0
  9. aiecs/application/knowledge_graph/builder/document_builder.py +375 -0
  10. aiecs/application/knowledge_graph/builder/graph_builder.py +356 -0
  11. aiecs/application/knowledge_graph/builder/schema_mapping.py +531 -0
  12. aiecs/application/knowledge_graph/builder/structured_pipeline.py +443 -0
  13. aiecs/application/knowledge_graph/builder/text_chunker.py +319 -0
  14. aiecs/application/knowledge_graph/extractors/__init__.py +27 -0
  15. aiecs/application/knowledge_graph/extractors/base.py +100 -0
  16. aiecs/application/knowledge_graph/extractors/llm_entity_extractor.py +327 -0
  17. aiecs/application/knowledge_graph/extractors/llm_relation_extractor.py +349 -0
  18. aiecs/application/knowledge_graph/extractors/ner_entity_extractor.py +244 -0
  19. aiecs/application/knowledge_graph/fusion/__init__.py +23 -0
  20. aiecs/application/knowledge_graph/fusion/entity_deduplicator.py +387 -0
  21. aiecs/application/knowledge_graph/fusion/entity_linker.py +343 -0
  22. aiecs/application/knowledge_graph/fusion/knowledge_fusion.py +580 -0
  23. aiecs/application/knowledge_graph/fusion/relation_deduplicator.py +189 -0
  24. aiecs/application/knowledge_graph/pattern_matching/__init__.py +21 -0
  25. aiecs/application/knowledge_graph/pattern_matching/pattern_matcher.py +344 -0
  26. aiecs/application/knowledge_graph/pattern_matching/query_executor.py +378 -0
  27. aiecs/application/knowledge_graph/profiling/__init__.py +12 -0
  28. aiecs/application/knowledge_graph/profiling/query_plan_visualizer.py +199 -0
  29. aiecs/application/knowledge_graph/profiling/query_profiler.py +223 -0
  30. aiecs/application/knowledge_graph/reasoning/__init__.py +27 -0
  31. aiecs/application/knowledge_graph/reasoning/evidence_synthesis.py +347 -0
  32. aiecs/application/knowledge_graph/reasoning/inference_engine.py +504 -0
  33. aiecs/application/knowledge_graph/reasoning/logic_form_parser.py +167 -0
  34. aiecs/application/knowledge_graph/reasoning/logic_parser/__init__.py +79 -0
  35. aiecs/application/knowledge_graph/reasoning/logic_parser/ast_builder.py +513 -0
  36. aiecs/application/knowledge_graph/reasoning/logic_parser/ast_nodes.py +630 -0
  37. aiecs/application/knowledge_graph/reasoning/logic_parser/ast_validator.py +654 -0
  38. aiecs/application/knowledge_graph/reasoning/logic_parser/error_handler.py +477 -0
  39. aiecs/application/knowledge_graph/reasoning/logic_parser/parser.py +390 -0
  40. aiecs/application/knowledge_graph/reasoning/logic_parser/query_context.py +217 -0
  41. aiecs/application/knowledge_graph/reasoning/logic_query_integration.py +169 -0
  42. aiecs/application/knowledge_graph/reasoning/query_planner.py +872 -0
  43. aiecs/application/knowledge_graph/reasoning/reasoning_engine.py +554 -0
  44. aiecs/application/knowledge_graph/retrieval/__init__.py +19 -0
  45. aiecs/application/knowledge_graph/retrieval/retrieval_strategies.py +596 -0
  46. aiecs/application/knowledge_graph/search/__init__.py +59 -0
  47. aiecs/application/knowledge_graph/search/hybrid_search.py +423 -0
  48. aiecs/application/knowledge_graph/search/reranker.py +295 -0
  49. aiecs/application/knowledge_graph/search/reranker_strategies.py +553 -0
  50. aiecs/application/knowledge_graph/search/text_similarity.py +398 -0
  51. aiecs/application/knowledge_graph/traversal/__init__.py +15 -0
  52. aiecs/application/knowledge_graph/traversal/enhanced_traversal.py +329 -0
  53. aiecs/application/knowledge_graph/traversal/path_scorer.py +269 -0
  54. aiecs/application/knowledge_graph/validators/__init__.py +13 -0
  55. aiecs/application/knowledge_graph/validators/relation_validator.py +189 -0
  56. aiecs/application/knowledge_graph/visualization/__init__.py +11 -0
  57. aiecs/application/knowledge_graph/visualization/graph_visualizer.py +321 -0
  58. aiecs/common/__init__.py +9 -0
  59. aiecs/common/knowledge_graph/__init__.py +17 -0
  60. aiecs/common/knowledge_graph/runnable.py +484 -0
  61. aiecs/config/__init__.py +16 -0
  62. aiecs/config/config.py +498 -0
  63. aiecs/config/graph_config.py +137 -0
  64. aiecs/config/registry.py +23 -0
  65. aiecs/core/__init__.py +46 -0
  66. aiecs/core/interface/__init__.py +34 -0
  67. aiecs/core/interface/execution_interface.py +152 -0
  68. aiecs/core/interface/storage_interface.py +171 -0
  69. aiecs/domain/__init__.py +289 -0
  70. aiecs/domain/agent/__init__.py +189 -0
  71. aiecs/domain/agent/base_agent.py +697 -0
  72. aiecs/domain/agent/exceptions.py +103 -0
  73. aiecs/domain/agent/graph_aware_mixin.py +559 -0
  74. aiecs/domain/agent/hybrid_agent.py +490 -0
  75. aiecs/domain/agent/integration/__init__.py +26 -0
  76. aiecs/domain/agent/integration/context_compressor.py +222 -0
  77. aiecs/domain/agent/integration/context_engine_adapter.py +252 -0
  78. aiecs/domain/agent/integration/retry_policy.py +219 -0
  79. aiecs/domain/agent/integration/role_config.py +213 -0
  80. aiecs/domain/agent/knowledge_aware_agent.py +646 -0
  81. aiecs/domain/agent/lifecycle.py +296 -0
  82. aiecs/domain/agent/llm_agent.py +300 -0
  83. aiecs/domain/agent/memory/__init__.py +12 -0
  84. aiecs/domain/agent/memory/conversation.py +197 -0
  85. aiecs/domain/agent/migration/__init__.py +14 -0
  86. aiecs/domain/agent/migration/conversion.py +160 -0
  87. aiecs/domain/agent/migration/legacy_wrapper.py +90 -0
  88. aiecs/domain/agent/models.py +317 -0
  89. aiecs/domain/agent/observability.py +407 -0
  90. aiecs/domain/agent/persistence.py +289 -0
  91. aiecs/domain/agent/prompts/__init__.py +29 -0
  92. aiecs/domain/agent/prompts/builder.py +161 -0
  93. aiecs/domain/agent/prompts/formatters.py +189 -0
  94. aiecs/domain/agent/prompts/template.py +255 -0
  95. aiecs/domain/agent/registry.py +260 -0
  96. aiecs/domain/agent/tool_agent.py +257 -0
  97. aiecs/domain/agent/tools/__init__.py +12 -0
  98. aiecs/domain/agent/tools/schema_generator.py +221 -0
  99. aiecs/domain/community/__init__.py +155 -0
  100. aiecs/domain/community/agent_adapter.py +477 -0
  101. aiecs/domain/community/analytics.py +481 -0
  102. aiecs/domain/community/collaborative_workflow.py +642 -0
  103. aiecs/domain/community/communication_hub.py +645 -0
  104. aiecs/domain/community/community_builder.py +320 -0
  105. aiecs/domain/community/community_integration.py +800 -0
  106. aiecs/domain/community/community_manager.py +813 -0
  107. aiecs/domain/community/decision_engine.py +879 -0
  108. aiecs/domain/community/exceptions.py +225 -0
  109. aiecs/domain/community/models/__init__.py +33 -0
  110. aiecs/domain/community/models/community_models.py +268 -0
  111. aiecs/domain/community/resource_manager.py +457 -0
  112. aiecs/domain/community/shared_context_manager.py +603 -0
  113. aiecs/domain/context/__init__.py +58 -0
  114. aiecs/domain/context/context_engine.py +989 -0
  115. aiecs/domain/context/conversation_models.py +354 -0
  116. aiecs/domain/context/graph_memory.py +467 -0
  117. aiecs/domain/execution/__init__.py +12 -0
  118. aiecs/domain/execution/model.py +57 -0
  119. aiecs/domain/knowledge_graph/__init__.py +19 -0
  120. aiecs/domain/knowledge_graph/models/__init__.py +52 -0
  121. aiecs/domain/knowledge_graph/models/entity.py +130 -0
  122. aiecs/domain/knowledge_graph/models/evidence.py +194 -0
  123. aiecs/domain/knowledge_graph/models/inference_rule.py +186 -0
  124. aiecs/domain/knowledge_graph/models/path.py +179 -0
  125. aiecs/domain/knowledge_graph/models/path_pattern.py +173 -0
  126. aiecs/domain/knowledge_graph/models/query.py +272 -0
  127. aiecs/domain/knowledge_graph/models/query_plan.py +187 -0
  128. aiecs/domain/knowledge_graph/models/relation.py +136 -0
  129. aiecs/domain/knowledge_graph/schema/__init__.py +23 -0
  130. aiecs/domain/knowledge_graph/schema/entity_type.py +135 -0
  131. aiecs/domain/knowledge_graph/schema/graph_schema.py +271 -0
  132. aiecs/domain/knowledge_graph/schema/property_schema.py +155 -0
  133. aiecs/domain/knowledge_graph/schema/relation_type.py +171 -0
  134. aiecs/domain/knowledge_graph/schema/schema_manager.py +496 -0
  135. aiecs/domain/knowledge_graph/schema/type_enums.py +205 -0
  136. aiecs/domain/task/__init__.py +13 -0
  137. aiecs/domain/task/dsl_processor.py +613 -0
  138. aiecs/domain/task/model.py +62 -0
  139. aiecs/domain/task/task_context.py +268 -0
  140. aiecs/infrastructure/__init__.py +24 -0
  141. aiecs/infrastructure/graph_storage/__init__.py +11 -0
  142. aiecs/infrastructure/graph_storage/base.py +601 -0
  143. aiecs/infrastructure/graph_storage/batch_operations.py +449 -0
  144. aiecs/infrastructure/graph_storage/cache.py +429 -0
  145. aiecs/infrastructure/graph_storage/distributed.py +226 -0
  146. aiecs/infrastructure/graph_storage/error_handling.py +390 -0
  147. aiecs/infrastructure/graph_storage/graceful_degradation.py +306 -0
  148. aiecs/infrastructure/graph_storage/health_checks.py +378 -0
  149. aiecs/infrastructure/graph_storage/in_memory.py +514 -0
  150. aiecs/infrastructure/graph_storage/index_optimization.py +483 -0
  151. aiecs/infrastructure/graph_storage/lazy_loading.py +410 -0
  152. aiecs/infrastructure/graph_storage/metrics.py +357 -0
  153. aiecs/infrastructure/graph_storage/migration.py +413 -0
  154. aiecs/infrastructure/graph_storage/pagination.py +471 -0
  155. aiecs/infrastructure/graph_storage/performance_monitoring.py +466 -0
  156. aiecs/infrastructure/graph_storage/postgres.py +871 -0
  157. aiecs/infrastructure/graph_storage/query_optimizer.py +635 -0
  158. aiecs/infrastructure/graph_storage/schema_cache.py +290 -0
  159. aiecs/infrastructure/graph_storage/sqlite.py +623 -0
  160. aiecs/infrastructure/graph_storage/streaming.py +495 -0
  161. aiecs/infrastructure/messaging/__init__.py +13 -0
  162. aiecs/infrastructure/messaging/celery_task_manager.py +383 -0
  163. aiecs/infrastructure/messaging/websocket_manager.py +298 -0
  164. aiecs/infrastructure/monitoring/__init__.py +34 -0
  165. aiecs/infrastructure/monitoring/executor_metrics.py +174 -0
  166. aiecs/infrastructure/monitoring/global_metrics_manager.py +213 -0
  167. aiecs/infrastructure/monitoring/structured_logger.py +48 -0
  168. aiecs/infrastructure/monitoring/tracing_manager.py +410 -0
  169. aiecs/infrastructure/persistence/__init__.py +24 -0
  170. aiecs/infrastructure/persistence/context_engine_client.py +187 -0
  171. aiecs/infrastructure/persistence/database_manager.py +333 -0
  172. aiecs/infrastructure/persistence/file_storage.py +754 -0
  173. aiecs/infrastructure/persistence/redis_client.py +220 -0
  174. aiecs/llm/__init__.py +86 -0
  175. aiecs/llm/callbacks/__init__.py +11 -0
  176. aiecs/llm/callbacks/custom_callbacks.py +264 -0
  177. aiecs/llm/client_factory.py +420 -0
  178. aiecs/llm/clients/__init__.py +33 -0
  179. aiecs/llm/clients/base_client.py +193 -0
  180. aiecs/llm/clients/googleai_client.py +181 -0
  181. aiecs/llm/clients/openai_client.py +131 -0
  182. aiecs/llm/clients/vertex_client.py +437 -0
  183. aiecs/llm/clients/xai_client.py +184 -0
  184. aiecs/llm/config/__init__.py +51 -0
  185. aiecs/llm/config/config_loader.py +275 -0
  186. aiecs/llm/config/config_validator.py +236 -0
  187. aiecs/llm/config/model_config.py +151 -0
  188. aiecs/llm/utils/__init__.py +10 -0
  189. aiecs/llm/utils/validate_config.py +91 -0
  190. aiecs/main.py +363 -0
  191. aiecs/scripts/__init__.py +3 -0
  192. aiecs/scripts/aid/VERSION_MANAGEMENT.md +97 -0
  193. aiecs/scripts/aid/__init__.py +19 -0
  194. aiecs/scripts/aid/version_manager.py +215 -0
  195. aiecs/scripts/dependance_check/DEPENDENCY_SYSTEM_SUMMARY.md +242 -0
  196. aiecs/scripts/dependance_check/README_DEPENDENCY_CHECKER.md +310 -0
  197. aiecs/scripts/dependance_check/__init__.py +17 -0
  198. aiecs/scripts/dependance_check/dependency_checker.py +938 -0
  199. aiecs/scripts/dependance_check/dependency_fixer.py +391 -0
  200. aiecs/scripts/dependance_check/download_nlp_data.py +396 -0
  201. aiecs/scripts/dependance_check/quick_dependency_check.py +270 -0
  202. aiecs/scripts/dependance_check/setup_nlp_data.sh +217 -0
  203. aiecs/scripts/dependance_patch/__init__.py +7 -0
  204. aiecs/scripts/dependance_patch/fix_weasel/README_WEASEL_PATCH.md +126 -0
  205. aiecs/scripts/dependance_patch/fix_weasel/__init__.py +11 -0
  206. aiecs/scripts/dependance_patch/fix_weasel/fix_weasel_validator.py +128 -0
  207. aiecs/scripts/dependance_patch/fix_weasel/fix_weasel_validator.sh +82 -0
  208. aiecs/scripts/dependance_patch/fix_weasel/patch_weasel_library.sh +188 -0
  209. aiecs/scripts/dependance_patch/fix_weasel/run_weasel_patch.sh +41 -0
  210. aiecs/scripts/tools_develop/README.md +449 -0
  211. aiecs/scripts/tools_develop/TOOL_AUTO_DISCOVERY.md +234 -0
  212. aiecs/scripts/tools_develop/__init__.py +21 -0
  213. aiecs/scripts/tools_develop/check_type_annotations.py +259 -0
  214. aiecs/scripts/tools_develop/validate_tool_schemas.py +422 -0
  215. aiecs/scripts/tools_develop/verify_tools.py +356 -0
  216. aiecs/tasks/__init__.py +1 -0
  217. aiecs/tasks/worker.py +172 -0
  218. aiecs/tools/__init__.py +299 -0
  219. aiecs/tools/apisource/__init__.py +99 -0
  220. aiecs/tools/apisource/intelligence/__init__.py +19 -0
  221. aiecs/tools/apisource/intelligence/data_fusion.py +381 -0
  222. aiecs/tools/apisource/intelligence/query_analyzer.py +413 -0
  223. aiecs/tools/apisource/intelligence/search_enhancer.py +388 -0
  224. aiecs/tools/apisource/monitoring/__init__.py +9 -0
  225. aiecs/tools/apisource/monitoring/metrics.py +303 -0
  226. aiecs/tools/apisource/providers/__init__.py +115 -0
  227. aiecs/tools/apisource/providers/base.py +664 -0
  228. aiecs/tools/apisource/providers/census.py +401 -0
  229. aiecs/tools/apisource/providers/fred.py +564 -0
  230. aiecs/tools/apisource/providers/newsapi.py +412 -0
  231. aiecs/tools/apisource/providers/worldbank.py +357 -0
  232. aiecs/tools/apisource/reliability/__init__.py +12 -0
  233. aiecs/tools/apisource/reliability/error_handler.py +375 -0
  234. aiecs/tools/apisource/reliability/fallback_strategy.py +391 -0
  235. aiecs/tools/apisource/tool.py +850 -0
  236. aiecs/tools/apisource/utils/__init__.py +9 -0
  237. aiecs/tools/apisource/utils/validators.py +338 -0
  238. aiecs/tools/base_tool.py +201 -0
  239. aiecs/tools/docs/__init__.py +121 -0
  240. aiecs/tools/docs/ai_document_orchestrator.py +599 -0
  241. aiecs/tools/docs/ai_document_writer_orchestrator.py +2403 -0
  242. aiecs/tools/docs/content_insertion_tool.py +1333 -0
  243. aiecs/tools/docs/document_creator_tool.py +1317 -0
  244. aiecs/tools/docs/document_layout_tool.py +1166 -0
  245. aiecs/tools/docs/document_parser_tool.py +994 -0
  246. aiecs/tools/docs/document_writer_tool.py +1818 -0
  247. aiecs/tools/knowledge_graph/__init__.py +17 -0
  248. aiecs/tools/knowledge_graph/graph_reasoning_tool.py +734 -0
  249. aiecs/tools/knowledge_graph/graph_search_tool.py +923 -0
  250. aiecs/tools/knowledge_graph/kg_builder_tool.py +476 -0
  251. aiecs/tools/langchain_adapter.py +542 -0
  252. aiecs/tools/schema_generator.py +275 -0
  253. aiecs/tools/search_tool/__init__.py +100 -0
  254. aiecs/tools/search_tool/analyzers.py +589 -0
  255. aiecs/tools/search_tool/cache.py +260 -0
  256. aiecs/tools/search_tool/constants.py +128 -0
  257. aiecs/tools/search_tool/context.py +216 -0
  258. aiecs/tools/search_tool/core.py +749 -0
  259. aiecs/tools/search_tool/deduplicator.py +123 -0
  260. aiecs/tools/search_tool/error_handler.py +271 -0
  261. aiecs/tools/search_tool/metrics.py +371 -0
  262. aiecs/tools/search_tool/rate_limiter.py +178 -0
  263. aiecs/tools/search_tool/schemas.py +277 -0
  264. aiecs/tools/statistics/__init__.py +80 -0
  265. aiecs/tools/statistics/ai_data_analysis_orchestrator.py +643 -0
  266. aiecs/tools/statistics/ai_insight_generator_tool.py +505 -0
  267. aiecs/tools/statistics/ai_report_orchestrator_tool.py +694 -0
  268. aiecs/tools/statistics/data_loader_tool.py +564 -0
  269. aiecs/tools/statistics/data_profiler_tool.py +658 -0
  270. aiecs/tools/statistics/data_transformer_tool.py +573 -0
  271. aiecs/tools/statistics/data_visualizer_tool.py +495 -0
  272. aiecs/tools/statistics/model_trainer_tool.py +487 -0
  273. aiecs/tools/statistics/statistical_analyzer_tool.py +459 -0
  274. aiecs/tools/task_tools/__init__.py +86 -0
  275. aiecs/tools/task_tools/chart_tool.py +732 -0
  276. aiecs/tools/task_tools/classfire_tool.py +922 -0
  277. aiecs/tools/task_tools/image_tool.py +447 -0
  278. aiecs/tools/task_tools/office_tool.py +684 -0
  279. aiecs/tools/task_tools/pandas_tool.py +635 -0
  280. aiecs/tools/task_tools/report_tool.py +635 -0
  281. aiecs/tools/task_tools/research_tool.py +392 -0
  282. aiecs/tools/task_tools/scraper_tool.py +715 -0
  283. aiecs/tools/task_tools/stats_tool.py +688 -0
  284. aiecs/tools/temp_file_manager.py +130 -0
  285. aiecs/tools/tool_executor/__init__.py +37 -0
  286. aiecs/tools/tool_executor/tool_executor.py +881 -0
  287. aiecs/utils/LLM_output_structor.py +445 -0
  288. aiecs/utils/__init__.py +34 -0
  289. aiecs/utils/base_callback.py +47 -0
  290. aiecs/utils/cache_provider.py +695 -0
  291. aiecs/utils/execution_utils.py +184 -0
  292. aiecs/utils/logging.py +1 -0
  293. aiecs/utils/prompt_loader.py +14 -0
  294. aiecs/utils/token_usage_repository.py +323 -0
  295. aiecs/ws/__init__.py +0 -0
  296. aiecs/ws/socket_server.py +52 -0
  297. aiecs-1.5.1.dist-info/METADATA +608 -0
  298. aiecs-1.5.1.dist-info/RECORD +302 -0
  299. aiecs-1.5.1.dist-info/WHEEL +5 -0
  300. aiecs-1.5.1.dist-info/entry_points.txt +10 -0
  301. aiecs-1.5.1.dist-info/licenses/LICENSE +225 -0
  302. aiecs-1.5.1.dist-info/top_level.txt +1 -0
@@ -0,0 +1,302 @@
1
+ aiecs/__init__.py,sha256=3Cm4pvF_-mrBy7QxpAFNaE1Kia0VRQjtU35fGXy6GvE,1836
2
+ aiecs/__main__.py,sha256=SPaT-5_m_Mu2AOr4qSCymx6lzkZHTNxznWEJhgvaLEo,1016
3
+ aiecs/aiecs_client.py,sha256=8ep4vqJyFD1g83NslHfheDB-MBLjj8OtdF6pWUvPKS0,16669
4
+ aiecs/main.py,sha256=fga_xo_YCDn74kKyXG2bPb6kVv2ohNJeWOaWZsf5jWQ,10213
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=FkfWSy4WTRomg0fa3_gPgOfHdj7jSe7iVWnKqQu_kpY,14046
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/document_builder.py,sha256=iHwc-dIxGi8Tad1HUvsCbIoHOhmkGU8gNTtc4If59SY,12742
11
+ aiecs/application/knowledge_graph/builder/graph_builder.py,sha256=ja5imsKthWDqoMkzA89qoaebhOvhCgUQe6BChxgrZ80,13197
12
+ aiecs/application/knowledge_graph/builder/schema_mapping.py,sha256=6KBITkCjDg0TsNPZq0E6kwHsJJx6tkMO3oU1u6fTEMA,19435
13
+ aiecs/application/knowledge_graph/builder/structured_pipeline.py,sha256=ERIBmlNfVBg-TzY6VNnU0YOJCOxVVb7pAQuWjsRUPmY,14867
14
+ aiecs/application/knowledge_graph/builder/text_chunker.py,sha256=__DGfepE0Hpuj8ozQCqF2hCLxCRChpDZUiAv67Q_9ok,9534
15
+ aiecs/application/knowledge_graph/extractors/__init__.py,sha256=FtCvr-R7CTDcEV4SqtUARoJ5OnULLhw26Ad4NRq8Cmg,705
16
+ aiecs/application/knowledge_graph/extractors/base.py,sha256=GkbtUt8YkD6SZdANMZWeylgQUPO7hMaRtJ3TuSXAPAk,3350
17
+ aiecs/application/knowledge_graph/extractors/llm_entity_extractor.py,sha256=yk52fbQ89p1SVGcjO15qZNVlExKs0hOr5tLPbZ5w2pk,11317
18
+ aiecs/application/knowledge_graph/extractors/llm_relation_extractor.py,sha256=0yxY0dUswlXVNU2P649UGIfvex6JBVyPpb0rGB9XOag,11324
19
+ aiecs/application/knowledge_graph/extractors/ner_entity_extractor.py,sha256=LoUpwbrmCv-H7dMtfRuZ0a9H1WWAG42B9IwPNpGrP8M,7723
20
+ aiecs/application/knowledge_graph/fusion/__init__.py,sha256=MmD_llaVxZS1XHmypoSDyktDom7iV7STcswPKWi3kw8,609
21
+ aiecs/application/knowledge_graph/fusion/entity_deduplicator.py,sha256=-F5Kpe-f9egXdfGkiBi3qrb8n84TL24toeOOZmSkWlM,12377
22
+ aiecs/application/knowledge_graph/fusion/entity_linker.py,sha256=Qq-ibEDaWkj_RlAq-pw-aq1qKEnOSqp7WXjQF-UZbjw,11158
23
+ aiecs/application/knowledge_graph/fusion/knowledge_fusion.py,sha256=CyUMqqDd4RRvr5da3zh-7VR3TyzvNNuMb6IOFKsAKVQ,20968
24
+ aiecs/application/knowledge_graph/fusion/relation_deduplicator.py,sha256=G2aQ6m4ItYl5w69J5XCrXrH7BZsttz0F8EonOuPkXiQ,5667
25
+ aiecs/application/knowledge_graph/pattern_matching/__init__.py,sha256=0Y-4NvFOH2RbIbo7gb_Uaww4IxOGmWFHcZKjEhIqZNo,461
26
+ aiecs/application/knowledge_graph/pattern_matching/pattern_matcher.py,sha256=J5wMd15zyyl3_Bvm09-cr5B25gBFu_q8nwyS4v0qOYE,11131
27
+ aiecs/application/knowledge_graph/pattern_matching/query_executor.py,sha256=8KJYc5HkrBsAiKTofTP6LevdOuW2FCtr41Y9MJKqkFc,11376
28
+ aiecs/application/knowledge_graph/profiling/__init__.py,sha256=L2RB_zxk7I-rTY4I2iPfqQdZzNZFiQrF83B2ABIaSVU,266
29
+ aiecs/application/knowledge_graph/profiling/query_plan_visualizer.py,sha256=4xPZfnhc5J529zwTC5NPXlKTNAYSu_wgTI_rxjDSVCU,6026
30
+ aiecs/application/knowledge_graph/profiling/query_profiler.py,sha256=-hjnqZtGmOm8ae7cAg3hyJDyXLYBvyKwIaZ1uAoJ7-U,6713
31
+ aiecs/application/knowledge_graph/reasoning/__init__.py,sha256=R3WivCoP6xHaiMGEJVELRWpbDyh-GbPDRBr5OT8spX4,659
32
+ aiecs/application/knowledge_graph/reasoning/evidence_synthesis.py,sha256=nW-G5l4WlqI0XFkApR8EeKprs-WuwY5hn0TCgdtnUp4,11244
33
+ aiecs/application/knowledge_graph/reasoning/inference_engine.py,sha256=QkhoX0ytsF8fh8ahWKgMRKnwOitZ_HJJIWoekQFon70,16514
34
+ aiecs/application/knowledge_graph/reasoning/logic_form_parser.py,sha256=EPHItGfSXhQpwGXt9_sXpABsg2J9jOioSFmEkQWVaXI,4975
35
+ aiecs/application/knowledge_graph/reasoning/logic_query_integration.py,sha256=ml47uKe-dMo_nyHwT98GBOBCI3YGx4L_G_fGVHfa4gQ,5278
36
+ aiecs/application/knowledge_graph/reasoning/query_planner.py,sha256=HBPBo2LRdwF59j8GasMFnn7vgHwlpW8OcHmpR6x0OmU,30793
37
+ aiecs/application/knowledge_graph/reasoning/reasoning_engine.py,sha256=uWIcc25RI27QtmKp2U5ZartLNLnP802aX1gxD--EA9Y,21097
38
+ aiecs/application/knowledge_graph/reasoning/logic_parser/__init__.py,sha256=D2QHTVGo-hqwCc1Ulq7ZYLdNNfoNVtJPiV_KPxoeBB8,1720
39
+ aiecs/application/knowledge_graph/reasoning/logic_parser/ast_builder.py,sha256=o_TIC9Iqh76ay3RvcwGyiRdIgQ4lvXBeWycFNhjQWNE,14897
40
+ aiecs/application/knowledge_graph/reasoning/logic_parser/ast_nodes.py,sha256=DQvxpuylgYDM6aGtN-e4g_3CUewYegU9QitArRqqQko,20001
41
+ aiecs/application/knowledge_graph/reasoning/logic_parser/ast_validator.py,sha256=N6-2UxnDFxw4FBHRg7ogqJAX7ewdT8_V-5i6f1NWcdA,21629
42
+ aiecs/application/knowledge_graph/reasoning/logic_parser/error_handler.py,sha256=6HYAg8jtSVPVjda0Tyr_3Le97u3XNCCrtD4Rnszhgao,14614
43
+ aiecs/application/knowledge_graph/reasoning/logic_parser/parser.py,sha256=oZaSO1SLjpHL5Bppj7kahdMhR60spMWJt239ZGKe7lI,12213
44
+ aiecs/application/knowledge_graph/reasoning/logic_parser/query_context.py,sha256=GgwsZqWD1bdY57q5-NU16dU_4bWEUgLrSDRXd0Dzb0E,6549
45
+ aiecs/application/knowledge_graph/retrieval/__init__.py,sha256=aPxhmxeAI__q6GzBAeAu5MAv1tVR9L7tCX70ufaf1kI,401
46
+ aiecs/application/knowledge_graph/retrieval/retrieval_strategies.py,sha256=JJzexYkPTwGsJJ99bqpi6alS_bDCdxmS7SfQXG391AE,18718
47
+ aiecs/application/knowledge_graph/search/__init__.py,sha256=3-c89qUNQq9qcRofVPQanOnKO7G1PEAemJPm98ZRGx4,1471
48
+ aiecs/application/knowledge_graph/search/hybrid_search.py,sha256=16atNlqkX3FZKK2iXq33Paj4hgmwzIFh1KlTN_3p2sE,13492
49
+ aiecs/application/knowledge_graph/search/reranker.py,sha256=AwfdofNiXxzxZPdjKxGezZIqX6OA86FQuFj34BYwS0I,9322
50
+ aiecs/application/knowledge_graph/search/reranker_strategies.py,sha256=Qx_h8vGqYWPGXkZ2rxdyS3q2-wpSmxYQwQGd6IylG_8,17797
51
+ aiecs/application/knowledge_graph/search/text_similarity.py,sha256=BlkIZ0mj82r0oBT8rd8wQqpIvwfOf8zXzuhaSnQpC1k,11828
52
+ aiecs/application/knowledge_graph/traversal/__init__.py,sha256=mEGKpq6RD7pbyKaRVxhLwD1QjLx9nQ9vwvix4rxce3E,351
53
+ aiecs/application/knowledge_graph/traversal/enhanced_traversal.py,sha256=gGlsKoPc6HY-L2jMNgyj9WtmB0O0hwsM5EoEVGBdxe8,11831
54
+ aiecs/application/knowledge_graph/traversal/path_scorer.py,sha256=joyA6fO2DZFQeGonzCbo6bfJOEh6MwvPJ91V8fZrgcI,8184
55
+ aiecs/application/knowledge_graph/validators/__init__.py,sha256=mRywUj6JziSjExv7IG8TwV-pcRotqeltYJCuIDKchsU,234
56
+ aiecs/application/knowledge_graph/validators/relation_validator.py,sha256=OGAbKR0pHbxmy553GhTCI8iQdApLPxDnb_qMZTeZUlE,6354
57
+ aiecs/application/knowledge_graph/visualization/__init__.py,sha256=JxDSSdxC6ofhhEsoWS7gYfpj-wt2qENK0Ji8hr2eXOE,227
58
+ aiecs/application/knowledge_graph/visualization/graph_visualizer.py,sha256=n8Br1gGM0mpV-hMQtfVMTmoGUYbUXrLtCqtwIKDHgQw,9990
59
+ aiecs/common/__init__.py,sha256=6XzlzbA5JU8sFIAEF9-MZTGCbksTqCickXqEITT6cpI,116
60
+ aiecs/common/knowledge_graph/__init__.py,sha256=RBvTWuB_PzolXDYBAdqJrFYpQV34VGW0v21t4Bja8Uo,294
61
+ aiecs/common/knowledge_graph/runnable.py,sha256=0nZRQnkbo4CXambT00GnQnhEKIKN4sPt44vKsB0R49I,15322
62
+ aiecs/config/__init__.py,sha256=NLJr_hMMzqJ_TYXZe75Ba80EuD3eZMynhsWIMn6q9og,398
63
+ aiecs/config/config.py,sha256=Y_GKWbkc3lvs3hW0iqQ0aLMeXFpzYUSMT4PdUb9DF1w,19114
64
+ aiecs/config/graph_config.py,sha256=QTE9BIxSKzfx8U5IfJHjtK17W0y3uviSUz78QZWddfg,4035
65
+ aiecs/config/registry.py,sha256=cDoin4fI5kV3n9eF20Ke-5FuWs1PPyUEKlhYI78os5E,641
66
+ aiecs/core/__init__.py,sha256=1AnhNbnoRhRJ5S4MfSTcuDGTncKViytAKO2tTHfkSyw,1039
67
+ aiecs/core/interface/__init__.py,sha256=BwngZE6IqA7UBql71C5mCgVhfzmDtdZKFM7Dd3KIlTM,690
68
+ aiecs/core/interface/execution_interface.py,sha256=Sa8pHP2QCdkkDDUs4zEacnxScJcFZrfwuFbLHdqg_hw,4632
69
+ aiecs/core/interface/storage_interface.py,sha256=2Bjv4PIbh5wcHiuZgzLBPh1ALZyTEt6LZg-fqCZ7mjA,5129
70
+ aiecs/domain/__init__.py,sha256=hRyDL-WbPk16S0abxtMdPY0vzU3qaHRV2REYRo_fHiU,6854
71
+ aiecs/domain/agent/__init__.py,sha256=_yPOGvFlMDKKKC4CqMeaetgb4nhBdZxEsqStVwS_J2I,4046
72
+ aiecs/domain/agent/base_agent.py,sha256=Uy59Pn_kwXT16-uzfGYGb7NCWZW4QFWuK5TXVGDpRsQ,22171
73
+ aiecs/domain/agent/exceptions.py,sha256=Y_FMiPRLBQOtFjaica168HeOrYYzVhaY19QAmtSqzAw,2999
74
+ aiecs/domain/agent/graph_aware_mixin.py,sha256=W2gF2WKXRhbkYHqXdXbUqIlEhez0m999qTQxVGCWHpA,18112
75
+ aiecs/domain/agent/hybrid_agent.py,sha256=PSIsbERuA2cSBFENXGB4a_rNAtpRpC01fLabOmITSsk,17227
76
+ aiecs/domain/agent/knowledge_aware_agent.py,sha256=BpOYL9zSLXUqQdI5TRlnr0mOSg2E8V__X1ooreFbko0,23710
77
+ aiecs/domain/agent/lifecycle.py,sha256=-QTVYtC6PwxqX5g487E8jEwuoN3FjToUWhnnyKNt3EE,8751
78
+ aiecs/domain/agent/llm_agent.py,sha256=MJGiBlX713tpeIZHKUtV9YKPjYg7WJ1jqcUXF0oIGRY,9946
79
+ aiecs/domain/agent/models.py,sha256=i7FbVp-AIDKOAggHQoYQzzO7tH3H5eGarqJnHDNWmpg,10813
80
+ aiecs/domain/agent/observability.py,sha256=8ojJMQfKcyT_2jWTi5-rEMILgPYZ9vBR8XuHiHLqFIc,11303
81
+ aiecs/domain/agent/persistence.py,sha256=cDd_NM7UzIY1u9oX4QOrFYZSbbmrBEjx9OO7NWxvz1M,8666
82
+ aiecs/domain/agent/registry.py,sha256=Xr1j_MLw0HfiuTp6ZMr7vJjLPb0bCFJQoHAp7Ft3zaE,6923
83
+ aiecs/domain/agent/tool_agent.py,sha256=dfzw1v1WsE8GOov7gJu5nnQo578gml_mNZ57gpsfHbs,8292
84
+ aiecs/domain/agent/integration/__init__.py,sha256=rg68UShJ9k0E2oYsjjOVQtCeLRiLEus44vQx21qqorI,607
85
+ aiecs/domain/agent/integration/context_compressor.py,sha256=87NfIPRqXbZTmiGR8wWu0UArlpWokmeozF3AsuPFhog,6668
86
+ aiecs/domain/agent/integration/context_engine_adapter.py,sha256=B7w0XQw8iJprM2NE_d5fRs6GFTsfLGqU1XWdU4YOBHI,8643
87
+ aiecs/domain/agent/integration/retry_policy.py,sha256=zrS847IRyVZO7xGztAzGXL5Gif_SZQs1pUjYa-RRB7c,6041
88
+ aiecs/domain/agent/integration/role_config.py,sha256=m7IdWjnALk-DjSn7Bb5Bc5xPoNKy5OA-S9GEIEgpGnw,6659
89
+ aiecs/domain/agent/memory/__init__.py,sha256=NBBWCROQA3MY-ueOUm9M30oDlghoo-UgzF-rVSt0HX4,184
90
+ aiecs/domain/agent/memory/conversation.py,sha256=irNiOb_auvQe9WY5pqF1VzOUB1LUjcP73hJj5-6CuSo,6002
91
+ aiecs/domain/agent/migration/__init__.py,sha256=fb4RuWlthdGVqHvKJhf4QSmLniBiwCMe0Uz_V3H_KJM,320
92
+ aiecs/domain/agent/migration/conversion.py,sha256=OauCNSiqqim7zomOu8_szGOr29YsjeuwOLBlbhScIwE,4418
93
+ aiecs/domain/agent/migration/legacy_wrapper.py,sha256=k13VoIO85dyO2JN4G5jMZuvdXzitR4dPIEVmJqy0F7A,2911
94
+ aiecs/domain/agent/prompts/__init__.py,sha256=-TRbenbeESHikvJ13rI-d2zt35SfdS9OMCCgBU6TRWY,592
95
+ aiecs/domain/agent/prompts/builder.py,sha256=KSvOnUb7wlhRLWka0F7ORgD1X2a7wScGWQPUfo74MYc,4077
96
+ aiecs/domain/agent/prompts/formatters.py,sha256=PS1dFEUzQKePcY8My444ehG4BgEkQtVHCufugGX9sxw,4602
97
+ aiecs/domain/agent/prompts/template.py,sha256=5hLTJKGUa9I1DTsfL7HhErG1wXTe18jVBanCXqYUL2U,7365
98
+ aiecs/domain/agent/tools/__init__.py,sha256=8BK-ehFoCfgFqXjG1xLhUPJrlk77q6kmrjme6oZHEog,226
99
+ aiecs/domain/agent/tools/schema_generator.py,sha256=to_IQqIy-_gB8Ntsa5ATV120mP3DpLswS3O6C_3zhvo,6826
100
+ aiecs/domain/community/__init__.py,sha256=CcS5o6dpRM7NWm0HCl3d6MeDunwAQ1IABZlEVAQAZnU,3587
101
+ aiecs/domain/community/agent_adapter.py,sha256=h6tCiJ8uSpq-GMmZh4b4ujYOgdgnikZbxuia_5EiA8g,15211
102
+ aiecs/domain/community/analytics.py,sha256=V5KlzRzBuJ8kE94ylhV284MeI_XlANjOOVvYUfXtlH0,18064
103
+ aiecs/domain/community/collaborative_workflow.py,sha256=54zztPLtZzdAKts7IJ9OBw-8Ju_uIxIT3XLKJF4anMI,20805
104
+ aiecs/domain/community/communication_hub.py,sha256=PyYts8_badmTiaL1ehqqD6-ViOXXlc6ZKcHnVkGKjkg,19892
105
+ aiecs/domain/community/community_builder.py,sha256=aGd0vF1uwKfS_VvmX05SMbE4w8w3CyhTwmyhiKFJVa8,10192
106
+ aiecs/domain/community/community_integration.py,sha256=nfwsGBXos60RQilKsCdOsopJJkVp2BJ-nJ_WZ9mUVrA,29381
107
+ aiecs/domain/community/community_manager.py,sha256=T7ZY8H2NH_Rf4Et4E68LLGJeRJcPuLax7jP-w6ph61Y,28892
108
+ aiecs/domain/community/decision_engine.py,sha256=mTgWGBwijLl_jC17EcWDzMZ1L0wankAeoK8rHlS82C4,32689
109
+ aiecs/domain/community/exceptions.py,sha256=wT35dJXITBsj36XJs79iyONYMlQt-z-CikDo5le0_wM,7608
110
+ aiecs/domain/community/resource_manager.py,sha256=Xt7KZVJNcrEslDpiamfpFgWVc_V193EANafoXusYAck,15799
111
+ aiecs/domain/community/shared_context_manager.py,sha256=Nf0NtcHjlwAtRv4RhOepnUfqMc4S2tfhTqh30TTgaTk,20257
112
+ aiecs/domain/community/models/__init__.py,sha256=E-Y2u3GhNJwYx0mx8TDbiUoooNkNMY1JnjTkwPBytQk,605
113
+ aiecs/domain/community/models/community_models.py,sha256=Hn4wNwXs_sggRE6-k3671KrBdhF-wfoUhewH8bku0TI,10382
114
+ aiecs/domain/context/__init__.py,sha256=Ri5ZD-hst9KI4ZX4mrN2GbdMXBUt2vCrJEeP5s3lFRQ,1877
115
+ aiecs/domain/context/context_engine.py,sha256=dVFNRfcFhzEB4rwP5O8tr9SogJPuwFAneeJalsIrLSA,36754
116
+ aiecs/domain/context/conversation_models.py,sha256=aVXfR_A-GOm2dW41jDp4rgsA-EjvRqsRNMmj1sVGSgM,13533
117
+ aiecs/domain/context/graph_memory.py,sha256=JY5ZtTgB1w863VG-ZeNEgCfFV4ZBoaDTWNo8DBnTvMc,17434
118
+ aiecs/domain/execution/__init__.py,sha256=usXYgPcS-j0CFBN5K1v1WuxQUHsgap3tsaZnDCcKVXs,216
119
+ aiecs/domain/execution/model.py,sha256=89lsVDgnx6yxocdQqXRzf8Dt5wxk9a2J16eQCZZAtrA,1492
120
+ aiecs/domain/knowledge_graph/__init__.py,sha256=SwvWpzCCS9_fhRo3LjvSFC60_ArXGfZJ-gBPhQDHcxI,585
121
+ aiecs/domain/knowledge_graph/models/__init__.py,sha256=6S_5SSLyGSj8KwCoe2HX8gITwCthqIcbOHJW1x7KHao,1239
122
+ aiecs/domain/knowledge_graph/models/entity.py,sha256=H7rJWfYqt_Grsbd0f4_yEtSx8mUhVJqd6UBUtgAnIJU,3798
123
+ aiecs/domain/knowledge_graph/models/evidence.py,sha256=1_9_x6HOxJN-T01KQSQQIbBrrbLfz-Xh1tnUedlglvM,6349
124
+ aiecs/domain/knowledge_graph/models/inference_rule.py,sha256=nZ_Sw0nZEjLHzyf-bNDV783-ptQXq5RKuRYNGNs6FZQ,5833
125
+ aiecs/domain/knowledge_graph/models/path.py,sha256=eKATNMFG4YppcP9Pv803kpU4P5tZBafQf3do8cIHH2I,5073
126
+ aiecs/domain/knowledge_graph/models/path_pattern.py,sha256=jB6HDjbIluFpyia4z5c8F0RABPvRux5bDt7lRDyCGJg,5111
127
+ aiecs/domain/knowledge_graph/models/query.py,sha256=zlnbS_7VdfK4o9EZ9Zs8TDN7cY3s41kdVlBX_7TWt6g,8222
128
+ aiecs/domain/knowledge_graph/models/query_plan.py,sha256=Ltm0f-1kiYdMULahGlkzdCIpQbYCwVudbY1onGddiEw,6241
129
+ aiecs/domain/knowledge_graph/models/relation.py,sha256=vTjjVR7GM8U1zu0Kmbea261Z3sWhaInwyha6KGsRnPs,4206
130
+ aiecs/domain/knowledge_graph/schema/__init__.py,sha256=QzwLsC9SWCRnfwQpCKhREcAvgqiPWkN8Zx1FeUIYTvM,650
131
+ aiecs/domain/knowledge_graph/schema/entity_type.py,sha256=jY1wvNaSTOonUI1td8S-U3x2cH905MmYoFvb39VXonY,4085
132
+ aiecs/domain/knowledge_graph/schema/graph_schema.py,sha256=VSYZN9y06F2mH4-aFGmij542cFJcMO6LY78kBFhutrQ,8417
133
+ aiecs/domain/knowledge_graph/schema/property_schema.py,sha256=m8yVi8LQFKvYzozEMzjh2UIKac4_PQbbEyzJ_JidN1c,5114
134
+ aiecs/domain/knowledge_graph/schema/relation_type.py,sha256=v5Izm9Inbbvf3dRJkOgeWzVRwA6ugrzlh3W-HMBEY3M,5565
135
+ aiecs/domain/knowledge_graph/schema/schema_manager.py,sha256=aISK7BMB6iCcg6yqg3iqWS0m7-qExPzInFGjkKCz8E4,15799
136
+ aiecs/domain/knowledge_graph/schema/type_enums.py,sha256=4h-Wos-JhFv9AR1VypR1xB8xUw-PF2nF7YL0QAwnHP0,6268
137
+ aiecs/domain/task/__init__.py,sha256=WtU0MPg3xpkKa4RUTbSEkppUxGdvn-ai_3UCRvMjLR8,226
138
+ aiecs/domain/task/dsl_processor.py,sha256=x0thFEOSYGw5RQU6FyJC_j14cBYO91UecL6Alba67J0,22434
139
+ aiecs/domain/task/model.py,sha256=NA6_qtiFvd-aRJlt0kjNUFE69wralvBrLajhVh5QSlI,1728
140
+ aiecs/domain/task/task_context.py,sha256=VBZmyrrnbRt3HqQwpOKioMFv36x8_BVyYw08IgfitTo,10846
141
+ aiecs/infrastructure/__init__.py,sha256=QXMtqD85Wqm6eo_vY6gw378aRd48HTdfFeCb7HFyWSw,682
142
+ aiecs/infrastructure/graph_storage/__init__.py,sha256=kQghtKWXVV3iLXFvC5OGvSUBG5cCLDxVAzFHiP4e-p0,394
143
+ aiecs/infrastructure/graph_storage/base.py,sha256=CEbuinoLZOjY159yta4wOWKdgqbXnN_bDu6vlO3mtlM,20574
144
+ aiecs/infrastructure/graph_storage/batch_operations.py,sha256=dlgF3qSvkO250xw_tx8ayWM4OvWCzGcLGvxIOZg-mI0,14886
145
+ aiecs/infrastructure/graph_storage/cache.py,sha256=fbfAi8x48fLadsQk2uklJvIppK3RMjGxNYa2WlXRhiw,13932
146
+ aiecs/infrastructure/graph_storage/distributed.py,sha256=eFwiUPrphsUAJt1iTI6oFwcrwOQn8njGV9tsp6U1_PI,6479
147
+ aiecs/infrastructure/graph_storage/error_handling.py,sha256=u0uRtenjuXG9Ua5YF9nG5g6IYqqhq1MzuH63TVzF1W0,10908
148
+ aiecs/infrastructure/graph_storage/graceful_degradation.py,sha256=8rbi4TOxRcW-BHSxd4AF--YLfkyd6SBBWIFpBuQl6ps,10553
149
+ aiecs/infrastructure/graph_storage/health_checks.py,sha256=xrTofH5z-OUtCOtzTMpSZaBx2GnznEOY99olYS1U0y0,11974
150
+ aiecs/infrastructure/graph_storage/in_memory.py,sha256=NC2TBr6l20zpraFCbH1wS3Wkzy9NB3lKxm-ypKG92lU,16945
151
+ aiecs/infrastructure/graph_storage/index_optimization.py,sha256=HHz_zTE0XQkduhoU_a7s2pe2eBXvRxVTgIPSDG4YsNg,18144
152
+ aiecs/infrastructure/graph_storage/lazy_loading.py,sha256=A9wpwkGg4zMEX5TlOSlQTH5wg6p8aVvxx_bUAXN-ets,11986
153
+ aiecs/infrastructure/graph_storage/metrics.py,sha256=A9y3kjoDsr6E9mZ1o_b2qVbrxMP_aieBtzPucetapXM,10693
154
+ aiecs/infrastructure/graph_storage/migration.py,sha256=3h8MT6pmDPII8YXhoYJMh-jZ5fSuAR6uB2-8ZLGvfWc,14380
155
+ aiecs/infrastructure/graph_storage/pagination.py,sha256=mNbbwYrhoOxLZOE3omHr28awSEqk3ugXqQNxMMqMEVc,13709
156
+ aiecs/infrastructure/graph_storage/performance_monitoring.py,sha256=KEpu-mvRbjhUDOnK6GYI-6FcTCKrttOFAYOM5OBEFE4,14623
157
+ aiecs/infrastructure/graph_storage/postgres.py,sha256=UChE9Zvxn--bIE2zE6hutY8Tb_NNBCa-H3NU11veh0U,33718
158
+ aiecs/infrastructure/graph_storage/query_optimizer.py,sha256=MFT8W3WCnoMz9v29tc33c1fD2tzDASEytmyS8UyCehg,20402
159
+ aiecs/infrastructure/graph_storage/schema_cache.py,sha256=Se4Fr_ybiATDmzgo02jBU9hYDDn33W09Y1JYv_RVS08,7722
160
+ aiecs/infrastructure/graph_storage/sqlite.py,sha256=Tx6aQen4mddA5MtwWdpX-7XXH2HoBFhl_H6_sf2ddD8,21232
161
+ aiecs/infrastructure/graph_storage/streaming.py,sha256=QL-J5Qs7-A8dzb_46K_-dFk-nI9TkHRc-M9bhweZSUs,15128
162
+ aiecs/infrastructure/messaging/__init__.py,sha256=KOEywSnktNWEN4O8_GE4KSopjMNEyfYhfUaTOkMxLUE,299
163
+ aiecs/infrastructure/messaging/celery_task_manager.py,sha256=9VePTEcMHqbCX2HIq5Z_oP1765e0qjjKD0zrHOsZU2A,13636
164
+ aiecs/infrastructure/messaging/websocket_manager.py,sha256=bta4KEEquA3ZvKelkfT4tzorfSqwAxAcBwxPlOQFGUk,11390
165
+ aiecs/infrastructure/monitoring/__init__.py,sha256=4POkgG9lARNZCCt1e-g5iXjEup8rcy4dhw4XDGXx7LQ,826
166
+ aiecs/infrastructure/monitoring/executor_metrics.py,sha256=iaEea4pIe_dYOTf8etdxus-R7mdfOoqkAtDisvcQQrc,6503
167
+ aiecs/infrastructure/monitoring/global_metrics_manager.py,sha256=9TBW3fHrmCNzZuM5gO7_HhiLFl-J5Iv2R44F0BS3Pxc,6411
168
+ aiecs/infrastructure/monitoring/structured_logger.py,sha256=uDoInl7yNNt3yAUdl6TFfnJt03loIU8NlxwKrgEn5O8,1608
169
+ aiecs/infrastructure/monitoring/tracing_manager.py,sha256=CiL8vYa8mXXb9fDqg0CiazfolJzS845NfSw2HXlUTrM,13653
170
+ aiecs/infrastructure/persistence/__init__.py,sha256=qcUvQraaVz0mx0PyxrgxAEY9IPtxAePzh6W3I9eWvWg,571
171
+ aiecs/infrastructure/persistence/context_engine_client.py,sha256=wxciZR0XXD6eBjv-QOeg7yJnjxfDYC_WgGJIoY5NCT4,6044
172
+ aiecs/infrastructure/persistence/database_manager.py,sha256=Rj_QvzU9IivntQDUrApaJOYDynu3PAmYaTsnhnMQxkc,13123
173
+ aiecs/infrastructure/persistence/file_storage.py,sha256=XBjDBs8Yx4Q9kRbrfW0PcxPqSFMpQfgETCaoA4SWQCs,26214
174
+ aiecs/infrastructure/persistence/redis_client.py,sha256=JcrywHDmiy9bDG9FmeoVW05X4ItAecMbQhiTAMXJtlQ,7397
175
+ aiecs/llm/__init__.py,sha256=QZyBIuEJfjD0kEIoPc7C5IJYUyX0fDY6evsquidrOV8,1842
176
+ aiecs/llm/client_factory.py,sha256=iFcg5bRYCfLOuUXYOCvm6c3l2Tj_g9xE4wCT1Vh_iAM,15340
177
+ aiecs/llm/callbacks/__init__.py,sha256=u02K5Tvlu-87NXxYzXuxFHuhHAF4OPIje_IvPIF93Lw,191
178
+ aiecs/llm/callbacks/custom_callbacks.py,sha256=rP24wvIOjubmVhpm49hlsb6cBAAJ3QtsruUr1uWwRvM,10264
179
+ aiecs/llm/clients/__init__.py,sha256=X0A1Zu9hCrKr1iB78XM3VZlG8qkdvzpZ8Wfw5HB6QYA,692
180
+ aiecs/llm/clients/base_client.py,sha256=tOAjOVpr8lqNNDxy6cmSBRCnXj3ppvuMDFVrrFHR79I,5921
181
+ aiecs/llm/clients/googleai_client.py,sha256=8LNt50jlXq2FTPf7RlJnuHeFQrm9gNTcmotqoguVqWE,6573
182
+ aiecs/llm/clients/openai_client.py,sha256=gDnsmVOSWfb79UfFdCy9y127ErINK8F8NB3IenAUVSE,4213
183
+ aiecs/llm/clients/vertex_client.py,sha256=9GEsl2QfkRHwsohQDmxG5g8qQRoO0rEJ13SJOH6wApo,20085
184
+ aiecs/llm/clients/xai_client.py,sha256=yduB2FZ0koduqmjtDO2FmpaD4KE_JXkLR_8Ztpx4k2A,6412
185
+ aiecs/llm/config/__init__.py,sha256=LCPZXrV4-zUMh6IS32WaUBMT43pSF8dqbhqH3xBcwJU,1107
186
+ aiecs/llm/config/config_loader.py,sha256=m5EHs0gM-0HHtGn0dqncHpVc6wHi9j0LK21Wi4Ik8ss,8590
187
+ aiecs/llm/config/config_validator.py,sha256=HM0WovCYKoSUiXK-PNW9Zqfe3G0tfFSMsNcMxaLN4cY,7532
188
+ aiecs/llm/config/model_config.py,sha256=YxIPC7QB63C5Lpu2O7HrrTXo38ka7TmJ5Q83RJk5SPg,5743
189
+ aiecs/llm/utils/__init__.py,sha256=zKlDyNjvJsv5URW0B1g4C9cimuB7jmKkcfxkLsTAOVY,239
190
+ aiecs/llm/utils/validate_config.py,sha256=0GmZ4QhzyCrnZ0oA8n2g0AoREqqo0PbHItbv6t2hUmM,2999
191
+ aiecs/scripts/__init__.py,sha256=cVxQ5iqym520eDQSpV7B6hWolndCLMOVdvhC_D280PE,66
192
+ aiecs/scripts/aid/VERSION_MANAGEMENT.md,sha256=ElbRZFB9KdnDt9Lc4SQWLNY_3NbnLsl2ZHvLmczh2qw,2497
193
+ aiecs/scripts/aid/__init__.py,sha256=s-x7DWZ4xKVMXY47Y_Sb4867Sf92JKQAaRRMKQlPoqM,349
194
+ aiecs/scripts/aid/version_manager.py,sha256=1kRnZfMf7eOk8tsbz-gcKw24VSXguj7MdN-lpJ5qG24,7608
195
+ aiecs/scripts/dependance_check/DEPENDENCY_SYSTEM_SUMMARY.md,sha256=u2OLwmXaRGuTwEfj3jQ_yzAO_Z49P1CBC1pV3iULuoE,5866
196
+ aiecs/scripts/dependance_check/README_DEPENDENCY_CHECKER.md,sha256=7sAyeiMN7I-RsTOudo_JO2CTbC5ObEV0z_YyGtjiMcI,6003
197
+ aiecs/scripts/dependance_check/__init__.py,sha256=rmTQkMO1Vg9jPicWNggUXxyNckjmHGZ5ocdLuLzsiaY,509
198
+ aiecs/scripts/dependance_check/dependency_checker.py,sha256=ZYd88WlTq1TcrGyFouqANnVhEtU-yWyGvvXZyHK9msg,34944
199
+ aiecs/scripts/dependance_check/dependency_fixer.py,sha256=X-FVypkKpICQEto7pQIvYmbr_UjFs5qj51fJDpKMM8g,14679
200
+ aiecs/scripts/dependance_check/download_nlp_data.py,sha256=mmjzPLthnpg3vFQXUiW5w58fAu6Ii-VoVphVyyE3dsg,11947
201
+ aiecs/scripts/dependance_check/quick_dependency_check.py,sha256=CKo51etCAP_l7oetyv_wgDwKYqr2-P4fgBUgenNptew,9585
202
+ aiecs/scripts/dependance_check/setup_nlp_data.sh,sha256=CqO-bLVc_mLhNpsSoXZjvJKhtLUbA_gYBqfp3nzUuRI,5843
203
+ aiecs/scripts/dependance_patch/__init__.py,sha256=XT5f9CTvwIk-MK1jNj2Ti1cugsRhrO_Cs3ayOfscfVg,88
204
+ aiecs/scripts/dependance_patch/fix_weasel/README_WEASEL_PATCH.md,sha256=h0e3Xy6FArLgjika3pRZRhZRbyuj6iLzTU-AhHkWE7M,3581
205
+ aiecs/scripts/dependance_patch/fix_weasel/__init__.py,sha256=JUkQI7uPj88_FopzcxBllEZ1UyQtunc9rXw7OYeKNXU,188
206
+ aiecs/scripts/dependance_patch/fix_weasel/fix_weasel_validator.py,sha256=LgPInvXpe8WpYjlSyU9YkGyeVBgBQ2cOB1vtqAB07Xw,4072
207
+ aiecs/scripts/dependance_patch/fix_weasel/fix_weasel_validator.sh,sha256=XqV3Yx1wi23dWXDbofFK6_SU0BVLr9E1HaIudIuem7Q,2736
208
+ aiecs/scripts/dependance_patch/fix_weasel/patch_weasel_library.sh,sha256=6OcbuJWLv8DDeKPgVrV4wG9UIm5ppN-y-OQPSBD9pSg,5491
209
+ aiecs/scripts/dependance_patch/fix_weasel/run_weasel_patch.sh,sha256=bwyFyeaITwDmG2_3HsTd7PHeexahh6MhEZwUuAC_85c,1233
210
+ aiecs/scripts/tools_develop/README.md,sha256=7BPEYY2e2Fcrq-2GeeZRAUlIAea36WkWcXDe_BAW2Xg,12248
211
+ aiecs/scripts/tools_develop/TOOL_AUTO_DISCOVERY.md,sha256=M-xRPeOy_8Jz8c6CTCvgyYmzUktx6MwVUpLsXAVpU2M,6679
212
+ aiecs/scripts/tools_develop/__init__.py,sha256=WYhP2jcKvgd0pet3rd3uyLPgSmTbUAeVgdI9DN7esxc,414
213
+ aiecs/scripts/tools_develop/check_type_annotations.py,sha256=_SasPf8j6n8C5k_vmvDX9w8jn5Vdz8dGpjcrE3P5aiY,7851
214
+ aiecs/scripts/tools_develop/validate_tool_schemas.py,sha256=kFxsHXgvs5XZinmpn-vuFl32sMXklpn0IzWKcXSFkpI,14127
215
+ aiecs/scripts/tools_develop/verify_tools.py,sha256=izwHQ5S8tqNHXPODo-jordNnbOi0AO4bhFHv1zT0GgQ,12001
216
+ aiecs/tasks/__init__.py,sha256=8wuRzVR6UXR0SwTJqQrZ71nxKYIRrOpWDgaxNvbuj3w,60
217
+ aiecs/tasks/worker.py,sha256=SIFl_HEcizyF9Uv4f098d_HbaDKJHJvej58u3xwq9wg,4653
218
+ aiecs/tools/__init__.py,sha256=b0dof8TQrvNTpuwxZcwgKKlkl_4NUXNuFQw-4D-KT5s,10473
219
+ aiecs/tools/base_tool.py,sha256=XEi12vrBWOsNSvCkqdm9YWBj3MYM_0DfY8DjSuyTAB4,6807
220
+ aiecs/tools/langchain_adapter.py,sha256=Q-5p_dncwTwuy_6oiE-9pNlIqjUmCkY1cI8uYuNrhLY,19846
221
+ aiecs/tools/schema_generator.py,sha256=QfvbMauIH12kfamXtcZT_ILd5DwXyv4dCBLasQ4hXiM,8646
222
+ aiecs/tools/temp_file_manager.py,sha256=5SgaRzwgSCePjN6-iLvVDs1-eplkPFsluYd-Z8Tk4dI,4522
223
+ aiecs/tools/apisource/__init__.py,sha256=lrePj5IA7rbp-P_1S4pU3jJ2ScK9kJU5lO7875FLeF4,2343
224
+ aiecs/tools/apisource/tool.py,sha256=O2Kgz5-K1QaGQ4k334manKc-48PIJ7cqGifn21bpvUQ,32662
225
+ aiecs/tools/apisource/intelligence/__init__.py,sha256=swfdMQw2Cjfjyw0NkNA3xC4W4u1jniqqc88JgJ8D6u0,476
226
+ aiecs/tools/apisource/intelligence/data_fusion.py,sha256=NRH7NnBknzNU7-mKitn4rMRDjb2z7bhheWOUB3ivRGM,12536
227
+ aiecs/tools/apisource/intelligence/query_analyzer.py,sha256=EmzVmEJktfICVDmRWkcl_B2gvkUCKk33O5_ewWlje38,14661
228
+ aiecs/tools/apisource/intelligence/search_enhancer.py,sha256=kPUVUmLzo6mzVvLtC-HwKi3YG7B7YI6OXKioKRGf2Ks,12630
229
+ aiecs/tools/apisource/monitoring/__init__.py,sha256=d9Je6T6LcVWHkPhZWAciUQiejqswh_wY8mfIPraLxGM,179
230
+ aiecs/tools/apisource/monitoring/metrics.py,sha256=f05cV6INggUfkCpUgiMCsUgTph3z7VB5YwjCR1UlI3M,11157
231
+ aiecs/tools/apisource/providers/__init__.py,sha256=L_rAiGb7sKQMr807Lc5Eq7BHGXqCUxYZi5WSDjSrq7c,3122
232
+ aiecs/tools/apisource/providers/base.py,sha256=uHyhobIjkJVz9acYlWP3GP-UoQmddgAqUC6oUaiHMqU,23311
233
+ aiecs/tools/apisource/providers/census.py,sha256=sQlNAXLzbmYqDLa-DnMtQYry171JhXkBc3_cUs3dJ0c,13221
234
+ aiecs/tools/apisource/providers/fred.py,sha256=Vq7BBUYY0JS6TnEArELsAO9ObKOkMGMQnN8XsfE9M_4,20724
235
+ aiecs/tools/apisource/providers/newsapi.py,sha256=fUKvHqf1Wxtp-Rk-ZICSa3VQIM8wofvnvmmgwKrdjXU,14698
236
+ aiecs/tools/apisource/providers/worldbank.py,sha256=t0EKphF3ldb8oqqv8DLfH3r-CIArDkEmg2DqSIOXI0o,12274
237
+ aiecs/tools/apisource/reliability/__init__.py,sha256=8yao1GmrOCncGAUSmOKnE-aSSJq-9FuWJGk4TgdAkyM,308
238
+ aiecs/tools/apisource/reliability/error_handler.py,sha256=gBQvF_4tikbYwb7GkH8VtAn-e1lttCX35OWYurlH8gk,13051
239
+ aiecs/tools/apisource/reliability/fallback_strategy.py,sha256=Y-ruOCvQENinh0OxKB8lMqzRB-n35GicP9qa-SBpkRI,13505
240
+ aiecs/tools/apisource/utils/__init__.py,sha256=nKRTXi0Tq28pNZ4z3pp9JKVWwD22G8A5-Xtrmmrs5qo,167
241
+ aiecs/tools/apisource/utils/validators.py,sha256=LrJ8583GPMR3pRmVFSNE481lak1I4vx5fZGknGujOkQ,10595
242
+ aiecs/tools/docs/__init__.py,sha256=PBSBqnPPCbPfKF4CFc49uTcdxf36i0aBp7gNeD2166w,3741
243
+ aiecs/tools/docs/ai_document_orchestrator.py,sha256=EkF_i8FRnDMNdWxu58n0Ro5zj4ZmCT1G7zaCrC1TLro,23862
244
+ aiecs/tools/docs/ai_document_writer_orchestrator.py,sha256=Pwlcm7Y4ewsHZHJnmwAXKXmAITMRd24AFXnlvX9sudI,93792
245
+ aiecs/tools/docs/content_insertion_tool.py,sha256=kXYcS8H_vcLD8Pj6MhUk1KsBKlNB1NZcB_drh5PY0JA,47711
246
+ aiecs/tools/docs/document_creator_tool.py,sha256=9P_20cQCvNFCrP0kJVB1lXBeOb7WHfja7OWO-01OOtM,39963
247
+ aiecs/tools/docs/document_layout_tool.py,sha256=uwrdtzSburUBfy4KtCtO7NRcY53Tx0H9gutHshtztN4,43637
248
+ aiecs/tools/docs/document_parser_tool.py,sha256=AwwC_CDP4SWcZxyJbJvKHuRILhIesCi9myPyKDfIV4w,38462
249
+ aiecs/tools/docs/document_writer_tool.py,sha256=we9rR761WJRpS5SGGYd5By812Kn0eoaUWxbK5ip7K80,68152
250
+ aiecs/tools/knowledge_graph/__init__.py,sha256=-UEMSWpQ6IJFPU6RkKQ4TIckf2iSbPTAVdjy2X_sWOk,430
251
+ aiecs/tools/knowledge_graph/graph_reasoning_tool.py,sha256=PEE99Qi-FQ6lanQ2fIexFETI2-8zuTBrahovKhwgPu4,27938
252
+ aiecs/tools/knowledge_graph/graph_search_tool.py,sha256=O0dX3RPReieWn5oqpCdqJluR5xsFiWQEeWrvuqyvPC8,30886
253
+ aiecs/tools/knowledge_graph/kg_builder_tool.py,sha256=U7hcutOs3wqJMERXFu5kC4vn4fun-ybh23fmVs-b8qE,15543
254
+ aiecs/tools/search_tool/__init__.py,sha256=DlthXA8UhCbAgtAEgig-I3UqGZpx3CK65NSwubf4ICA,2638
255
+ aiecs/tools/search_tool/analyzers.py,sha256=ejOWNbC9nyJu1f3byB0DJw6quzltv-GsUKItRUkG-Cs,20726
256
+ aiecs/tools/search_tool/cache.py,sha256=wq3l_5MjHPNKy_s3tnIMLrFeiYTOqMG_reB7jtctDKA,8077
257
+ aiecs/tools/search_tool/constants.py,sha256=SaJPROgKzbSGgLBbPYbkXa0Q-sy2cMADR6Bjf_Kw7Lc,2523
258
+ aiecs/tools/search_tool/context.py,sha256=ujbihkE5yy6kIaVFNyjUyi93MwW5gMiyu2aXtl84lCA,6785
259
+ aiecs/tools/search_tool/core.py,sha256=i_ZIX5zhqXlKfrIBNlNsP8k6clabG0njL6kQbaN-eCg,27169
260
+ aiecs/tools/search_tool/deduplicator.py,sha256=39zFGjax2LlW6EBuEyEtfauXKKOJtE-n8TIcXtiXRwg,3585
261
+ aiecs/tools/search_tool/error_handler.py,sha256=4wemOEQ1XMgVraiFt11y7FWFHUZYCEU2l2D6ZynaP-8,10272
262
+ aiecs/tools/search_tool/metrics.py,sha256=RBXDd57aNrvSUI1vyRd4978kqqFwJoKFVwT-QpfCT6U,12738
263
+ aiecs/tools/search_tool/rate_limiter.py,sha256=GAdMbGoCW6d0oVNtEudTVV4bKaEP5ZF9Sb-qQtUe1VM,5586
264
+ aiecs/tools/search_tool/schemas.py,sha256=o_RSwMBvbRpN4hkcjSHbUsXynyXoAIAwFySpJSSg7nY,8341
265
+ aiecs/tools/statistics/__init__.py,sha256=yWc2gCq75v5UXTvZ2DxK3kgJz9hOHyRZF2F-shFydqQ,2691
266
+ aiecs/tools/statistics/ai_data_analysis_orchestrator.py,sha256=Q4CjWVNLef4dMrdF6StdFK79uird6mzvc_SUwkMnCaI,23184
267
+ aiecs/tools/statistics/ai_insight_generator_tool.py,sha256=TPMN6_jZh_tToaDau5O77p0EA9jOCxljl8eu1IhNS_k,19394
268
+ aiecs/tools/statistics/ai_report_orchestrator_tool.py,sha256=-OzfdSApeOHT4hBBMZIJ9_yerAP9byyL9vir6L0iBrs,25066
269
+ aiecs/tools/statistics/data_loader_tool.py,sha256=zUK6jctkf0JbarhF09wuMQ3vLBI02NwILJAM034vA6Y,20068
270
+ aiecs/tools/statistics/data_profiler_tool.py,sha256=7U7gNFebbYDwhy7vwkAPSKj085_MeXytUuWUbMoTqRk,24579
271
+ aiecs/tools/statistics/data_transformer_tool.py,sha256=H4JNYXfSWcmE3H0PBXa8oKHzKqMgEhlZMUfnshQVbxg,21116
272
+ aiecs/tools/statistics/data_visualizer_tool.py,sha256=bXYiZ6hN1MJwn2eCxqKtUBeHfAwRxc8A3dn2lruClyk,17775
273
+ aiecs/tools/statistics/model_trainer_tool.py,sha256=yuL03wWwZ0T1OiVMm_C_pbqU90rOIfU3utk7jnI8H6Q,17578
274
+ aiecs/tools/statistics/statistical_analyzer_tool.py,sha256=cOQW_TzifimYIDxoZuV3xMaqc-uas5yPeZbuandpmFs,16818
275
+ aiecs/tools/task_tools/__init__.py,sha256=Av3VCpvYjEkflZvSzwdlWrQwPZtZPpJkzoQCdo1wxVI,2484
276
+ aiecs/tools/task_tools/chart_tool.py,sha256=z4G6sJR6IPO1gXDN9E576Wkzgd4JFYqGGlwsGt-UzmM,26481
277
+ aiecs/tools/task_tools/classfire_tool.py,sha256=256Z9HHlelohWydp9-3brxq3LhsoXzWkVNEiT1zbsiE,32184
278
+ aiecs/tools/task_tools/image_tool.py,sha256=hRrr3i5r9wr4BBV6LF13E4uUXm8O7yMvLAB336gmPg8,15122
279
+ aiecs/tools/task_tools/office_tool.py,sha256=EFJ5LyTM44GCultO0Q6S82Ebz7dgUS-AD0O0oTExdoo,24001
280
+ aiecs/tools/task_tools/pandas_tool.py,sha256=FN8PSxUxiCNAAsDq0JUo7jLEqfIY_ssfCM5QVTsTXC0,25393
281
+ aiecs/tools/task_tools/report_tool.py,sha256=VZKnb-6k2we52BwlWEJ42bltAzsvs5llfpGw-ujB32Q,24930
282
+ aiecs/tools/task_tools/research_tool.py,sha256=W2rV5gIHvRYT4P2F3KnDyLU_q0GlxkyRI9Uezi5XK-s,15624
283
+ aiecs/tools/task_tools/scraper_tool.py,sha256=gIQPa-Qbt44nl548SXLEcJuSOJpeH9x_5hGlteVqgww,26312
284
+ aiecs/tools/task_tools/stats_tool.py,sha256=1CIjfl71UdMK8GbDjzDo-BR2_4CJrQWzENfEgIBpwzk,26389
285
+ aiecs/tools/tool_executor/__init__.py,sha256=sR2ss7Ep7OKSu0d0566rd14DDkH3tkYmbMLxpEs6kO8,783
286
+ aiecs/tools/tool_executor/tool_executor.py,sha256=4BgLLZBwN9PCAdInX4FJN2UmFx6nstGndKfAmDdKaKs,31109
287
+ aiecs/utils/LLM_output_structor.py,sha256=wSHSC_hnK5gZi1PSYAlDsIVnMSef5ik6tE5ia0KcgHA,16374
288
+ aiecs/utils/__init__.py,sha256=k5aS7sGknT_MqZit3h9QupktoXcwD38I6IkqhkIF9Qc,838
289
+ aiecs/utils/base_callback.py,sha256=fjA6V6Wx_5hHhWKGf80U1bkSxjYg_ZqvLrCFJQGEsx8,1622
290
+ aiecs/utils/cache_provider.py,sha256=ibU1c6SVSMlHCbM5VQ40UqTbIM_3rCOhSzxFL8qvIh4,21554
291
+ aiecs/utils/execution_utils.py,sha256=ELULzMTn5J591gJOU9DED4uPUB7F9Jv1F6PHl-6MdcM,5985
292
+ aiecs/utils/logging.py,sha256=kvZ9OjFChfLN_2MEGvIDBK3trPAhikkh87rK49vN3bU,29
293
+ aiecs/utils/prompt_loader.py,sha256=iNBNeUSnvbSE1SrllOlBllDdQXtfzq5dO5rjkcFEsSw,424
294
+ aiecs/utils/token_usage_repository.py,sha256=yYagYB-3391_7HOD0JGh_M6PuhFzUp9Fjqn-YzmGzs8,10695
295
+ aiecs/ws/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
296
+ aiecs/ws/socket_server.py,sha256=ILy-iMYks4r5jdM6jSTEibWRY8H0W1S8jG53nTjsYU4,1500
297
+ aiecs-1.5.1.dist-info/licenses/LICENSE,sha256=_1YRaIS0eZu1pv6xfz245UkU0i1Va2B841hv3OWRwqg,12494
298
+ aiecs-1.5.1.dist-info/METADATA,sha256=nqpJm5zcKNmEqO5gv7bzczsgoFQDLqoeQca8aTrhahg,16299
299
+ aiecs-1.5.1.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
300
+ aiecs-1.5.1.dist-info/entry_points.txt,sha256=TfLBuwLOfgQqKvnoF1sgTS19-Hgl0aWvCZjIdblIiig,667
301
+ aiecs-1.5.1.dist-info/top_level.txt,sha256=22IlUlOqh9Ni3jXlQNMNUqzbW8dcxXPeR_EQ-BJVcV8,6
302
+ aiecs-1.5.1.dist-info/RECORD,,
@@ -0,0 +1,5 @@
1
+ Wheel-Version: 1.0
2
+ Generator: setuptools (80.9.0)
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any
5
+
@@ -0,0 +1,10 @@
1
+ [console_scripts]
2
+ aiecs = aiecs.__main__:main
3
+ aiecs-check-deps = aiecs.scripts.dependance_check.dependency_checker:main
4
+ aiecs-download-nlp-data = aiecs.scripts.dependance_check.download_nlp_data:main
5
+ aiecs-fix-deps = aiecs.scripts.dependance_check.dependency_fixer:main
6
+ aiecs-patch-weasel = aiecs.scripts.dependance_patch.fix_weasel.fix_weasel_validator:main
7
+ aiecs-quick-check = aiecs.scripts.dependance_check.quick_dependency_check:main
8
+ aiecs-tools-check-annotations = aiecs.scripts.tools_develop.check_type_annotations:main
9
+ aiecs-tools-validate-schemas = aiecs.scripts.tools_develop.validate_tool_schemas:main
10
+ aiecs-version = aiecs.scripts.aid.version_manager:main
@@ -0,0 +1,225 @@
1
+ <<<<<<< HEAD
2
+ MIT License
3
+
4
+ Copyright (c) 2024 AIECS Team
5
+
6
+ Permission is hereby granted, free of charge, to any person obtaining a copy
7
+ of this software and associated documentation files (the "Software"), to deal
8
+ in the Software without restriction, including without limitation the rights
9
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10
+ copies of the Software, and to permit persons to whom the Software is
11
+ furnished to do so, subject to the following conditions:
12
+
13
+ The above copyright notice and this permission notice shall be included in all
14
+ copies or substantial portions of the Software.
15
+
16
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
19
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
22
+ SOFTWARE.
23
+ =======
24
+ Apache License
25
+ Version 2.0, January 2004
26
+ http://www.apache.org/licenses/
27
+
28
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
29
+
30
+ 1. Definitions.
31
+
32
+ "License" shall mean the terms and conditions for use, reproduction,
33
+ and distribution as defined by Sections 1 through 9 of this document.
34
+
35
+ "Licensor" shall mean the copyright owner or entity authorized by
36
+ the copyright owner that is granting the License.
37
+
38
+ "Legal Entity" shall mean the union of the acting entity and all
39
+ other entities that control, are controlled by, or are under common
40
+ control with that entity. For the purposes of this definition,
41
+ "control" means (i) the power, direct or indirect, to cause the
42
+ direction or management of such entity, whether by contract or
43
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
44
+ outstanding shares, or (iii) beneficial ownership of such entity.
45
+
46
+ "You" (or "Your") shall mean an individual or Legal Entity
47
+ exercising permissions granted by this License.
48
+
49
+ "Source" form shall mean the preferred form for making modifications,
50
+ including but not limited to software source code, documentation
51
+ source, and configuration files.
52
+
53
+ "Object" form shall mean any form resulting from mechanical
54
+ transformation or translation of a Source form, including but
55
+ not limited to compiled object code, generated documentation,
56
+ and conversions to other media types.
57
+
58
+ "Work" shall mean the work of authorship, whether in Source or
59
+ Object form, made available under the License, as indicated by a
60
+ copyright notice that is included in or attached to the work
61
+ (an example is provided in the Appendix below).
62
+
63
+ "Derivative Works" shall mean any work, whether in Source or Object
64
+ form, that is based on (or derived from) the Work and for which the
65
+ editorial revisions, annotations, elaborations, or other modifications
66
+ represent, as a whole, an original work of authorship. For the purposes
67
+ of this License, Derivative Works shall not include works that remain
68
+ separable from, or merely link (or bind by name) to the interfaces of,
69
+ the Work and Derivative Works thereof.
70
+
71
+ "Contribution" shall mean any work of authorship, including
72
+ the original version of the Work and any modifications or additions
73
+ to that Work or Derivative Works thereof, that is intentionally
74
+ submitted to Licensor for inclusion in the Work by the copyright owner
75
+ or by an individual or Legal Entity authorized to submit on behalf of
76
+ the copyright owner. For the purposes of this definition, "submitted"
77
+ means any form of electronic, verbal, or written communication sent
78
+ to the Licensor or its representatives, including but not limited to
79
+ communication on electronic mailing lists, source code control systems,
80
+ and issue tracking systems that are managed by, or on behalf of, the
81
+ Licensor for the purpose of discussing and improving the Work, but
82
+ excluding communication that is conspicuously marked or otherwise
83
+ designated in writing by the copyright owner as "Not a Contribution."
84
+
85
+ "Contributor" shall mean Licensor and any individual or Legal Entity
86
+ on behalf of whom a Contribution has been received by Licensor and
87
+ subsequently incorporated within the Work.
88
+
89
+ 2. Grant of Copyright License. Subject to the terms and conditions of
90
+ this License, each Contributor hereby grants to You a perpetual,
91
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
92
+ copyright license to reproduce, prepare Derivative Works of,
93
+ publicly display, publicly perform, sublicense, and distribute the
94
+ Work and such Derivative Works in Source or Object form.
95
+
96
+ 3. Grant of Patent License. Subject to the terms and conditions of
97
+ this License, each Contributor hereby grants to You a perpetual,
98
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
99
+ (except as stated in this section) patent license to make, have made,
100
+ use, offer to sell, sell, import, and otherwise transfer the Work,
101
+ where such license applies only to those patent claims licensable
102
+ by such Contributor that are necessarily infringed by their
103
+ Contribution(s) alone or by combination of their Contribution(s)
104
+ with the Work to which such Contribution(s) was submitted. If You
105
+ institute patent litigation against any entity (including a
106
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
107
+ or a Contribution incorporated within the Work constitutes direct
108
+ or contributory patent infringement, then any patent licenses
109
+ granted to You under this License for that Work shall terminate
110
+ as of the date such litigation is filed.
111
+
112
+ 4. Redistribution. You may reproduce and distribute copies of the
113
+ Work or Derivative Works thereof in any medium, with or without
114
+ modifications, and in Source or Object form, provided that You
115
+ meet the following conditions:
116
+
117
+ (a) You must give any other recipients of the Work or
118
+ Derivative Works a copy of this License; and
119
+
120
+ (b) You must cause any modified files to carry prominent notices
121
+ stating that You changed the files; and
122
+
123
+ (c) You must retain, in the Source form of any Derivative Works
124
+ that You distribute, all copyright, patent, trademark, and
125
+ attribution notices from the Source form of the Work,
126
+ excluding those notices that do not pertain to any part of
127
+ the Derivative Works; and
128
+
129
+ (d) If the Work includes a "NOTICE" text file as part of its
130
+ distribution, then any Derivative Works that You distribute must
131
+ include a readable copy of the attribution notices contained
132
+ within such NOTICE file, excluding those notices that do not
133
+ pertain to any part of the Derivative Works, in at least one
134
+ of the following places: within a NOTICE text file distributed
135
+ as part of the Derivative Works; within the Source form or
136
+ documentation, if provided along with the Derivative Works; or,
137
+ within a display generated by the Derivative Works, if and
138
+ wherever such third-party notices normally appear. The contents
139
+ of the NOTICE file are for informational purposes only and
140
+ do not modify the License. You may add Your own attribution
141
+ notices within Derivative Works that You distribute, alongside
142
+ or as an addendum to the NOTICE text from the Work, provided
143
+ that such additional attribution notices cannot be construed
144
+ as modifying the License.
145
+
146
+ You may add Your own copyright statement to Your modifications and
147
+ may provide additional or different license terms and conditions
148
+ for use, reproduction, or distribution of Your modifications, or
149
+ for any such Derivative Works as a whole, provided Your use,
150
+ reproduction, and distribution of the Work otherwise complies with
151
+ the conditions stated in this License.
152
+
153
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
154
+ any Contribution intentionally submitted for inclusion in the Work
155
+ by You to the Licensor shall be under the terms and conditions of
156
+ this License, without any additional terms or conditions.
157
+ Notwithstanding the above, nothing herein shall supersede or modify
158
+ the terms of any separate license agreement you may have executed
159
+ with Licensor regarding such Contributions.
160
+
161
+ 6. Trademarks. This License does not grant permission to use the trade
162
+ names, trademarks, service marks, or product names of the Licensor,
163
+ except as required for reasonable and customary use in describing the
164
+ origin of the Work and reproducing the content of the NOTICE file.
165
+
166
+ 7. Disclaimer of Warranty. Unless required by applicable law or
167
+ agreed to in writing, Licensor provides the Work (and each
168
+ Contributor provides its Contributions) on an "AS IS" BASIS,
169
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
170
+ implied, including, without limitation, any warranties or conditions
171
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
172
+ PARTICULAR PURPOSE. You are solely responsible for determining the
173
+ appropriateness of using or redistributing the Work and assume any
174
+ risks associated with Your exercise of permissions under this License.
175
+
176
+ 8. Limitation of Liability. In no event and under no legal theory,
177
+ whether in tort (including negligence), contract, or otherwise,
178
+ unless required by applicable law (such as deliberate and grossly
179
+ negligent acts) or agreed to in writing, shall any Contributor be
180
+ liable to You for damages, including any direct, indirect, special,
181
+ incidental, or consequential damages of any character arising as a
182
+ result of this License or out of the use or inability to use the
183
+ Work (including but not limited to damages for loss of goodwill,
184
+ work stoppage, computer failure or malfunction, or any and all
185
+ other commercial damages or losses), even if such Contributor
186
+ has been advised of the possibility of such damages.
187
+
188
+ 9. Accepting Warranty or Additional Liability. While redistributing
189
+ the Work or Derivative Works thereof, You may choose to offer,
190
+ and charge a fee for, acceptance of support, warranty, indemnity,
191
+ or other liability obligations and/or rights consistent with this
192
+ License. However, in accepting such obligations, You may act only
193
+ on Your own behalf and on Your sole responsibility, not on behalf
194
+ of any other Contributor, and only if You agree to indemnify,
195
+ defend, and hold each Contributor harmless for any liability
196
+ incurred by, or claims asserted against, such Contributor by reason
197
+ of your accepting any such warranty or additional liability.
198
+
199
+ END OF TERMS AND CONDITIONS
200
+
201
+ APPENDIX: How to apply the Apache License to your work.
202
+
203
+ To apply the Apache License to your work, attach the following
204
+ boilerplate notice, with the fields enclosed by brackets "[]"
205
+ replaced with your own identifying information. (Don't include
206
+ the brackets!) The text should be enclosed in the appropriate
207
+ comment syntax for the file format. We also recommend that a
208
+ file or class name and description of purpose be included on the
209
+ same "printed page" as the copyright notice for easier
210
+ identification within third-party archives.
211
+
212
+ Copyright [yyyy] [name of copyright owner]
213
+
214
+ Licensed under the Apache License, Version 2.0 (the "License");
215
+ you may not use this file except in compliance with the License.
216
+ You may obtain a copy of the License at
217
+
218
+ http://www.apache.org/licenses/LICENSE-2.0
219
+
220
+ Unless required by applicable law or agreed to in writing, software
221
+ distributed under the License is distributed on an "AS IS" BASIS,
222
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
223
+ See the License for the specific language governing permissions and
224
+ limitations under the License.
225
+ >>>>>>> c05fb934339f374c0a2d4c50915cbec773c3534c
@@ -0,0 +1 @@
1
+ aiecs