aiecs 1.1.0__py3-none-any.whl → 1.2.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.
Potentially problematic release.
This version of aiecs might be problematic. Click here for more details.
- aiecs/__init__.py +1 -1
- aiecs/aiecs_client.py +1 -1
- aiecs/config/config.py +38 -0
- aiecs/domain/__init__.py +95 -0
- aiecs/domain/community/__init__.py +159 -0
- aiecs/domain/community/agent_adapter.py +516 -0
- aiecs/domain/community/analytics.py +465 -0
- aiecs/domain/community/collaborative_workflow.py +99 -7
- aiecs/domain/community/communication_hub.py +649 -0
- aiecs/domain/community/community_builder.py +322 -0
- aiecs/domain/community/community_integration.py +365 -12
- aiecs/domain/community/community_manager.py +481 -5
- aiecs/domain/community/decision_engine.py +459 -13
- aiecs/domain/community/exceptions.py +238 -0
- aiecs/domain/community/models/__init__.py +36 -0
- aiecs/domain/community/resource_manager.py +1 -1
- aiecs/domain/community/shared_context_manager.py +621 -0
- aiecs/domain/context/context_engine.py +37 -33
- aiecs/infrastructure/monitoring/__init__.py +22 -0
- aiecs/infrastructure/monitoring/global_metrics_manager.py +207 -0
- aiecs/infrastructure/persistence/file_storage.py +41 -28
- aiecs/llm/__init__.py +44 -7
- aiecs/llm/callbacks/__init__.py +12 -0
- aiecs/llm/{custom_callbacks.py → callbacks/custom_callbacks.py} +1 -1
- aiecs/llm/client_factory.py +23 -6
- aiecs/llm/clients/__init__.py +35 -0
- aiecs/llm/{base_client.py → clients/base_client.py} +73 -1
- aiecs/llm/{googleai_client.py → clients/googleai_client.py} +19 -15
- aiecs/llm/{openai_client.py → clients/openai_client.py} +9 -14
- aiecs/llm/{vertex_client.py → clients/vertex_client.py} +15 -15
- aiecs/llm/{xai_client.py → clients/xai_client.py} +36 -50
- aiecs/llm/config/__init__.py +54 -0
- aiecs/llm/config/config_loader.py +275 -0
- aiecs/llm/config/config_validator.py +237 -0
- aiecs/llm/config/model_config.py +132 -0
- aiecs/llm/utils/__init__.py +11 -0
- aiecs/llm/utils/validate_config.py +91 -0
- aiecs/main.py +32 -2
- aiecs/scripts/aid/VERSION_MANAGEMENT.md +97 -0
- aiecs/scripts/aid/__init__.py +15 -0
- aiecs/scripts/aid/version_manager.py +224 -0
- aiecs/scripts/dependance_check/download_nlp_data.py +1 -0
- aiecs/tools/__init__.py +23 -23
- aiecs/tools/docs/__init__.py +5 -2
- aiecs/tools/docs/ai_document_orchestrator.py +39 -26
- aiecs/tools/docs/ai_document_writer_orchestrator.py +61 -38
- aiecs/tools/docs/content_insertion_tool.py +48 -28
- aiecs/tools/docs/document_creator_tool.py +47 -29
- aiecs/tools/docs/document_layout_tool.py +35 -20
- aiecs/tools/docs/document_parser_tool.py +56 -36
- aiecs/tools/docs/document_writer_tool.py +115 -62
- aiecs/tools/schema_generator.py +56 -56
- aiecs/tools/statistics/__init__.py +82 -0
- aiecs/tools/statistics/ai_data_analysis_orchestrator.py +581 -0
- aiecs/tools/statistics/ai_insight_generator_tool.py +473 -0
- aiecs/tools/statistics/ai_report_orchestrator_tool.py +629 -0
- aiecs/tools/statistics/data_loader_tool.py +518 -0
- aiecs/tools/statistics/data_profiler_tool.py +599 -0
- aiecs/tools/statistics/data_transformer_tool.py +531 -0
- aiecs/tools/statistics/data_visualizer_tool.py +460 -0
- aiecs/tools/statistics/model_trainer_tool.py +470 -0
- aiecs/tools/statistics/statistical_analyzer_tool.py +426 -0
- aiecs/tools/task_tools/chart_tool.py +2 -1
- aiecs/tools/task_tools/image_tool.py +43 -43
- aiecs/tools/task_tools/office_tool.py +39 -36
- aiecs/tools/task_tools/pandas_tool.py +37 -33
- aiecs/tools/task_tools/report_tool.py +67 -56
- aiecs/tools/task_tools/research_tool.py +32 -31
- aiecs/tools/task_tools/scraper_tool.py +53 -46
- aiecs/tools/task_tools/search_tool.py +1123 -0
- aiecs/tools/task_tools/stats_tool.py +20 -15
- aiecs/tools/tool_executor/__init__.py +2 -2
- aiecs/tools/tool_executor/tool_executor.py +3 -3
- {aiecs-1.1.0.dist-info → aiecs-1.2.1.dist-info}/METADATA +5 -1
- aiecs-1.2.1.dist-info/RECORD +144 -0
- {aiecs-1.1.0.dist-info → aiecs-1.2.1.dist-info}/entry_points.txt +1 -0
- aiecs/tools/task_tools/search_api.py +0 -7
- aiecs-1.1.0.dist-info/RECORD +0 -114
- {aiecs-1.1.0.dist-info → aiecs-1.2.1.dist-info}/WHEEL +0 -0
- {aiecs-1.1.0.dist-info → aiecs-1.2.1.dist-info}/licenses/LICENSE +0 -0
- {aiecs-1.1.0.dist-info → aiecs-1.2.1.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
|
|
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
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
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()
|
|
@@ -8,7 +8,7 @@ from .tool_executor import (
|
|
|
8
8
|
SecurityError,
|
|
9
9
|
TimeoutError,
|
|
10
10
|
ExecutorConfig,
|
|
11
|
-
|
|
11
|
+
ToolExecutorStats,
|
|
12
12
|
get_executor,
|
|
13
13
|
validate_input,
|
|
14
14
|
cache_result,
|
|
@@ -25,7 +25,7 @@ __all__ = [
|
|
|
25
25
|
'SecurityError',
|
|
26
26
|
'TimeoutError',
|
|
27
27
|
'ExecutorConfig',
|
|
28
|
-
'
|
|
28
|
+
'ToolExecutorStats',
|
|
29
29
|
'get_executor',
|
|
30
30
|
'validate_input',
|
|
31
31
|
'cache_result',
|
|
@@ -76,9 +76,9 @@ class ExecutorConfig(BaseModel):
|
|
|
76
76
|
model_config = ConfigDict(env_prefix="TOOL_EXECUTOR_")
|
|
77
77
|
|
|
78
78
|
# Metrics counter
|
|
79
|
-
class
|
|
79
|
+
class ToolExecutorStats:
|
|
80
80
|
"""
|
|
81
|
-
Tracks executor performance
|
|
81
|
+
Tracks tool executor performance statistics.
|
|
82
82
|
"""
|
|
83
83
|
def __init__(self):
|
|
84
84
|
self.requests: int = 0
|
|
@@ -257,7 +257,7 @@ class ToolExecutor:
|
|
|
257
257
|
)
|
|
258
258
|
self._thread_pool = ThreadPoolExecutor(max_workers=max(os.cpu_count() or 4, self.config.max_workers))
|
|
259
259
|
self._locks: Dict[str, threading.Lock] = {}
|
|
260
|
-
self._metrics =
|
|
260
|
+
self._metrics = ToolExecutorStats()
|
|
261
261
|
self.execution_utils = ExecutionUtils(
|
|
262
262
|
cache_size=self.config.cache_size,
|
|
263
263
|
cache_ttl=self.config.cache_ttl,
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: aiecs
|
|
3
|
-
Version: 1.1
|
|
3
|
+
Version: 1.2.1
|
|
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,144 @@
|
|
|
1
|
+
aiecs/__init__.py,sha256=9LODHD_VZiclcpIq8JJjkczzqdNQeVvBW5JuMkJo-eQ,1859
|
|
2
|
+
aiecs/__main__.py,sha256=AfQpzy3SgwWuP4DuymYcm4MISMuzqwhxxGSYo53PBvY,1035
|
|
3
|
+
aiecs/aiecs_client.py,sha256=gIqecRBBH_bYIWhqiHCemdVgmGb9Jqdxf1b6RoqXWlQ,17276
|
|
4
|
+
aiecs/main.py,sha256=ajP-CaHyoBH3tCp65x9zyB8oCrktvcyStpBHv7mD6_4,10837
|
|
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=ukLiWgNSUv6PvDl7PnKg0UvdpPjZ51qJqAtIHIMRg1k,6512
|
|
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=AwMER9ozL1Vvp-Ol8GKIBqMEO-eDQ38Z6Bh6Vnr_aHk,825
|
|
44
|
+
aiecs/infrastructure/monitoring/executor_metrics.py,sha256=z8KJpq6tfCOEArfR-YJ4UClTsef2mNMFuSDHrP51Aww,6040
|
|
45
|
+
aiecs/infrastructure/monitoring/global_metrics_manager.py,sha256=coIBS6v2MmtlQdzAFZTy9XRQvTYzspiJzYTIciU__pw,6549
|
|
46
|
+
aiecs/infrastructure/monitoring/structured_logger.py,sha256=iI895YHmPoaLdXjxHxd952PeTfGw6sh-yUDCnF8R7NY,1657
|
|
47
|
+
aiecs/infrastructure/monitoring/tracing_manager.py,sha256=g4u6paNCZCYdGDEMZiv4bYv_GTG0s8oug-BJgFmkDp0,13449
|
|
48
|
+
aiecs/infrastructure/persistence/__init__.py,sha256=yoog7fEHmhgY50vGdgDNqiZCPUUL2-xnJrdhT5PrPWU,570
|
|
49
|
+
aiecs/infrastructure/persistence/context_engine_client.py,sha256=KIzreimtg6WbuBYI4U0JTiRmNddpdpKHnGvuHVh86Hs,6051
|
|
50
|
+
aiecs/infrastructure/persistence/database_manager.py,sha256=MRkMTALeeybzAfnfuJrOXbEchBCrMAgsz8YYyEUVMjI,12592
|
|
51
|
+
aiecs/infrastructure/persistence/file_storage.py,sha256=Z8EozljYPBUuBTzDn2cM2uBEPp2uUW_eHLzwNxbKcOk,23889
|
|
52
|
+
aiecs/infrastructure/persistence/redis_client.py,sha256=CqPtYFP8-KHl3cJG9VHun9YFFSp3kCc3ZaZbW7GlqUU,5791
|
|
53
|
+
aiecs/llm/__init__.py,sha256=QlpjRn6WK5rCC0Aswx4AeFmSAIxJQ0XyxjimrIee7jE,1860
|
|
54
|
+
aiecs/llm/client_factory.py,sha256=534lVM4JplAFT-4tMHl4ebN9T9Cfz8WTyJjBGA9ly2s,14383
|
|
55
|
+
aiecs/llm/callbacks/__init__.py,sha256=ewPn_AKobfdCkjxFJ1xlIM3bTWdmM01v4XT9_KUZTbg,192
|
|
56
|
+
aiecs/llm/callbacks/custom_callbacks.py,sha256=V94TSNsorgExgzQkNwvId9lxa11oF7efYOT9ULwsdF0,9941
|
|
57
|
+
aiecs/llm/clients/__init__.py,sha256=uQM004TQappwJMqTxVZNscpVPQtirkvYUPea3QYB7d0,697
|
|
58
|
+
aiecs/llm/clients/base_client.py,sha256=j4NY-oEdG5ALBCSddblPpjttISn5teqLVVUuZyYn7g4,5880
|
|
59
|
+
aiecs/llm/clients/googleai_client.py,sha256=sTgdw4eicxWruNGOMSsuEHbfF9RuDQo8SClqEtu1JOQ,6591
|
|
60
|
+
aiecs/llm/clients/openai_client.py,sha256=x7Y_yTVu0kp-gu5Z-M0Bx-O20D0YDgZoJQxzkjNpr6c,4202
|
|
61
|
+
aiecs/llm/clients/vertex_client.py,sha256=LqCCJSCdsaZ9VuBp8SFDdkqk3MxxHn-0HrtH4_xZG7U,10961
|
|
62
|
+
aiecs/llm/clients/xai_client.py,sha256=XEELb9_qFeeQaansDWvAJRJVpt8CaBRLcYskuv9uDq0,6386
|
|
63
|
+
aiecs/llm/config/__init__.py,sha256=KZbwHoBlbcN7HgNueA5p-0GpyVMJRNG1V5T-tkri8G4,1115
|
|
64
|
+
aiecs/llm/config/config_loader.py,sha256=PTMsZax3CoTrMo6BZlUoI7takII3_DHm3w5xTKgBJpA,8921
|
|
65
|
+
aiecs/llm/config/config_validator.py,sha256=y-wGySLtXfv9ZCOAYY1MhlTkKKUplrSOyK2GlP619Ok,7703
|
|
66
|
+
aiecs/llm/config/model_config.py,sha256=cAEaJ-vtE9vD--1PDkPRUfHQI_roMJmG1RBlaJjapGU,5680
|
|
67
|
+
aiecs/llm/utils/__init__.py,sha256=8Fxcr203TcgNWQ5oalzZJ0P2kFSKbVS231kYYXvGPGs,240
|
|
68
|
+
aiecs/llm/utils/validate_config.py,sha256=oNdU8Zw_rwdJYZN9TO6hq6PNOngChjeIOaA4gV-uDlQ,3114
|
|
69
|
+
aiecs/scripts/__init__.py,sha256=cVxQ5iqym520eDQSpV7B6hWolndCLMOVdvhC_D280PE,66
|
|
70
|
+
aiecs/scripts/aid/VERSION_MANAGEMENT.md,sha256=ElbRZFB9KdnDt9Lc4SQWLNY_3NbnLsl2ZHvLmczh2qw,2497
|
|
71
|
+
aiecs/scripts/aid/__init__.py,sha256=nWdqTPA9pib6NGqckhYHYTwuO70TPkW02eV-e3u5i4w,345
|
|
72
|
+
aiecs/scripts/aid/version_manager.py,sha256=npS9CcIgLtpqlBNBHYYatzTRWLh7B5a1_qtmz0Rl19g,7892
|
|
73
|
+
aiecs/scripts/dependance_check/DEPENDENCY_SYSTEM_SUMMARY.md,sha256=u2OLwmXaRGuTwEfj3jQ_yzAO_Z49P1CBC1pV3iULuoE,5866
|
|
74
|
+
aiecs/scripts/dependance_check/README_DEPENDENCY_CHECKER.md,sha256=7sAyeiMN7I-RsTOudo_JO2CTbC5ObEV0z_YyGtjiMcI,6003
|
|
75
|
+
aiecs/scripts/dependance_check/__init__.py,sha256=7pKdYHifao3HnihRr73QJbouoVIMA8cY1n6eu9r7uB0,510
|
|
76
|
+
aiecs/scripts/dependance_check/dependency_checker.py,sha256=XVBQQrPPyif7mfq4P7vs0IkmtiAddb9aSTtJCxyI_18,33837
|
|
77
|
+
aiecs/scripts/dependance_check/dependency_fixer.py,sha256=yXp5uj2elXGUrEco8_42nsD9VlUGSsyaG-qiMoF5Ab0,13962
|
|
78
|
+
aiecs/scripts/dependance_check/download_nlp_data.py,sha256=vliJno3w8HpQfsvLkccvFM8DNNQHxfKPQ4WhsmKa5UY,12174
|
|
79
|
+
aiecs/scripts/dependance_check/quick_dependency_check.py,sha256=KUDhwuPocaH2jYPCBfNVF0o1dtINAVf__UcQV-ZYswQ,9828
|
|
80
|
+
aiecs/scripts/dependance_check/setup_nlp_data.sh,sha256=CqO-bLVc_mLhNpsSoXZjvJKhtLUbA_gYBqfp3nzUuRI,5843
|
|
81
|
+
aiecs/scripts/dependance_patch/__init__.py,sha256=DH0TzNwguzHDQJxz7Ijq5_g04vW1u1yZGrnacN4QsiM,89
|
|
82
|
+
aiecs/scripts/dependance_patch/fix_weasel/README_WEASEL_PATCH.md,sha256=h0e3Xy6FArLgjika3pRZRhZRbyuj6iLzTU-AhHkWE7M,3581
|
|
83
|
+
aiecs/scripts/dependance_patch/fix_weasel/__init__.py,sha256=BhOw-8hAZ7dIDj7K0mf8TOSjEMJJi714VPeLAgPbInY,189
|
|
84
|
+
aiecs/scripts/dependance_patch/fix_weasel/fix_weasel_validator.py,sha256=w_s2VTIAgWPi-3VUXlrINBkLm9765QHdRf4g5RzBUug,4073
|
|
85
|
+
aiecs/scripts/dependance_patch/fix_weasel/fix_weasel_validator.sh,sha256=XqV3Yx1wi23dWXDbofFK6_SU0BVLr9E1HaIudIuem7Q,2736
|
|
86
|
+
aiecs/scripts/dependance_patch/fix_weasel/patch_weasel_library.sh,sha256=6OcbuJWLv8DDeKPgVrV4wG9UIm5ppN-y-OQPSBD9pSg,5491
|
|
87
|
+
aiecs/scripts/dependance_patch/fix_weasel/run_weasel_patch.sh,sha256=bwyFyeaITwDmG2_3HsTd7PHeexahh6MhEZwUuAC_85c,1233
|
|
88
|
+
aiecs/scripts/tools_develop/README.md,sha256=X32w4F71ztiYxjSnZ3WHhTWYSverghT2DeCV6Mu8MRI,8861
|
|
89
|
+
aiecs/scripts/tools_develop/__init__.py,sha256=caq5QUxj6mECXr3pqaS3eHJ56pS_fXyEteP__C9PEVE,389
|
|
90
|
+
aiecs/scripts/tools_develop/check_type_annotations.py,sha256=jPCS_D9wKLtE41gXSHR6V8sRdHsSHCUIDuxWK4Q6m6I,8131
|
|
91
|
+
aiecs/scripts/tools_develop/validate_tool_schemas.py,sha256=k-Kz_6b4CBTHQ7OAvUxKl4ek8jQ6Trr2cbLk0egC0m8,11753
|
|
92
|
+
aiecs/tasks/__init__.py,sha256=__xkKqXWQ24FkySb8xtsCCJYLKnqmHKbAnojxeELEiE,90
|
|
93
|
+
aiecs/tasks/worker.py,sha256=5cBeP2IyvwDe6tIhkiv6LfyQz41IFZ1S3Fr6IdNKP6Q,4298
|
|
94
|
+
aiecs/tools/__init__.py,sha256=QNAUwjKmuxfTZJ_PgttkzQxknnIU9LjbSNAmn56Qyxo,7216
|
|
95
|
+
aiecs/tools/base_tool.py,sha256=1dndT1M5PAU3Cw-gE9vAIKACiq6na6CAUPIefAeALc4,6901
|
|
96
|
+
aiecs/tools/langchain_adapter.py,sha256=HYCSPnn6Q8cdBjCGcdUSa8jgUoaOqvYpAIlPcugaq-U,15647
|
|
97
|
+
aiecs/tools/schema_generator.py,sha256=UvHEtl7bj7_rxKpC9eqjqPzfzKGqD4qsKhotXCXxVx0,8491
|
|
98
|
+
aiecs/tools/temp_file_manager.py,sha256=_ipPCMKT5twYjtLJucOnhIyqtKEtSquKqx-xasKu_ks,4679
|
|
99
|
+
aiecs/tools/docs/__init__.py,sha256=noxpoRVQd9AmHntOkTJUp_kcivyoKrh2E5pdVC6bmB4,3754
|
|
100
|
+
aiecs/tools/docs/ai_document_orchestrator.py,sha256=x0lVIyw8LRzZY2Y1bn8eiUgdMhWJ2j0EZ40GQDYqJGU,24705
|
|
101
|
+
aiecs/tools/docs/ai_document_writer_orchestrator.py,sha256=Q2P4313JQYOYjpBchQMKof-zysCJJxiYDu__L516dxE,97397
|
|
102
|
+
aiecs/tools/docs/content_insertion_tool.py,sha256=iQvNDnmA4XBg7RT8o04vqhc-cZmZ_bsfYMFe9ankHZY,49351
|
|
103
|
+
aiecs/tools/docs/document_creator_tool.py,sha256=QLHKEBvZjtDSgaT1a0a7SrjbPlfSJyVfKYX8u_x2smg,39413
|
|
104
|
+
aiecs/tools/docs/document_layout_tool.py,sha256=L5ZyFyShNX6FW1e374m21ZpvNs8eZsmj8l85LFRq2xo,45234
|
|
105
|
+
aiecs/tools/docs/document_parser_tool.py,sha256=TuECotyEh9lirZ2L3-lixBTTvhJtJpNTt188z8GIejw,38366
|
|
106
|
+
aiecs/tools/docs/document_writer_tool.py,sha256=BPfBiv2D9NSdjDD_ByFTfiYTqTSexSNWBmj_gfLpA9c,69061
|
|
107
|
+
aiecs/tools/statistics/__init__.py,sha256=n860-PFT7OET2V1UAFXW-GBDs6jSTUGAqyJb_Be2RKM,3021
|
|
108
|
+
aiecs/tools/statistics/ai_data_analysis_orchestrator.py,sha256=JdlSTuHQAhjRwCU9LP9ArCeVJZ7Q_M4Gu9rVqjzH-X8,22675
|
|
109
|
+
aiecs/tools/statistics/ai_insight_generator_tool.py,sha256=O9nHUhhOBlQrCRYhBMBgOdzL8ORWyCd1dTuH0AY6JWc,19364
|
|
110
|
+
aiecs/tools/statistics/ai_report_orchestrator_tool.py,sha256=3nXMXYGt9Z0EmRMVUbvMRJGjlIZgKoLSNlTVmTcdSTo,25024
|
|
111
|
+
aiecs/tools/statistics/data_loader_tool.py,sha256=Are7n1KX3_rSuxr1TKunQugUfd1GgPpeWhDriLO7NV4,20175
|
|
112
|
+
aiecs/tools/statistics/data_profiler_tool.py,sha256=tV_O53IN-XMMctT5VmeynFfZ4x2j6pIYpl7DYS_xwWE,24162
|
|
113
|
+
aiecs/tools/statistics/data_transformer_tool.py,sha256=LwrXNTU6a1DXDf2Xb6RuB2yGvz1NV9cJ-gwy7oVPsTk,21112
|
|
114
|
+
aiecs/tools/statistics/data_visualizer_tool.py,sha256=eZl5u73HYCFh3RYKzWl85KQz9bfHvYWlYujccA8mDdA,17852
|
|
115
|
+
aiecs/tools/statistics/model_trainer_tool.py,sha256=4c4j7tAcKqdCcOSy_Xq6_jYcTyIr5UjvlRVLWg7fb6A,18108
|
|
116
|
+
aiecs/tools/statistics/statistical_analyzer_tool.py,sha256=SbmvpjKVTRqLvVSYnkG5oMb_HwqfbkNT_Y7-n2494Ss,16982
|
|
117
|
+
aiecs/tools/task_tools/__init__.py,sha256=hzsGoRmqX_gZcutXKynCLi6esBPXCx--cRkZVxaXAIA,2693
|
|
118
|
+
aiecs/tools/task_tools/chart_tool.py,sha256=zW70vcsa8ZnlmWuqUNgh1Q1hAyY23FJuaKMP6-ERlkg,26475
|
|
119
|
+
aiecs/tools/task_tools/classfire_tool.py,sha256=UKlnRD3KjbU3ZhWuplP6BTuv6wcjt-7XBftlGZF6hcE,31950
|
|
120
|
+
aiecs/tools/task_tools/image_tool.py,sha256=KQfOapYsnqrq-WJNPZr8yjw2-IuNqCeYecYR8jTRYG8,14850
|
|
121
|
+
aiecs/tools/task_tools/office_tool.py,sha256=Kym07pWhwi54LQCZwUaPqe3ZV7WGOXOnL2yCUvq-7w4,23476
|
|
122
|
+
aiecs/tools/task_tools/pandas_tool.py,sha256=CZ_TiADK_Fjq3lIBYi-Tifga3ZOMoLqavIxZUxJIDTU,24817
|
|
123
|
+
aiecs/tools/task_tools/report_tool.py,sha256=xdvkhI97GHRHDb8g-xWlwzdDz20HBB36djg7eNgZtc4,23550
|
|
124
|
+
aiecs/tools/task_tools/research_tool.py,sha256=teF5PxwzmTdoJ4f1EHWeO6PmwI8p7n5YrG2h7FG-PKQ,15350
|
|
125
|
+
aiecs/tools/task_tools/scraper_tool.py,sha256=OquSAWrCHauWYJGyFoSD5hJwmWbSeBCYFLbZbEVwC4M,24628
|
|
126
|
+
aiecs/tools/task_tools/search_tool.py,sha256=UJNSZwAw8BXECrH_PmyPYQ_ezv65RcuNxBZrgjp4pIA,37142
|
|
127
|
+
aiecs/tools/task_tools/stats_tool.py,sha256=Z5VtdlToioFpgslaBr9aJO7cZn4pBZ5J9TiX2DmxI9s,24302
|
|
128
|
+
aiecs/tools/tool_executor/__init__.py,sha256=FzQ1paMoGF7gZySTSfg96FwAgV914iMx_rfaFU_UFb8,715
|
|
129
|
+
aiecs/tools/tool_executor/tool_executor.py,sha256=x8RDSdfUaGGSp7ilTsZLFQpRditzfXgqkVbSmzVrXZ8,19508
|
|
130
|
+
aiecs/utils/LLM_output_structor.py,sha256=zKkOhrg6smToD0NTCqj3OepBQDTZXgPK4VsKJEFgxyg,15793
|
|
131
|
+
aiecs/utils/__init__.py,sha256=PkukDzRaeeAJUmfm9vA9ez1l3tjvhDRnWZCqzWI6nNw,562
|
|
132
|
+
aiecs/utils/base_callback.py,sha256=UpNrOZZ1RCmiVPnuhjFNde_m29yWg1ID16vzfzBMk7U,1661
|
|
133
|
+
aiecs/utils/execution_utils.py,sha256=uQoUcLKAbmkcMhucdhngrAfeXE6DvuG26qIx4wyx2fo,5871
|
|
134
|
+
aiecs/utils/logging.py,sha256=kvZ9OjFChfLN_2MEGvIDBK3trPAhikkh87rK49vN3bU,29
|
|
135
|
+
aiecs/utils/prompt_loader.py,sha256=cBS2bZXpYQOWSiOGkhwIzyy3_bETqwIblRi_9qQT9iQ,423
|
|
136
|
+
aiecs/utils/token_usage_repository.py,sha256=1xjenLYwC0YT6lKZFEGO4scRCXLuWdec2MWjzih5SZY,10210
|
|
137
|
+
aiecs/ws/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
138
|
+
aiecs/ws/socket_server.py,sha256=j_9idVY_rWlTsF51FgmuhWCWFVt7_gAHL8vNg3IxV5g,1476
|
|
139
|
+
aiecs-1.2.1.dist-info/licenses/LICENSE,sha256=_1YRaIS0eZu1pv6xfz245UkU0i1Va2B841hv3OWRwqg,12494
|
|
140
|
+
aiecs-1.2.1.dist-info/METADATA,sha256=w-7dL0XMyE_auT7Mme2dMEjUzUwPYYOxDuuFm5uKwx0,16635
|
|
141
|
+
aiecs-1.2.1.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
142
|
+
aiecs-1.2.1.dist-info/entry_points.txt,sha256=TfLBuwLOfgQqKvnoF1sgTS19-Hgl0aWvCZjIdblIiig,667
|
|
143
|
+
aiecs-1.2.1.dist-info/top_level.txt,sha256=22IlUlOqh9Ni3jXlQNMNUqzbW8dcxXPeR_EQ-BJVcV8,6
|
|
144
|
+
aiecs-1.2.1.dist-info/RECORD,,
|
|
@@ -7,3 +7,4 @@ aiecs-patch-weasel = aiecs.scripts.dependance_patch.fix_weasel.fix_weasel_valida
|
|
|
7
7
|
aiecs-quick-check = aiecs.scripts.dependance_check.quick_dependency_check:main
|
|
8
8
|
aiecs-tools-check-annotations = aiecs.scripts.tools_develop.check_type_annotations:main
|
|
9
9
|
aiecs-tools-validate-schemas = aiecs.scripts.tools_develop.validate_tool_schemas:main
|
|
10
|
+
aiecs-version = aiecs.scripts.aid.version_manager:main
|
aiecs-1.1.0.dist-info/RECORD
DELETED
|
@@ -1,114 +0,0 @@
|
|
|
1
|
-
aiecs/__init__.py,sha256=IF2d9k4xYh1zAvMqZuB872kIwBOowjZn73ZS5Bu9S90,1859
|
|
2
|
-
aiecs/__main__.py,sha256=AfQpzy3SgwWuP4DuymYcm4MISMuzqwhxxGSYo53PBvY,1035
|
|
3
|
-
aiecs/aiecs_client.py,sha256=2wzc_XVZvBaTABL2INLFiU_a1uf1xJ9NrL1GTcHOv7Y,17268
|
|
4
|
-
aiecs/main.py,sha256=POcFo8ADGbJqb5Ek3gCm4PYMqfr8EepLQ5671unMykY,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=LxFeqfrz_oKrf4vS63jZj7PNYUwiCv1uCdoWHVq-MuA,5211
|
|
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=Pah3fYH6q7OfRCVpMEfq_CzgZR0l0HUcXFzUEKy_1l0,1751
|
|
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/__init__.py,sha256=cVxQ5iqym520eDQSpV7B6hWolndCLMOVdvhC_D280PE,66
|
|
53
|
-
aiecs/scripts/dependance_check/DEPENDENCY_SYSTEM_SUMMARY.md,sha256=u2OLwmXaRGuTwEfj3jQ_yzAO_Z49P1CBC1pV3iULuoE,5866
|
|
54
|
-
aiecs/scripts/dependance_check/README_DEPENDENCY_CHECKER.md,sha256=7sAyeiMN7I-RsTOudo_JO2CTbC5ObEV0z_YyGtjiMcI,6003
|
|
55
|
-
aiecs/scripts/dependance_check/__init__.py,sha256=7pKdYHifao3HnihRr73QJbouoVIMA8cY1n6eu9r7uB0,510
|
|
56
|
-
aiecs/scripts/dependance_check/dependency_checker.py,sha256=XVBQQrPPyif7mfq4P7vs0IkmtiAddb9aSTtJCxyI_18,33837
|
|
57
|
-
aiecs/scripts/dependance_check/dependency_fixer.py,sha256=yXp5uj2elXGUrEco8_42nsD9VlUGSsyaG-qiMoF5Ab0,13962
|
|
58
|
-
aiecs/scripts/dependance_check/download_nlp_data.py,sha256=ggUJdWMlEq4_p8LAEkn79oo8-9uJDQxn721T-8KWkJE,12112
|
|
59
|
-
aiecs/scripts/dependance_check/quick_dependency_check.py,sha256=KUDhwuPocaH2jYPCBfNVF0o1dtINAVf__UcQV-ZYswQ,9828
|
|
60
|
-
aiecs/scripts/dependance_check/setup_nlp_data.sh,sha256=CqO-bLVc_mLhNpsSoXZjvJKhtLUbA_gYBqfp3nzUuRI,5843
|
|
61
|
-
aiecs/scripts/dependance_patch/__init__.py,sha256=DH0TzNwguzHDQJxz7Ijq5_g04vW1u1yZGrnacN4QsiM,89
|
|
62
|
-
aiecs/scripts/dependance_patch/fix_weasel/README_WEASEL_PATCH.md,sha256=h0e3Xy6FArLgjika3pRZRhZRbyuj6iLzTU-AhHkWE7M,3581
|
|
63
|
-
aiecs/scripts/dependance_patch/fix_weasel/__init__.py,sha256=BhOw-8hAZ7dIDj7K0mf8TOSjEMJJi714VPeLAgPbInY,189
|
|
64
|
-
aiecs/scripts/dependance_patch/fix_weasel/fix_weasel_validator.py,sha256=w_s2VTIAgWPi-3VUXlrINBkLm9765QHdRf4g5RzBUug,4073
|
|
65
|
-
aiecs/scripts/dependance_patch/fix_weasel/fix_weasel_validator.sh,sha256=XqV3Yx1wi23dWXDbofFK6_SU0BVLr9E1HaIudIuem7Q,2736
|
|
66
|
-
aiecs/scripts/dependance_patch/fix_weasel/patch_weasel_library.sh,sha256=6OcbuJWLv8DDeKPgVrV4wG9UIm5ppN-y-OQPSBD9pSg,5491
|
|
67
|
-
aiecs/scripts/dependance_patch/fix_weasel/run_weasel_patch.sh,sha256=bwyFyeaITwDmG2_3HsTd7PHeexahh6MhEZwUuAC_85c,1233
|
|
68
|
-
aiecs/scripts/tools_develop/README.md,sha256=X32w4F71ztiYxjSnZ3WHhTWYSverghT2DeCV6Mu8MRI,8861
|
|
69
|
-
aiecs/scripts/tools_develop/__init__.py,sha256=caq5QUxj6mECXr3pqaS3eHJ56pS_fXyEteP__C9PEVE,389
|
|
70
|
-
aiecs/scripts/tools_develop/check_type_annotations.py,sha256=jPCS_D9wKLtE41gXSHR6V8sRdHsSHCUIDuxWK4Q6m6I,8131
|
|
71
|
-
aiecs/scripts/tools_develop/validate_tool_schemas.py,sha256=k-Kz_6b4CBTHQ7OAvUxKl4ek8jQ6Trr2cbLk0egC0m8,11753
|
|
72
|
-
aiecs/tasks/__init__.py,sha256=__xkKqXWQ24FkySb8xtsCCJYLKnqmHKbAnojxeELEiE,90
|
|
73
|
-
aiecs/tasks/worker.py,sha256=5cBeP2IyvwDe6tIhkiv6LfyQz41IFZ1S3Fr6IdNKP6Q,4298
|
|
74
|
-
aiecs/tools/__init__.py,sha256=muStwe6EzwigQa-4ayo6QBcPSaHjZQhRbxeIOw505uc,7075
|
|
75
|
-
aiecs/tools/base_tool.py,sha256=1dndT1M5PAU3Cw-gE9vAIKACiq6na6CAUPIefAeALc4,6901
|
|
76
|
-
aiecs/tools/langchain_adapter.py,sha256=HYCSPnn6Q8cdBjCGcdUSa8jgUoaOqvYpAIlPcugaq-U,15647
|
|
77
|
-
aiecs/tools/schema_generator.py,sha256=s9xvvVZLltOdmUY4IgtFNiy5kuhBRMpKmnX3FtzOwAU,8315
|
|
78
|
-
aiecs/tools/temp_file_manager.py,sha256=_ipPCMKT5twYjtLJucOnhIyqtKEtSquKqx-xasKu_ks,4679
|
|
79
|
-
aiecs/tools/docs/__init__.py,sha256=Y0m7tJJeamKLfVe0qGQF-7JK9pxFmNt8iIzRBnTJGfc,3615
|
|
80
|
-
aiecs/tools/docs/ai_document_orchestrator.py,sha256=jb35XU6VARqyy3H4uhrGWVlPRL49pC2DM02c3thsEl0,24441
|
|
81
|
-
aiecs/tools/docs/ai_document_writer_orchestrator.py,sha256=oIEpz-SlskJnhzV69O1mBJ3hERoqOgYxWVx1zt05Ufk,96710
|
|
82
|
-
aiecs/tools/docs/content_insertion_tool.py,sha256=shrRLYkHcgxHTMHp428D6rZrWJ84ZFLCq-ICfYf277w,48716
|
|
83
|
-
aiecs/tools/docs/document_creator_tool.py,sha256=LOsMdZsUBxKDzcjSK4Jk21r2kkOgY5qwhnUsv1YCegA,38930
|
|
84
|
-
aiecs/tools/docs/document_layout_tool.py,sha256=rTHyTdpA0wbBNa9Xcs8m-Sm4Rp0tim4lpWE1CZMGHpE,44782
|
|
85
|
-
aiecs/tools/docs/document_parser_tool.py,sha256=rali82_rq1ixuRC6RH67j6WfgrkbwcJh_HlgZ1hX4FQ,37808
|
|
86
|
-
aiecs/tools/docs/document_writer_tool.py,sha256=9LV06JZC56F-wj3hyxmk3vbshqoQPC_OKkNb6SDLj34,67572
|
|
87
|
-
aiecs/tools/task_tools/__init__.py,sha256=hzsGoRmqX_gZcutXKynCLi6esBPXCx--cRkZVxaXAIA,2693
|
|
88
|
-
aiecs/tools/task_tools/chart_tool.py,sha256=C7fM8WvBkyQgNCg5xGndXUF6nNfY7lQjYj8l9DnPAq0,26442
|
|
89
|
-
aiecs/tools/task_tools/classfire_tool.py,sha256=UKlnRD3KjbU3ZhWuplP6BTuv6wcjt-7XBftlGZF6hcE,31950
|
|
90
|
-
aiecs/tools/task_tools/image_tool.py,sha256=clK872RDX_JD_5gsRo2gpQ33ZCFOpnLoblV-qq81S7c,15032
|
|
91
|
-
aiecs/tools/task_tools/office_tool.py,sha256=wtRDdU2bWwmTl-w5DKlme7X06NslzHDOZikuoN1_ES0,23514
|
|
92
|
-
aiecs/tools/task_tools/pandas_tool.py,sha256=762Nz-2s3l5sdDXFRriK2F22I_k_nkELaX1sDAtCpwk,24892
|
|
93
|
-
aiecs/tools/task_tools/report_tool.py,sha256=ZoETHFpO3UOD_JH7LBZZlyZY8A7DHHgSbYY8QPT95Wk,23567
|
|
94
|
-
aiecs/tools/task_tools/research_tool.py,sha256=JXPmC5Gg2SbZWG56e3fkZo-lYgG3h_XfYJUjEtXOceQ,15557
|
|
95
|
-
aiecs/tools/task_tools/scraper_tool.py,sha256=7FCbYc1Tk75RC6MozJxXm1l4vD1PeVoCYnzmDxzpfcE,24709
|
|
96
|
-
aiecs/tools/task_tools/search_api.py,sha256=NIqZE5jaEKUIGTjSToxYzVfTB4xMmFX4yYNgp5tOm_w,217
|
|
97
|
-
aiecs/tools/task_tools/stats_tool.py,sha256=IUAhs5wUi1dknEha8twCT_m3MF4ZTqod3TDAFslfaF8,24300
|
|
98
|
-
aiecs/tools/tool_executor/__init__.py,sha256=gxuujSlQFj8DQ9ejCisO_cYqk5GQkJnwv0sJERd80CM,711
|
|
99
|
-
aiecs/tools/tool_executor/tool_executor.py,sha256=fuoKQahLBgRT6AQbHuOCLzG53w4UAD-QTraGjraEEsw,19496
|
|
100
|
-
aiecs/utils/LLM_output_structor.py,sha256=zKkOhrg6smToD0NTCqj3OepBQDTZXgPK4VsKJEFgxyg,15793
|
|
101
|
-
aiecs/utils/__init__.py,sha256=PkukDzRaeeAJUmfm9vA9ez1l3tjvhDRnWZCqzWI6nNw,562
|
|
102
|
-
aiecs/utils/base_callback.py,sha256=UpNrOZZ1RCmiVPnuhjFNde_m29yWg1ID16vzfzBMk7U,1661
|
|
103
|
-
aiecs/utils/execution_utils.py,sha256=uQoUcLKAbmkcMhucdhngrAfeXE6DvuG26qIx4wyx2fo,5871
|
|
104
|
-
aiecs/utils/logging.py,sha256=kvZ9OjFChfLN_2MEGvIDBK3trPAhikkh87rK49vN3bU,29
|
|
105
|
-
aiecs/utils/prompt_loader.py,sha256=cBS2bZXpYQOWSiOGkhwIzyy3_bETqwIblRi_9qQT9iQ,423
|
|
106
|
-
aiecs/utils/token_usage_repository.py,sha256=1xjenLYwC0YT6lKZFEGO4scRCXLuWdec2MWjzih5SZY,10210
|
|
107
|
-
aiecs/ws/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
108
|
-
aiecs/ws/socket_server.py,sha256=j_9idVY_rWlTsF51FgmuhWCWFVt7_gAHL8vNg3IxV5g,1476
|
|
109
|
-
aiecs-1.1.0.dist-info/licenses/LICENSE,sha256=_1YRaIS0eZu1pv6xfz245UkU0i1Va2B841hv3OWRwqg,12494
|
|
110
|
-
aiecs-1.1.0.dist-info/METADATA,sha256=H9OPynjlpLw0RriGFoMwrmh7zJzsEuAcyMvcI-Lj0Jc,16437
|
|
111
|
-
aiecs-1.1.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
112
|
-
aiecs-1.1.0.dist-info/entry_points.txt,sha256=gJeXxqFhs326tZPCw1YfHRRS530qwbIyybpVF4Tfwvs,612
|
|
113
|
-
aiecs-1.1.0.dist-info/top_level.txt,sha256=22IlUlOqh9Ni3jXlQNMNUqzbW8dcxXPeR_EQ-BJVcV8,6
|
|
114
|
-
aiecs-1.1.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|