aiecs 1.1.0__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.
- aiecs/__init__.py +1 -1
- aiecs/config/config.py +2 -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/main.py +2 -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-1.1.0.dist-info → aiecs-1.2.0.dist-info}/METADATA +5 -1
- {aiecs-1.1.0.dist-info → aiecs-1.2.0.dist-info}/RECORD +57 -36
- {aiecs-1.1.0.dist-info → aiecs-1.2.0.dist-info}/entry_points.txt +1 -0
- aiecs/tools/task_tools/search_api.py +0 -7
- {aiecs-1.1.0.dist-info → aiecs-1.2.0.dist-info}/WHEEL +0 -0
- {aiecs-1.1.0.dist-info → aiecs-1.2.0.dist-info}/licenses/LICENSE +0 -0
- {aiecs-1.1.0.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
|
|
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()
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: aiecs
|
|
3
|
-
Version: 1.
|
|
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
|
|
@@ -1,26 +1,34 @@
|
|
|
1
|
-
aiecs/__init__.py,sha256=
|
|
1
|
+
aiecs/__init__.py,sha256=NjZbBge1ngw1XEAwUSHR0zmuJuW6-EmE5ecGuDgFzb4,1859
|
|
2
2
|
aiecs/__main__.py,sha256=AfQpzy3SgwWuP4DuymYcm4MISMuzqwhxxGSYo53PBvY,1035
|
|
3
3
|
aiecs/aiecs_client.py,sha256=2wzc_XVZvBaTABL2INLFiU_a1uf1xJ9NrL1GTcHOv7Y,17268
|
|
4
|
-
aiecs/main.py,sha256=
|
|
4
|
+
aiecs/main.py,sha256=J9UGndJ1hv9KvfdARvrcAhLG_u-gNY-1XDPySyThzc4,9911
|
|
5
5
|
aiecs/application/__init__.py,sha256=NkmrUH1DqxJ3vaVC8QwscNdlWqHfC7ZagL4k3nZ_qz4,192
|
|
6
6
|
aiecs/application/executors/__init__.py,sha256=WIl7L9HBsEhNfbNtJdvBvFUJXzESvNZVaiAA6tdtJcs,191
|
|
7
7
|
aiecs/application/executors/operation_executor.py,sha256=-7mFo1hUnWdehVPg0fnSiRhW3LACpIiyLSH-iu7bX4U,13818
|
|
8
8
|
aiecs/config/__init__.py,sha256=HykU6FgZrUx0w8V1_kAjP9NpXZTddZ9M3xo0fmBwMU8,336
|
|
9
|
-
aiecs/config/config.py,sha256=
|
|
9
|
+
aiecs/config/config.py,sha256=8Xm2x4Jgolx48tuGljzafQ3zXlxYPXT6-8M054V_UaQ,5345
|
|
10
10
|
aiecs/config/registry.py,sha256=5CPJcjeMu3FLc_keuCtJT60DtUxF6w-I68uIoxpcdq8,637
|
|
11
11
|
aiecs/core/__init__.py,sha256=H0ZIk96q0KHKivcobnUCVJdJZmewucVJ9MKhRgUxmk0,1037
|
|
12
12
|
aiecs/core/interface/__init__.py,sha256=soI7zdoN3eQynVb9uiwmgXkM5E75JYffTILktHb48x8,688
|
|
13
13
|
aiecs/core/interface/execution_interface.py,sha256=6bXruts8dyAg647lxPDQkF-cdJG1W8ZqpxFQ6hjVrd4,4810
|
|
14
14
|
aiecs/core/interface/storage_interface.py,sha256=F7GQEZ_ZiRWeen7oZO6A4S0nW0VORYsygk2BYLw5aiY,5680
|
|
15
|
-
aiecs/domain/__init__.py,sha256=
|
|
16
|
-
aiecs/domain/community/
|
|
17
|
-
aiecs/domain/community/
|
|
18
|
-
aiecs/domain/community/
|
|
19
|
-
aiecs/domain/community/
|
|
20
|
-
aiecs/domain/community/
|
|
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
|
|
21
29
|
aiecs/domain/community/models/community_models.py,sha256=75h8lb1LmOVfpAw5Eh4_2djbSZkcvccKT_Ke1Xx573E,10094
|
|
22
30
|
aiecs/domain/context/__init__.py,sha256=Pah3fYH6q7OfRCVpMEfq_CzgZR0l0HUcXFzUEKy_1l0,1751
|
|
23
|
-
aiecs/domain/context/context_engine.py,sha256=
|
|
31
|
+
aiecs/domain/context/context_engine.py,sha256=Z9Xcp0CxEIKd0afZZQgdGO0mpYKll-qWgErWfIT-vnI,36986
|
|
24
32
|
aiecs/domain/context/conversation_models.py,sha256=GgHEZTnHs6U-ecfAJ-0GJUXF48AdXCw0O8Lb8BzQ3oU,13005
|
|
25
33
|
aiecs/domain/execution/__init__.py,sha256=usXYgPcS-j0CFBN5K1v1WuxQUHsgap3tsaZnDCcKVXs,216
|
|
26
34
|
aiecs/domain/execution/model.py,sha256=GEQLo8t6V4tvbY0mMuWb_YCNLfi809q_T_x16ZfoNQQ,1453
|
|
@@ -50,12 +58,15 @@ aiecs/llm/openai_client.py,sha256=T3-LMDV-bzv0fwyDCw6h9D2XbNbWd0dt-QmjKg-wkd0,43
|
|
|
50
58
|
aiecs/llm/vertex_client.py,sha256=DSKyTwlhpOVTXfCTgTD7NholVFtVm7F5qmHk8p8X1Po,10823
|
|
51
59
|
aiecs/llm/xai_client.py,sha256=VYfBGD8ns6NHscT68DDmAmvwBMEVykLQufH8kFNf_L8,6809
|
|
52
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
|
|
53
64
|
aiecs/scripts/dependance_check/DEPENDENCY_SYSTEM_SUMMARY.md,sha256=u2OLwmXaRGuTwEfj3jQ_yzAO_Z49P1CBC1pV3iULuoE,5866
|
|
54
65
|
aiecs/scripts/dependance_check/README_DEPENDENCY_CHECKER.md,sha256=7sAyeiMN7I-RsTOudo_JO2CTbC5ObEV0z_YyGtjiMcI,6003
|
|
55
66
|
aiecs/scripts/dependance_check/__init__.py,sha256=7pKdYHifao3HnihRr73QJbouoVIMA8cY1n6eu9r7uB0,510
|
|
56
67
|
aiecs/scripts/dependance_check/dependency_checker.py,sha256=XVBQQrPPyif7mfq4P7vs0IkmtiAddb9aSTtJCxyI_18,33837
|
|
57
68
|
aiecs/scripts/dependance_check/dependency_fixer.py,sha256=yXp5uj2elXGUrEco8_42nsD9VlUGSsyaG-qiMoF5Ab0,13962
|
|
58
|
-
aiecs/scripts/dependance_check/download_nlp_data.py,sha256=
|
|
69
|
+
aiecs/scripts/dependance_check/download_nlp_data.py,sha256=vliJno3w8HpQfsvLkccvFM8DNNQHxfKPQ4WhsmKa5UY,12174
|
|
59
70
|
aiecs/scripts/dependance_check/quick_dependency_check.py,sha256=KUDhwuPocaH2jYPCBfNVF0o1dtINAVf__UcQV-ZYswQ,9828
|
|
60
71
|
aiecs/scripts/dependance_check/setup_nlp_data.sh,sha256=CqO-bLVc_mLhNpsSoXZjvJKhtLUbA_gYBqfp3nzUuRI,5843
|
|
61
72
|
aiecs/scripts/dependance_patch/__init__.py,sha256=DH0TzNwguzHDQJxz7Ijq5_g04vW1u1yZGrnacN4QsiM,89
|
|
@@ -71,30 +82,40 @@ aiecs/scripts/tools_develop/check_type_annotations.py,sha256=jPCS_D9wKLtE41gXSHR
|
|
|
71
82
|
aiecs/scripts/tools_develop/validate_tool_schemas.py,sha256=k-Kz_6b4CBTHQ7OAvUxKl4ek8jQ6Trr2cbLk0egC0m8,11753
|
|
72
83
|
aiecs/tasks/__init__.py,sha256=__xkKqXWQ24FkySb8xtsCCJYLKnqmHKbAnojxeELEiE,90
|
|
73
84
|
aiecs/tasks/worker.py,sha256=5cBeP2IyvwDe6tIhkiv6LfyQz41IFZ1S3Fr6IdNKP6Q,4298
|
|
74
|
-
aiecs/tools/__init__.py,sha256=
|
|
85
|
+
aiecs/tools/__init__.py,sha256=QNAUwjKmuxfTZJ_PgttkzQxknnIU9LjbSNAmn56Qyxo,7216
|
|
75
86
|
aiecs/tools/base_tool.py,sha256=1dndT1M5PAU3Cw-gE9vAIKACiq6na6CAUPIefAeALc4,6901
|
|
76
87
|
aiecs/tools/langchain_adapter.py,sha256=HYCSPnn6Q8cdBjCGcdUSa8jgUoaOqvYpAIlPcugaq-U,15647
|
|
77
|
-
aiecs/tools/schema_generator.py,sha256=
|
|
88
|
+
aiecs/tools/schema_generator.py,sha256=UvHEtl7bj7_rxKpC9eqjqPzfzKGqD4qsKhotXCXxVx0,8491
|
|
78
89
|
aiecs/tools/temp_file_manager.py,sha256=_ipPCMKT5twYjtLJucOnhIyqtKEtSquKqx-xasKu_ks,4679
|
|
79
|
-
aiecs/tools/docs/__init__.py,sha256=
|
|
80
|
-
aiecs/tools/docs/ai_document_orchestrator.py,sha256=
|
|
81
|
-
aiecs/tools/docs/ai_document_writer_orchestrator.py,sha256=
|
|
82
|
-
aiecs/tools/docs/content_insertion_tool.py,sha256=
|
|
83
|
-
aiecs/tools/docs/document_creator_tool.py,sha256=
|
|
84
|
-
aiecs/tools/docs/document_layout_tool.py,sha256=
|
|
85
|
-
aiecs/tools/docs/document_parser_tool.py,sha256=
|
|
86
|
-
aiecs/tools/docs/document_writer_tool.py,sha256=
|
|
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
|
|
87
108
|
aiecs/tools/task_tools/__init__.py,sha256=hzsGoRmqX_gZcutXKynCLi6esBPXCx--cRkZVxaXAIA,2693
|
|
88
|
-
aiecs/tools/task_tools/chart_tool.py,sha256=
|
|
109
|
+
aiecs/tools/task_tools/chart_tool.py,sha256=zW70vcsa8ZnlmWuqUNgh1Q1hAyY23FJuaKMP6-ERlkg,26475
|
|
89
110
|
aiecs/tools/task_tools/classfire_tool.py,sha256=UKlnRD3KjbU3ZhWuplP6BTuv6wcjt-7XBftlGZF6hcE,31950
|
|
90
|
-
aiecs/tools/task_tools/image_tool.py,sha256=
|
|
91
|
-
aiecs/tools/task_tools/office_tool.py,sha256=
|
|
92
|
-
aiecs/tools/task_tools/pandas_tool.py,sha256=
|
|
93
|
-
aiecs/tools/task_tools/report_tool.py,sha256=
|
|
94
|
-
aiecs/tools/task_tools/research_tool.py,sha256=
|
|
95
|
-
aiecs/tools/task_tools/scraper_tool.py,sha256=
|
|
96
|
-
aiecs/tools/task_tools/
|
|
97
|
-
aiecs/tools/task_tools/stats_tool.py,sha256=
|
|
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
|
|
98
119
|
aiecs/tools/tool_executor/__init__.py,sha256=gxuujSlQFj8DQ9ejCisO_cYqk5GQkJnwv0sJERd80CM,711
|
|
99
120
|
aiecs/tools/tool_executor/tool_executor.py,sha256=fuoKQahLBgRT6AQbHuOCLzG53w4UAD-QTraGjraEEsw,19496
|
|
100
121
|
aiecs/utils/LLM_output_structor.py,sha256=zKkOhrg6smToD0NTCqj3OepBQDTZXgPK4VsKJEFgxyg,15793
|
|
@@ -106,9 +127,9 @@ aiecs/utils/prompt_loader.py,sha256=cBS2bZXpYQOWSiOGkhwIzyy3_bETqwIblRi_9qQT9iQ,
|
|
|
106
127
|
aiecs/utils/token_usage_repository.py,sha256=1xjenLYwC0YT6lKZFEGO4scRCXLuWdec2MWjzih5SZY,10210
|
|
107
128
|
aiecs/ws/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
108
129
|
aiecs/ws/socket_server.py,sha256=j_9idVY_rWlTsF51FgmuhWCWFVt7_gAHL8vNg3IxV5g,1476
|
|
109
|
-
aiecs-1.
|
|
110
|
-
aiecs-1.
|
|
111
|
-
aiecs-1.
|
|
112
|
-
aiecs-1.
|
|
113
|
-
aiecs-1.
|
|
114
|
-
aiecs-1.
|
|
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,,
|
|
@@ -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
|
|
File without changes
|
|
File without changes
|
|
File without changes
|