aiecs 1.0.8__py3-none-any.whl → 1.2.0__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.

Files changed (81) hide show
  1. aiecs/__init__.py +1 -1
  2. aiecs/aiecs_client.py +159 -1
  3. aiecs/config/config.py +6 -0
  4. aiecs/domain/__init__.py +95 -0
  5. aiecs/domain/community/__init__.py +159 -0
  6. aiecs/domain/community/agent_adapter.py +516 -0
  7. aiecs/domain/community/analytics.py +465 -0
  8. aiecs/domain/community/collaborative_workflow.py +99 -7
  9. aiecs/domain/community/communication_hub.py +649 -0
  10. aiecs/domain/community/community_builder.py +322 -0
  11. aiecs/domain/community/community_integration.py +365 -12
  12. aiecs/domain/community/community_manager.py +481 -5
  13. aiecs/domain/community/decision_engine.py +459 -13
  14. aiecs/domain/community/exceptions.py +238 -0
  15. aiecs/domain/community/models/__init__.py +36 -0
  16. aiecs/domain/community/resource_manager.py +1 -1
  17. aiecs/domain/community/shared_context_manager.py +621 -0
  18. aiecs/domain/context/__init__.py +24 -0
  19. aiecs/domain/context/context_engine.py +37 -33
  20. aiecs/main.py +20 -2
  21. aiecs/scripts/aid/VERSION_MANAGEMENT.md +97 -0
  22. aiecs/scripts/aid/__init__.py +15 -0
  23. aiecs/scripts/aid/version_manager.py +224 -0
  24. aiecs/scripts/dependance_check/__init__.py +18 -0
  25. aiecs/scripts/{download_nlp_data.py → dependance_check/download_nlp_data.py} +51 -8
  26. aiecs/scripts/dependance_patch/__init__.py +8 -0
  27. aiecs/scripts/dependance_patch/fix_weasel/__init__.py +12 -0
  28. aiecs/scripts/tools_develop/README.md +340 -0
  29. aiecs/scripts/tools_develop/__init__.py +16 -0
  30. aiecs/scripts/tools_develop/check_type_annotations.py +263 -0
  31. aiecs/scripts/tools_develop/validate_tool_schemas.py +346 -0
  32. aiecs/tools/__init__.py +53 -34
  33. aiecs/tools/docs/__init__.py +106 -0
  34. aiecs/tools/docs/ai_document_orchestrator.py +556 -0
  35. aiecs/tools/docs/ai_document_writer_orchestrator.py +2222 -0
  36. aiecs/tools/docs/content_insertion_tool.py +1234 -0
  37. aiecs/tools/docs/document_creator_tool.py +1179 -0
  38. aiecs/tools/docs/document_layout_tool.py +1105 -0
  39. aiecs/tools/docs/document_parser_tool.py +924 -0
  40. aiecs/tools/docs/document_writer_tool.py +1636 -0
  41. aiecs/tools/langchain_adapter.py +102 -51
  42. aiecs/tools/schema_generator.py +265 -0
  43. aiecs/tools/statistics/__init__.py +82 -0
  44. aiecs/tools/statistics/ai_data_analysis_orchestrator.py +581 -0
  45. aiecs/tools/statistics/ai_insight_generator_tool.py +473 -0
  46. aiecs/tools/statistics/ai_report_orchestrator_tool.py +629 -0
  47. aiecs/tools/statistics/data_loader_tool.py +518 -0
  48. aiecs/tools/statistics/data_profiler_tool.py +599 -0
  49. aiecs/tools/statistics/data_transformer_tool.py +531 -0
  50. aiecs/tools/statistics/data_visualizer_tool.py +460 -0
  51. aiecs/tools/statistics/model_trainer_tool.py +470 -0
  52. aiecs/tools/statistics/statistical_analyzer_tool.py +426 -0
  53. aiecs/tools/task_tools/chart_tool.py +2 -1
  54. aiecs/tools/task_tools/image_tool.py +43 -43
  55. aiecs/tools/task_tools/office_tool.py +48 -36
  56. aiecs/tools/task_tools/pandas_tool.py +37 -33
  57. aiecs/tools/task_tools/report_tool.py +67 -56
  58. aiecs/tools/task_tools/research_tool.py +32 -31
  59. aiecs/tools/task_tools/scraper_tool.py +53 -46
  60. aiecs/tools/task_tools/search_tool.py +1123 -0
  61. aiecs/tools/task_tools/stats_tool.py +20 -15
  62. {aiecs-1.0.8.dist-info → aiecs-1.2.0.dist-info}/METADATA +5 -1
  63. aiecs-1.2.0.dist-info/RECORD +135 -0
  64. aiecs-1.2.0.dist-info/entry_points.txt +10 -0
  65. aiecs/tools/task_tools/search_api.py +0 -7
  66. aiecs-1.0.8.dist-info/RECORD +0 -98
  67. aiecs-1.0.8.dist-info/entry_points.txt +0 -7
  68. /aiecs/scripts/{DEPENDENCY_SYSTEM_SUMMARY.md → dependance_check/DEPENDENCY_SYSTEM_SUMMARY.md} +0 -0
  69. /aiecs/scripts/{README_DEPENDENCY_CHECKER.md → dependance_check/README_DEPENDENCY_CHECKER.md} +0 -0
  70. /aiecs/scripts/{dependency_checker.py → dependance_check/dependency_checker.py} +0 -0
  71. /aiecs/scripts/{dependency_fixer.py → dependance_check/dependency_fixer.py} +0 -0
  72. /aiecs/scripts/{quick_dependency_check.py → dependance_check/quick_dependency_check.py} +0 -0
  73. /aiecs/scripts/{setup_nlp_data.sh → dependance_check/setup_nlp_data.sh} +0 -0
  74. /aiecs/scripts/{README_WEASEL_PATCH.md → dependance_patch/fix_weasel/README_WEASEL_PATCH.md} +0 -0
  75. /aiecs/scripts/{fix_weasel_validator.py → dependance_patch/fix_weasel/fix_weasel_validator.py} +0 -0
  76. /aiecs/scripts/{fix_weasel_validator.sh → dependance_patch/fix_weasel/fix_weasel_validator.sh} +0 -0
  77. /aiecs/scripts/{patch_weasel_library.sh → dependance_patch/fix_weasel/patch_weasel_library.sh} +0 -0
  78. /aiecs/scripts/{run_weasel_patch.sh → dependance_patch/fix_weasel/run_weasel_patch.sh} +0 -0
  79. {aiecs-1.0.8.dist-info → aiecs-1.2.0.dist-info}/WHEEL +0 -0
  80. {aiecs-1.0.8.dist-info → aiecs-1.2.0.dist-info}/licenses/LICENSE +0 -0
  81. {aiecs-1.0.8.dist-info → aiecs-1.2.0.dist-info}/top_level.txt +0 -0
@@ -7,8 +7,7 @@ from dataclasses import dataclass
7
7
 
8
8
  import pandas as pd
9
9
  import numpy as np
10
- from pydantic_settings import BaseSettings
11
- from pydantic import ValidationError, ConfigDict
10
+ from pydantic import BaseModel, ValidationError, ConfigDict, Field
12
11
 
13
12
  from aiecs.tools.base_tool import BaseTool
14
13
  from aiecs.tools import register_tool
@@ -20,13 +19,6 @@ class ScalerType(str, Enum):
20
19
  ROBUST = "robust"
21
20
  NONE = "none"
22
21
 
23
- class StatsSettings(BaseSettings):
24
- """Configuration for StatsTool."""
25
- max_file_size_mb: int = 200
26
- allowed_extensions: List[str] = ['.sav', '.sas7bdat', '.por', '.csv', '.xlsx', '.xls', '.json', '.parquet', '.feather']
27
- env_prefix: str = 'STATS_TOOL_'
28
-
29
- model_config = ConfigDict(env_prefix='STATS_TOOL_')
30
22
 
31
23
  # Exceptions
32
24
  class StatsToolError(Exception): pass
@@ -55,14 +47,27 @@ class StatsResult:
55
47
  @register_tool('stats')
56
48
  class StatsTool(BaseTool):
57
49
  """Enhanced statistical analysis tool for various data formats and operations."""
50
+
51
+ # Configuration schema
52
+ class Config(BaseModel):
53
+ """Configuration for the stats tool"""
54
+ model_config = ConfigDict(env_prefix="STATS_TOOL_")
55
+
56
+ max_file_size_mb: int = Field(
57
+ default=200,
58
+ description="Maximum file size in megabytes"
59
+ )
60
+ allowed_extensions: List[str] = Field(
61
+ default=['.sav', '.sas7bdat', '.por', '.csv', '.xlsx', '.xls', '.json', '.parquet', '.feather'],
62
+ description="Allowed file extensions"
63
+ )
64
+
58
65
  def __init__(self, config: Dict[str, Any] = None):
59
66
  super().__init__(config)
60
- self.settings = StatsSettings()
61
- if config:
62
- try:
63
- self.settings = self.settings.model_validate({**self.settings.model_dump(), **config})
64
- except ValidationError as e:
65
- raise ValueError(f"Invalid settings: {e}")
67
+
68
+ # Parse configuration
69
+ self.config = self.Config(**(config or {}))
70
+
66
71
  self.logger = logging.getLogger(__name__)
67
72
  if not self.logger.handlers:
68
73
  h = logging.StreamHandler()
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: aiecs
3
- Version: 1.0.8
3
+ Version: 1.2.0
4
4
  Summary: AI Execute Services - A middleware framework for AI-powered task execution and tool orchestration
5
5
  Author-email: AIECS Team <iretbl@gmail.com>
6
6
  License-Expression: MIT
@@ -39,6 +39,10 @@ Requires-Dist: flower<3.0.0,>=2.0.1
39
39
  Requires-Dist: openai<1.76.0,>=1.68.2
40
40
  Requires-Dist: google-cloud-aiplatform<2.0.0,>=1.80.0
41
41
  Requires-Dist: google-generativeai<1.0.0,>=0.8.0
42
+ Requires-Dist: google-api-python-client<3.0.0,>=2.108.0
43
+ Requires-Dist: google-auth<3.0.0,>=2.25.0
44
+ Requires-Dist: google-auth-httplib2<1.0.0,>=0.2.0
45
+ Requires-Dist: google-auth-oauthlib<2.0.0,>=1.2.0
42
46
  Requires-Dist: langchain<0.4.0,>=0.3.26
43
47
  Requires-Dist: langgraph<0.6.0,>=0.5.3
44
48
  Requires-Dist: weasel==0.4.1
@@ -0,0 +1,135 @@
1
+ aiecs/__init__.py,sha256=NjZbBge1ngw1XEAwUSHR0zmuJuW6-EmE5ecGuDgFzb4,1859
2
+ aiecs/__main__.py,sha256=AfQpzy3SgwWuP4DuymYcm4MISMuzqwhxxGSYo53PBvY,1035
3
+ aiecs/aiecs_client.py,sha256=2wzc_XVZvBaTABL2INLFiU_a1uf1xJ9NrL1GTcHOv7Y,17268
4
+ aiecs/main.py,sha256=J9UGndJ1hv9KvfdARvrcAhLG_u-gNY-1XDPySyThzc4,9911
5
+ aiecs/application/__init__.py,sha256=NkmrUH1DqxJ3vaVC8QwscNdlWqHfC7ZagL4k3nZ_qz4,192
6
+ aiecs/application/executors/__init__.py,sha256=WIl7L9HBsEhNfbNtJdvBvFUJXzESvNZVaiAA6tdtJcs,191
7
+ aiecs/application/executors/operation_executor.py,sha256=-7mFo1hUnWdehVPg0fnSiRhW3LACpIiyLSH-iu7bX4U,13818
8
+ aiecs/config/__init__.py,sha256=HykU6FgZrUx0w8V1_kAjP9NpXZTddZ9M3xo0fmBwMU8,336
9
+ aiecs/config/config.py,sha256=8Xm2x4Jgolx48tuGljzafQ3zXlxYPXT6-8M054V_UaQ,5345
10
+ aiecs/config/registry.py,sha256=5CPJcjeMu3FLc_keuCtJT60DtUxF6w-I68uIoxpcdq8,637
11
+ aiecs/core/__init__.py,sha256=H0ZIk96q0KHKivcobnUCVJdJZmewucVJ9MKhRgUxmk0,1037
12
+ aiecs/core/interface/__init__.py,sha256=soI7zdoN3eQynVb9uiwmgXkM5E75JYffTILktHb48x8,688
13
+ aiecs/core/interface/execution_interface.py,sha256=6bXruts8dyAg647lxPDQkF-cdJG1W8ZqpxFQ6hjVrd4,4810
14
+ aiecs/core/interface/storage_interface.py,sha256=F7GQEZ_ZiRWeen7oZO6A4S0nW0VORYsygk2BYLw5aiY,5680
15
+ aiecs/domain/__init__.py,sha256=8Oa2nluu-ch1dzlC75qdIeMOExxteUrBv41dvQO5oWo,3646
16
+ aiecs/domain/community/__init__.py,sha256=SxP6IVtG6ZO5LSwzFEzOKAWjjsKO91s2Xgbp92L4R2I,3606
17
+ aiecs/domain/community/agent_adapter.py,sha256=QAIex0ftCSNlyC9eZPAOLtwCsX6kJrxGoC6rMq0gqgc,16070
18
+ aiecs/domain/community/analytics.py,sha256=M7uwkS5DLSYc4OA3H26CkHJigj7BG7aMtihO8piLZLw,18316
19
+ aiecs/domain/community/collaborative_workflow.py,sha256=I7_xpot8y5FmMwx2K50aDZUsUrkAlpBrISPvdU7-_VA,18996
20
+ aiecs/domain/community/communication_hub.py,sha256=S_sik67GHFHpXvjKWT4TV7CctzTyzICvpB3a3Sj7SDA,20718
21
+ aiecs/domain/community/community_builder.py,sha256=DIF28QRJ3t4WhCi-6TnmieEOp0xFbYbsVsfWy5XWEt8,10671
22
+ aiecs/domain/community/community_integration.py,sha256=6DqyWQSVpOMUexyLWsp16SV0d0b4moz8UlhXSgg4h5Y,29950
23
+ aiecs/domain/community/community_manager.py,sha256=NaRd6CG-rCYS7Rlzvu-Af1-Nw2fO9lLhP3HiUtrvrys,29966
24
+ aiecs/domain/community/decision_engine.py,sha256=5CDByPlM6Q4lHbrVMSwAT4_J58YAN1tDVeJuQITJtUw,32286
25
+ aiecs/domain/community/exceptions.py,sha256=nGUuBjFWxBkK4AGyvvK--KD1zpv4IRE7vxY_Pf3w9gc,7824
26
+ aiecs/domain/community/resource_manager.py,sha256=Bgiuf0jG3YQKhm1tT0MuBt-EZfaE9fjwxHMiLjTd-q8,15918
27
+ aiecs/domain/community/shared_context_manager.py,sha256=KNXVG5aueQ_KifufDl3DdBZ5aeAiRn7_HGz3J5MPROs,20951
28
+ aiecs/domain/community/models/__init__.py,sha256=g2dEVByFjGSYwMjMZy3hqdfu4f_M9UGxEd28IhQy3mk,616
29
+ aiecs/domain/community/models/community_models.py,sha256=75h8lb1LmOVfpAw5Eh4_2djbSZkcvccKT_Ke1Xx573E,10094
30
+ aiecs/domain/context/__init__.py,sha256=Pah3fYH6q7OfRCVpMEfq_CzgZR0l0HUcXFzUEKy_1l0,1751
31
+ aiecs/domain/context/context_engine.py,sha256=Z9Xcp0CxEIKd0afZZQgdGO0mpYKll-qWgErWfIT-vnI,36986
32
+ aiecs/domain/context/conversation_models.py,sha256=GgHEZTnHs6U-ecfAJ-0GJUXF48AdXCw0O8Lb8BzQ3oU,13005
33
+ aiecs/domain/execution/__init__.py,sha256=usXYgPcS-j0CFBN5K1v1WuxQUHsgap3tsaZnDCcKVXs,216
34
+ aiecs/domain/execution/model.py,sha256=GEQLo8t6V4tvbY0mMuWb_YCNLfi809q_T_x16ZfoNQQ,1453
35
+ aiecs/domain/task/__init__.py,sha256=WtU0MPg3xpkKa4RUTbSEkppUxGdvn-ai_3UCRvMjLR8,226
36
+ aiecs/domain/task/dsl_processor.py,sha256=3QUxUK63BbUf1KG3ybcu_XkKXt-U8BuYvFjxDwVmpPs,20352
37
+ aiecs/domain/task/model.py,sha256=NLzXpNuVN1R08UP5wD--mnPi7CZEhvEVPbZCgpw2K2U,1670
38
+ aiecs/domain/task/task_context.py,sha256=waYuAKsdNZTg2orB_6cLbx0ZC-OBxvJLd-gj9bicKyY,10788
39
+ aiecs/infrastructure/__init__.py,sha256=dE-T4IQ0sQTekkMJGqX3HkaaWKJ4gSbq7IN1o8PMHYw,684
40
+ aiecs/infrastructure/messaging/__init__.py,sha256=KOEywSnktNWEN4O8_GE4KSopjMNEyfYhfUaTOkMxLUE,299
41
+ aiecs/infrastructure/messaging/celery_task_manager.py,sha256=yEKJdO_N9hYb3wlOnoVkBzWahvRj637tOkn4geIjPP0,12984
42
+ aiecs/infrastructure/messaging/websocket_manager.py,sha256=HhhLQw2hRV5Scc5HNMMZbAQGQp9QZBYPJQHulKwaeiI,11280
43
+ aiecs/infrastructure/monitoring/__init__.py,sha256=fQ13Q1MTIJTNlh35BSCqXpayCTM_kYvvPTMRzQfPymA,256
44
+ aiecs/infrastructure/monitoring/executor_metrics.py,sha256=z8KJpq6tfCOEArfR-YJ4UClTsef2mNMFuSDHrP51Aww,6040
45
+ aiecs/infrastructure/monitoring/structured_logger.py,sha256=iI895YHmPoaLdXjxHxd952PeTfGw6sh-yUDCnF8R7NY,1657
46
+ aiecs/infrastructure/monitoring/tracing_manager.py,sha256=g4u6paNCZCYdGDEMZiv4bYv_GTG0s8oug-BJgFmkDp0,13449
47
+ aiecs/infrastructure/persistence/__init__.py,sha256=yoog7fEHmhgY50vGdgDNqiZCPUUL2-xnJrdhT5PrPWU,570
48
+ aiecs/infrastructure/persistence/context_engine_client.py,sha256=KIzreimtg6WbuBYI4U0JTiRmNddpdpKHnGvuHVh86Hs,6051
49
+ aiecs/infrastructure/persistence/database_manager.py,sha256=MRkMTALeeybzAfnfuJrOXbEchBCrMAgsz8YYyEUVMjI,12592
50
+ aiecs/infrastructure/persistence/file_storage.py,sha256=d3tcV7Wg_-TGsbw3PY9ttNANntR5rIo7mBgE0CGXKZQ,23321
51
+ aiecs/infrastructure/persistence/redis_client.py,sha256=CqPtYFP8-KHl3cJG9VHun9YFFSp3kCc3ZaZbW7GlqUU,5791
52
+ aiecs/llm/__init__.py,sha256=INfMR-xeQ0K53iXf_LRMVdo-hDXooIoAcmXRemLWmjQ,1150
53
+ aiecs/llm/base_client.py,sha256=R4B-KBJ0aCEuvni5XwHd6sR3XNYQF3q1ZycgQvCJUfk,3275
54
+ aiecs/llm/client_factory.py,sha256=qvQXo0kIcGC6SzIE7xfCN0f7CcGNKPwauFq2mTUP0SA,13718
55
+ aiecs/llm/custom_callbacks.py,sha256=qwNwWqBl8EYj2aY16zXChZKLpxZahU9QeY4p57uZ5YU,9933
56
+ aiecs/llm/googleai_client.py,sha256=4cJuhdzzn-svM7NLnYASYsnV2P758EeD5_ljVZu_XFc,6213
57
+ aiecs/llm/openai_client.py,sha256=T3-LMDV-bzv0fwyDCw6h9D2XbNbWd0dt-QmjKg-wkd0,4397
58
+ aiecs/llm/vertex_client.py,sha256=DSKyTwlhpOVTXfCTgTD7NholVFtVm7F5qmHk8p8X1Po,10823
59
+ aiecs/llm/xai_client.py,sha256=VYfBGD8ns6NHscT68DDmAmvwBMEVykLQufH8kFNf_L8,6809
60
+ aiecs/scripts/__init__.py,sha256=cVxQ5iqym520eDQSpV7B6hWolndCLMOVdvhC_D280PE,66
61
+ aiecs/scripts/aid/VERSION_MANAGEMENT.md,sha256=ElbRZFB9KdnDt9Lc4SQWLNY_3NbnLsl2ZHvLmczh2qw,2497
62
+ aiecs/scripts/aid/__init__.py,sha256=nWdqTPA9pib6NGqckhYHYTwuO70TPkW02eV-e3u5i4w,345
63
+ aiecs/scripts/aid/version_manager.py,sha256=npS9CcIgLtpqlBNBHYYatzTRWLh7B5a1_qtmz0Rl19g,7892
64
+ aiecs/scripts/dependance_check/DEPENDENCY_SYSTEM_SUMMARY.md,sha256=u2OLwmXaRGuTwEfj3jQ_yzAO_Z49P1CBC1pV3iULuoE,5866
65
+ aiecs/scripts/dependance_check/README_DEPENDENCY_CHECKER.md,sha256=7sAyeiMN7I-RsTOudo_JO2CTbC5ObEV0z_YyGtjiMcI,6003
66
+ aiecs/scripts/dependance_check/__init__.py,sha256=7pKdYHifao3HnihRr73QJbouoVIMA8cY1n6eu9r7uB0,510
67
+ aiecs/scripts/dependance_check/dependency_checker.py,sha256=XVBQQrPPyif7mfq4P7vs0IkmtiAddb9aSTtJCxyI_18,33837
68
+ aiecs/scripts/dependance_check/dependency_fixer.py,sha256=yXp5uj2elXGUrEco8_42nsD9VlUGSsyaG-qiMoF5Ab0,13962
69
+ aiecs/scripts/dependance_check/download_nlp_data.py,sha256=vliJno3w8HpQfsvLkccvFM8DNNQHxfKPQ4WhsmKa5UY,12174
70
+ aiecs/scripts/dependance_check/quick_dependency_check.py,sha256=KUDhwuPocaH2jYPCBfNVF0o1dtINAVf__UcQV-ZYswQ,9828
71
+ aiecs/scripts/dependance_check/setup_nlp_data.sh,sha256=CqO-bLVc_mLhNpsSoXZjvJKhtLUbA_gYBqfp3nzUuRI,5843
72
+ aiecs/scripts/dependance_patch/__init__.py,sha256=DH0TzNwguzHDQJxz7Ijq5_g04vW1u1yZGrnacN4QsiM,89
73
+ aiecs/scripts/dependance_patch/fix_weasel/README_WEASEL_PATCH.md,sha256=h0e3Xy6FArLgjika3pRZRhZRbyuj6iLzTU-AhHkWE7M,3581
74
+ aiecs/scripts/dependance_patch/fix_weasel/__init__.py,sha256=BhOw-8hAZ7dIDj7K0mf8TOSjEMJJi714VPeLAgPbInY,189
75
+ aiecs/scripts/dependance_patch/fix_weasel/fix_weasel_validator.py,sha256=w_s2VTIAgWPi-3VUXlrINBkLm9765QHdRf4g5RzBUug,4073
76
+ aiecs/scripts/dependance_patch/fix_weasel/fix_weasel_validator.sh,sha256=XqV3Yx1wi23dWXDbofFK6_SU0BVLr9E1HaIudIuem7Q,2736
77
+ aiecs/scripts/dependance_patch/fix_weasel/patch_weasel_library.sh,sha256=6OcbuJWLv8DDeKPgVrV4wG9UIm5ppN-y-OQPSBD9pSg,5491
78
+ aiecs/scripts/dependance_patch/fix_weasel/run_weasel_patch.sh,sha256=bwyFyeaITwDmG2_3HsTd7PHeexahh6MhEZwUuAC_85c,1233
79
+ aiecs/scripts/tools_develop/README.md,sha256=X32w4F71ztiYxjSnZ3WHhTWYSverghT2DeCV6Mu8MRI,8861
80
+ aiecs/scripts/tools_develop/__init__.py,sha256=caq5QUxj6mECXr3pqaS3eHJ56pS_fXyEteP__C9PEVE,389
81
+ aiecs/scripts/tools_develop/check_type_annotations.py,sha256=jPCS_D9wKLtE41gXSHR6V8sRdHsSHCUIDuxWK4Q6m6I,8131
82
+ aiecs/scripts/tools_develop/validate_tool_schemas.py,sha256=k-Kz_6b4CBTHQ7OAvUxKl4ek8jQ6Trr2cbLk0egC0m8,11753
83
+ aiecs/tasks/__init__.py,sha256=__xkKqXWQ24FkySb8xtsCCJYLKnqmHKbAnojxeELEiE,90
84
+ aiecs/tasks/worker.py,sha256=5cBeP2IyvwDe6tIhkiv6LfyQz41IFZ1S3Fr6IdNKP6Q,4298
85
+ aiecs/tools/__init__.py,sha256=QNAUwjKmuxfTZJ_PgttkzQxknnIU9LjbSNAmn56Qyxo,7216
86
+ aiecs/tools/base_tool.py,sha256=1dndT1M5PAU3Cw-gE9vAIKACiq6na6CAUPIefAeALc4,6901
87
+ aiecs/tools/langchain_adapter.py,sha256=HYCSPnn6Q8cdBjCGcdUSa8jgUoaOqvYpAIlPcugaq-U,15647
88
+ aiecs/tools/schema_generator.py,sha256=UvHEtl7bj7_rxKpC9eqjqPzfzKGqD4qsKhotXCXxVx0,8491
89
+ aiecs/tools/temp_file_manager.py,sha256=_ipPCMKT5twYjtLJucOnhIyqtKEtSquKqx-xasKu_ks,4679
90
+ aiecs/tools/docs/__init__.py,sha256=noxpoRVQd9AmHntOkTJUp_kcivyoKrh2E5pdVC6bmB4,3754
91
+ aiecs/tools/docs/ai_document_orchestrator.py,sha256=x0lVIyw8LRzZY2Y1bn8eiUgdMhWJ2j0EZ40GQDYqJGU,24705
92
+ aiecs/tools/docs/ai_document_writer_orchestrator.py,sha256=Q2P4313JQYOYjpBchQMKof-zysCJJxiYDu__L516dxE,97397
93
+ aiecs/tools/docs/content_insertion_tool.py,sha256=iQvNDnmA4XBg7RT8o04vqhc-cZmZ_bsfYMFe9ankHZY,49351
94
+ aiecs/tools/docs/document_creator_tool.py,sha256=QLHKEBvZjtDSgaT1a0a7SrjbPlfSJyVfKYX8u_x2smg,39413
95
+ aiecs/tools/docs/document_layout_tool.py,sha256=L5ZyFyShNX6FW1e374m21ZpvNs8eZsmj8l85LFRq2xo,45234
96
+ aiecs/tools/docs/document_parser_tool.py,sha256=TuECotyEh9lirZ2L3-lixBTTvhJtJpNTt188z8GIejw,38366
97
+ aiecs/tools/docs/document_writer_tool.py,sha256=BPfBiv2D9NSdjDD_ByFTfiYTqTSexSNWBmj_gfLpA9c,69061
98
+ aiecs/tools/statistics/__init__.py,sha256=n860-PFT7OET2V1UAFXW-GBDs6jSTUGAqyJb_Be2RKM,3021
99
+ aiecs/tools/statistics/ai_data_analysis_orchestrator.py,sha256=JdlSTuHQAhjRwCU9LP9ArCeVJZ7Q_M4Gu9rVqjzH-X8,22675
100
+ aiecs/tools/statistics/ai_insight_generator_tool.py,sha256=O9nHUhhOBlQrCRYhBMBgOdzL8ORWyCd1dTuH0AY6JWc,19364
101
+ aiecs/tools/statistics/ai_report_orchestrator_tool.py,sha256=3nXMXYGt9Z0EmRMVUbvMRJGjlIZgKoLSNlTVmTcdSTo,25024
102
+ aiecs/tools/statistics/data_loader_tool.py,sha256=Are7n1KX3_rSuxr1TKunQugUfd1GgPpeWhDriLO7NV4,20175
103
+ aiecs/tools/statistics/data_profiler_tool.py,sha256=tV_O53IN-XMMctT5VmeynFfZ4x2j6pIYpl7DYS_xwWE,24162
104
+ aiecs/tools/statistics/data_transformer_tool.py,sha256=LwrXNTU6a1DXDf2Xb6RuB2yGvz1NV9cJ-gwy7oVPsTk,21112
105
+ aiecs/tools/statistics/data_visualizer_tool.py,sha256=eZl5u73HYCFh3RYKzWl85KQz9bfHvYWlYujccA8mDdA,17852
106
+ aiecs/tools/statistics/model_trainer_tool.py,sha256=4c4j7tAcKqdCcOSy_Xq6_jYcTyIr5UjvlRVLWg7fb6A,18108
107
+ aiecs/tools/statistics/statistical_analyzer_tool.py,sha256=SbmvpjKVTRqLvVSYnkG5oMb_HwqfbkNT_Y7-n2494Ss,16982
108
+ aiecs/tools/task_tools/__init__.py,sha256=hzsGoRmqX_gZcutXKynCLi6esBPXCx--cRkZVxaXAIA,2693
109
+ aiecs/tools/task_tools/chart_tool.py,sha256=zW70vcsa8ZnlmWuqUNgh1Q1hAyY23FJuaKMP6-ERlkg,26475
110
+ aiecs/tools/task_tools/classfire_tool.py,sha256=UKlnRD3KjbU3ZhWuplP6BTuv6wcjt-7XBftlGZF6hcE,31950
111
+ aiecs/tools/task_tools/image_tool.py,sha256=KQfOapYsnqrq-WJNPZr8yjw2-IuNqCeYecYR8jTRYG8,14850
112
+ aiecs/tools/task_tools/office_tool.py,sha256=Kym07pWhwi54LQCZwUaPqe3ZV7WGOXOnL2yCUvq-7w4,23476
113
+ aiecs/tools/task_tools/pandas_tool.py,sha256=CZ_TiADK_Fjq3lIBYi-Tifga3ZOMoLqavIxZUxJIDTU,24817
114
+ aiecs/tools/task_tools/report_tool.py,sha256=xdvkhI97GHRHDb8g-xWlwzdDz20HBB36djg7eNgZtc4,23550
115
+ aiecs/tools/task_tools/research_tool.py,sha256=teF5PxwzmTdoJ4f1EHWeO6PmwI8p7n5YrG2h7FG-PKQ,15350
116
+ aiecs/tools/task_tools/scraper_tool.py,sha256=OquSAWrCHauWYJGyFoSD5hJwmWbSeBCYFLbZbEVwC4M,24628
117
+ aiecs/tools/task_tools/search_tool.py,sha256=UJNSZwAw8BXECrH_PmyPYQ_ezv65RcuNxBZrgjp4pIA,37142
118
+ aiecs/tools/task_tools/stats_tool.py,sha256=Z5VtdlToioFpgslaBr9aJO7cZn4pBZ5J9TiX2DmxI9s,24302
119
+ aiecs/tools/tool_executor/__init__.py,sha256=gxuujSlQFj8DQ9ejCisO_cYqk5GQkJnwv0sJERd80CM,711
120
+ aiecs/tools/tool_executor/tool_executor.py,sha256=fuoKQahLBgRT6AQbHuOCLzG53w4UAD-QTraGjraEEsw,19496
121
+ aiecs/utils/LLM_output_structor.py,sha256=zKkOhrg6smToD0NTCqj3OepBQDTZXgPK4VsKJEFgxyg,15793
122
+ aiecs/utils/__init__.py,sha256=PkukDzRaeeAJUmfm9vA9ez1l3tjvhDRnWZCqzWI6nNw,562
123
+ aiecs/utils/base_callback.py,sha256=UpNrOZZ1RCmiVPnuhjFNde_m29yWg1ID16vzfzBMk7U,1661
124
+ aiecs/utils/execution_utils.py,sha256=uQoUcLKAbmkcMhucdhngrAfeXE6DvuG26qIx4wyx2fo,5871
125
+ aiecs/utils/logging.py,sha256=kvZ9OjFChfLN_2MEGvIDBK3trPAhikkh87rK49vN3bU,29
126
+ aiecs/utils/prompt_loader.py,sha256=cBS2bZXpYQOWSiOGkhwIzyy3_bETqwIblRi_9qQT9iQ,423
127
+ aiecs/utils/token_usage_repository.py,sha256=1xjenLYwC0YT6lKZFEGO4scRCXLuWdec2MWjzih5SZY,10210
128
+ aiecs/ws/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
129
+ aiecs/ws/socket_server.py,sha256=j_9idVY_rWlTsF51FgmuhWCWFVt7_gAHL8vNg3IxV5g,1476
130
+ aiecs-1.2.0.dist-info/licenses/LICENSE,sha256=_1YRaIS0eZu1pv6xfz245UkU0i1Va2B841hv3OWRwqg,12494
131
+ aiecs-1.2.0.dist-info/METADATA,sha256=XhuEwMPhkgzBUrSsh-jgfeqDySzA1cc9OmJSAr3-uAU,16635
132
+ aiecs-1.2.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
133
+ aiecs-1.2.0.dist-info/entry_points.txt,sha256=TfLBuwLOfgQqKvnoF1sgTS19-Hgl0aWvCZjIdblIiig,667
134
+ aiecs-1.2.0.dist-info/top_level.txt,sha256=22IlUlOqh9Ni3jXlQNMNUqzbW8dcxXPeR_EQ-BJVcV8,6
135
+ aiecs-1.2.0.dist-info/RECORD,,
@@ -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
@@ -1,7 +0,0 @@
1
- from aiecs.tools import register_tool
2
- from aiecs.tools.base_tool import BaseTool
3
-
4
- @register_tool("search_api")
5
- class SearchAPITool(BaseTool):
6
- def run(self, query):
7
- return f"[Search results for '{query}']"
@@ -1,98 +0,0 @@
1
- aiecs/__init__.py,sha256=zpnR1q-oVV0A33XKQ9SL8BUKjPJ_9Q8aYExfTgRFIhI,1859
2
- aiecs/__main__.py,sha256=AfQpzy3SgwWuP4DuymYcm4MISMuzqwhxxGSYo53PBvY,1035
3
- aiecs/aiecs_client.py,sha256=gJbCY6zuHR9TZPCgHhxd-d4CwCW9P_lUrtTSC5-ADWE,10527
4
- aiecs/main.py,sha256=cULUXEONsei-2jl7Y8YCAYoyCvJEpoTgt-i3mY9p3JU,9306
5
- aiecs/application/__init__.py,sha256=NkmrUH1DqxJ3vaVC8QwscNdlWqHfC7ZagL4k3nZ_qz4,192
6
- aiecs/application/executors/__init__.py,sha256=WIl7L9HBsEhNfbNtJdvBvFUJXzESvNZVaiAA6tdtJcs,191
7
- aiecs/application/executors/operation_executor.py,sha256=-7mFo1hUnWdehVPg0fnSiRhW3LACpIiyLSH-iu7bX4U,13818
8
- aiecs/config/__init__.py,sha256=HykU6FgZrUx0w8V1_kAjP9NpXZTddZ9M3xo0fmBwMU8,336
9
- aiecs/config/config.py,sha256=L37G1xOQggnuHgYp9uOvbFsGlXI3JzHgZZ8mZpQVyGo,5065
10
- aiecs/config/registry.py,sha256=5CPJcjeMu3FLc_keuCtJT60DtUxF6w-I68uIoxpcdq8,637
11
- aiecs/core/__init__.py,sha256=H0ZIk96q0KHKivcobnUCVJdJZmewucVJ9MKhRgUxmk0,1037
12
- aiecs/core/interface/__init__.py,sha256=soI7zdoN3eQynVb9uiwmgXkM5E75JYffTILktHb48x8,688
13
- aiecs/core/interface/execution_interface.py,sha256=6bXruts8dyAg647lxPDQkF-cdJG1W8ZqpxFQ6hjVrd4,4810
14
- aiecs/core/interface/storage_interface.py,sha256=F7GQEZ_ZiRWeen7oZO6A4S0nW0VORYsygk2BYLw5aiY,5680
15
- aiecs/domain/__init__.py,sha256=fwcoCiZxcRmXPhRUEiYVYdY9QAB29Dmst1oPJC9jYvU,875
16
- aiecs/domain/community/collaborative_workflow.py,sha256=XheSSBzEOQM9bT1cPd2CJD9q-ORNe-oMedVGEnM1teM,15441
17
- aiecs/domain/community/community_integration.py,sha256=Xy4bRy7S4IqIHl2sWIclb_k8ZqAhAs8nnAxdxQnYE7s,16219
18
- aiecs/domain/community/community_manager.py,sha256=D-HrQTXO-uu9MK6Utr9aCVlQug0UAJc3eYamecQZulc,12119
19
- aiecs/domain/community/decision_engine.py,sha256=QZnSo0KxHk8HclUiB2sTYUI-H26ZI48StYXVIssO5kA,13389
20
- aiecs/domain/community/resource_manager.py,sha256=REWe6dSzxzWIxW-Xu07k3n8wSGfTw4frPWSfEW50t70,15912
21
- aiecs/domain/community/models/community_models.py,sha256=75h8lb1LmOVfpAw5Eh4_2djbSZkcvccKT_Ke1Xx573E,10094
22
- aiecs/domain/context/__init__.py,sha256=FfKatEwU5-REwBNdVRtWUXYqhdAFD2O4sKafnS5sG8M,864
23
- aiecs/domain/context/context_engine.py,sha256=HiUMAsUYx9ts242JzPZ0nJ9YjOYNpTnBY2lFI5RQ2FI,36439
24
- aiecs/domain/context/conversation_models.py,sha256=GgHEZTnHs6U-ecfAJ-0GJUXF48AdXCw0O8Lb8BzQ3oU,13005
25
- aiecs/domain/execution/__init__.py,sha256=usXYgPcS-j0CFBN5K1v1WuxQUHsgap3tsaZnDCcKVXs,216
26
- aiecs/domain/execution/model.py,sha256=GEQLo8t6V4tvbY0mMuWb_YCNLfi809q_T_x16ZfoNQQ,1453
27
- aiecs/domain/task/__init__.py,sha256=WtU0MPg3xpkKa4RUTbSEkppUxGdvn-ai_3UCRvMjLR8,226
28
- aiecs/domain/task/dsl_processor.py,sha256=3QUxUK63BbUf1KG3ybcu_XkKXt-U8BuYvFjxDwVmpPs,20352
29
- aiecs/domain/task/model.py,sha256=NLzXpNuVN1R08UP5wD--mnPi7CZEhvEVPbZCgpw2K2U,1670
30
- aiecs/domain/task/task_context.py,sha256=waYuAKsdNZTg2orB_6cLbx0ZC-OBxvJLd-gj9bicKyY,10788
31
- aiecs/infrastructure/__init__.py,sha256=dE-T4IQ0sQTekkMJGqX3HkaaWKJ4gSbq7IN1o8PMHYw,684
32
- aiecs/infrastructure/messaging/__init__.py,sha256=KOEywSnktNWEN4O8_GE4KSopjMNEyfYhfUaTOkMxLUE,299
33
- aiecs/infrastructure/messaging/celery_task_manager.py,sha256=yEKJdO_N9hYb3wlOnoVkBzWahvRj637tOkn4geIjPP0,12984
34
- aiecs/infrastructure/messaging/websocket_manager.py,sha256=HhhLQw2hRV5Scc5HNMMZbAQGQp9QZBYPJQHulKwaeiI,11280
35
- aiecs/infrastructure/monitoring/__init__.py,sha256=fQ13Q1MTIJTNlh35BSCqXpayCTM_kYvvPTMRzQfPymA,256
36
- aiecs/infrastructure/monitoring/executor_metrics.py,sha256=z8KJpq6tfCOEArfR-YJ4UClTsef2mNMFuSDHrP51Aww,6040
37
- aiecs/infrastructure/monitoring/structured_logger.py,sha256=iI895YHmPoaLdXjxHxd952PeTfGw6sh-yUDCnF8R7NY,1657
38
- aiecs/infrastructure/monitoring/tracing_manager.py,sha256=g4u6paNCZCYdGDEMZiv4bYv_GTG0s8oug-BJgFmkDp0,13449
39
- aiecs/infrastructure/persistence/__init__.py,sha256=yoog7fEHmhgY50vGdgDNqiZCPUUL2-xnJrdhT5PrPWU,570
40
- aiecs/infrastructure/persistence/context_engine_client.py,sha256=KIzreimtg6WbuBYI4U0JTiRmNddpdpKHnGvuHVh86Hs,6051
41
- aiecs/infrastructure/persistence/database_manager.py,sha256=MRkMTALeeybzAfnfuJrOXbEchBCrMAgsz8YYyEUVMjI,12592
42
- aiecs/infrastructure/persistence/file_storage.py,sha256=d3tcV7Wg_-TGsbw3PY9ttNANntR5rIo7mBgE0CGXKZQ,23321
43
- aiecs/infrastructure/persistence/redis_client.py,sha256=CqPtYFP8-KHl3cJG9VHun9YFFSp3kCc3ZaZbW7GlqUU,5791
44
- aiecs/llm/__init__.py,sha256=INfMR-xeQ0K53iXf_LRMVdo-hDXooIoAcmXRemLWmjQ,1150
45
- aiecs/llm/base_client.py,sha256=R4B-KBJ0aCEuvni5XwHd6sR3XNYQF3q1ZycgQvCJUfk,3275
46
- aiecs/llm/client_factory.py,sha256=qvQXo0kIcGC6SzIE7xfCN0f7CcGNKPwauFq2mTUP0SA,13718
47
- aiecs/llm/custom_callbacks.py,sha256=qwNwWqBl8EYj2aY16zXChZKLpxZahU9QeY4p57uZ5YU,9933
48
- aiecs/llm/googleai_client.py,sha256=4cJuhdzzn-svM7NLnYASYsnV2P758EeD5_ljVZu_XFc,6213
49
- aiecs/llm/openai_client.py,sha256=T3-LMDV-bzv0fwyDCw6h9D2XbNbWd0dt-QmjKg-wkd0,4397
50
- aiecs/llm/vertex_client.py,sha256=DSKyTwlhpOVTXfCTgTD7NholVFtVm7F5qmHk8p8X1Po,10823
51
- aiecs/llm/xai_client.py,sha256=VYfBGD8ns6NHscT68DDmAmvwBMEVykLQufH8kFNf_L8,6809
52
- aiecs/scripts/DEPENDENCY_SYSTEM_SUMMARY.md,sha256=u2OLwmXaRGuTwEfj3jQ_yzAO_Z49P1CBC1pV3iULuoE,5866
53
- aiecs/scripts/README_DEPENDENCY_CHECKER.md,sha256=7sAyeiMN7I-RsTOudo_JO2CTbC5ObEV0z_YyGtjiMcI,6003
54
- aiecs/scripts/README_WEASEL_PATCH.md,sha256=h0e3Xy6FArLgjika3pRZRhZRbyuj6iLzTU-AhHkWE7M,3581
55
- aiecs/scripts/__init__.py,sha256=cVxQ5iqym520eDQSpV7B6hWolndCLMOVdvhC_D280PE,66
56
- aiecs/scripts/dependency_checker.py,sha256=XVBQQrPPyif7mfq4P7vs0IkmtiAddb9aSTtJCxyI_18,33837
57
- aiecs/scripts/dependency_fixer.py,sha256=yXp5uj2elXGUrEco8_42nsD9VlUGSsyaG-qiMoF5Ab0,13962
58
- aiecs/scripts/download_nlp_data.py,sha256=P2ObKS2P7oGCQU257mByU8Ca4-UXpfH8ZrgOUYT12Ys,10985
59
- aiecs/scripts/fix_weasel_validator.py,sha256=w_s2VTIAgWPi-3VUXlrINBkLm9765QHdRf4g5RzBUug,4073
60
- aiecs/scripts/fix_weasel_validator.sh,sha256=XqV3Yx1wi23dWXDbofFK6_SU0BVLr9E1HaIudIuem7Q,2736
61
- aiecs/scripts/patch_weasel_library.sh,sha256=6OcbuJWLv8DDeKPgVrV4wG9UIm5ppN-y-OQPSBD9pSg,5491
62
- aiecs/scripts/quick_dependency_check.py,sha256=KUDhwuPocaH2jYPCBfNVF0o1dtINAVf__UcQV-ZYswQ,9828
63
- aiecs/scripts/run_weasel_patch.sh,sha256=bwyFyeaITwDmG2_3HsTd7PHeexahh6MhEZwUuAC_85c,1233
64
- aiecs/scripts/setup_nlp_data.sh,sha256=CqO-bLVc_mLhNpsSoXZjvJKhtLUbA_gYBqfp3nzUuRI,5843
65
- aiecs/tasks/__init__.py,sha256=__xkKqXWQ24FkySb8xtsCCJYLKnqmHKbAnojxeELEiE,90
66
- aiecs/tasks/worker.py,sha256=5cBeP2IyvwDe6tIhkiv6LfyQz41IFZ1S3Fr6IdNKP6Q,4298
67
- aiecs/tools/__init__.py,sha256=LwXSVLYP67Sa6fYpVSYPaUF5tvbX4I9zm3cW2JGHI1U,6285
68
- aiecs/tools/base_tool.py,sha256=1dndT1M5PAU3Cw-gE9vAIKACiq6na6CAUPIefAeALc4,6901
69
- aiecs/tools/langchain_adapter.py,sha256=Yn8kOuaF8hoXAYBWUSfagHbzF8ecvQGbYrp-q0E3b_E,13316
70
- aiecs/tools/temp_file_manager.py,sha256=_ipPCMKT5twYjtLJucOnhIyqtKEtSquKqx-xasKu_ks,4679
71
- aiecs/tools/task_tools/__init__.py,sha256=hzsGoRmqX_gZcutXKynCLi6esBPXCx--cRkZVxaXAIA,2693
72
- aiecs/tools/task_tools/chart_tool.py,sha256=C7fM8WvBkyQgNCg5xGndXUF6nNfY7lQjYj8l9DnPAq0,26442
73
- aiecs/tools/task_tools/classfire_tool.py,sha256=UKlnRD3KjbU3ZhWuplP6BTuv6wcjt-7XBftlGZF6hcE,31950
74
- aiecs/tools/task_tools/image_tool.py,sha256=0VgFSKIeX4tXge7GnJQoouvECjJJQmRBIn0aponlrMg,15024
75
- aiecs/tools/task_tools/office_tool.py,sha256=FW9EUnCHmT_YiT9wfWrbgvmaOrALXYNJrqI2bvEu6lM,23169
76
- aiecs/tools/task_tools/pandas_tool.py,sha256=762Nz-2s3l5sdDXFRriK2F22I_k_nkELaX1sDAtCpwk,24892
77
- aiecs/tools/task_tools/report_tool.py,sha256=ZoETHFpO3UOD_JH7LBZZlyZY8A7DHHgSbYY8QPT95Wk,23567
78
- aiecs/tools/task_tools/research_tool.py,sha256=JXPmC5Gg2SbZWG56e3fkZo-lYgG3h_XfYJUjEtXOceQ,15557
79
- aiecs/tools/task_tools/scraper_tool.py,sha256=tlnPYFgS_Nbil05yuTZsooggDU1B3nnQ3LhA9pT8ffY,24712
80
- aiecs/tools/task_tools/search_api.py,sha256=NIqZE5jaEKUIGTjSToxYzVfTB4xMmFX4yYNgp5tOm_w,217
81
- aiecs/tools/task_tools/stats_tool.py,sha256=IUAhs5wUi1dknEha8twCT_m3MF4ZTqod3TDAFslfaF8,24300
82
- aiecs/tools/tool_executor/__init__.py,sha256=gxuujSlQFj8DQ9ejCisO_cYqk5GQkJnwv0sJERd80CM,711
83
- aiecs/tools/tool_executor/tool_executor.py,sha256=fuoKQahLBgRT6AQbHuOCLzG53w4UAD-QTraGjraEEsw,19496
84
- aiecs/utils/LLM_output_structor.py,sha256=zKkOhrg6smToD0NTCqj3OepBQDTZXgPK4VsKJEFgxyg,15793
85
- aiecs/utils/__init__.py,sha256=PkukDzRaeeAJUmfm9vA9ez1l3tjvhDRnWZCqzWI6nNw,562
86
- aiecs/utils/base_callback.py,sha256=UpNrOZZ1RCmiVPnuhjFNde_m29yWg1ID16vzfzBMk7U,1661
87
- aiecs/utils/execution_utils.py,sha256=uQoUcLKAbmkcMhucdhngrAfeXE6DvuG26qIx4wyx2fo,5871
88
- aiecs/utils/logging.py,sha256=kvZ9OjFChfLN_2MEGvIDBK3trPAhikkh87rK49vN3bU,29
89
- aiecs/utils/prompt_loader.py,sha256=cBS2bZXpYQOWSiOGkhwIzyy3_bETqwIblRi_9qQT9iQ,423
90
- aiecs/utils/token_usage_repository.py,sha256=1xjenLYwC0YT6lKZFEGO4scRCXLuWdec2MWjzih5SZY,10210
91
- aiecs/ws/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
92
- aiecs/ws/socket_server.py,sha256=j_9idVY_rWlTsF51FgmuhWCWFVt7_gAHL8vNg3IxV5g,1476
93
- aiecs-1.0.8.dist-info/licenses/LICENSE,sha256=_1YRaIS0eZu1pv6xfz245UkU0i1Va2B841hv3OWRwqg,12494
94
- aiecs-1.0.8.dist-info/METADATA,sha256=BPAOsiV6ijKvWuNY9IFR6zZfpRdHWsZgs66v0J73HM4,16437
95
- aiecs-1.0.8.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
96
- aiecs-1.0.8.dist-info/entry_points.txt,sha256=0Bj2pSaZM-ADKTktbCQ0KQxRe0s8mQFKVsg3IGDJGqA,342
97
- aiecs-1.0.8.dist-info/top_level.txt,sha256=22IlUlOqh9Ni3jXlQNMNUqzbW8dcxXPeR_EQ-BJVcV8,6
98
- aiecs-1.0.8.dist-info/RECORD,,
@@ -1,7 +0,0 @@
1
- [console_scripts]
2
- aiecs = aiecs.__main__:main
3
- aiecs-check-deps = aiecs.scripts.dependency_checker:main
4
- aiecs-download-nlp-data = aiecs.scripts.download_nlp_data:main
5
- aiecs-fix-deps = aiecs.scripts.dependency_fixer:main
6
- aiecs-patch-weasel = aiecs.scripts.fix_weasel_validator:main
7
- aiecs-quick-check = aiecs.scripts.quick_dependency_check:main
File without changes