aiecs 1.4.0__py3-none-any.whl → 1.4.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/domain/agent/tools/schema_generator.py +1 -1
- aiecs/main.py +2 -2
- aiecs/tools/search_tool/__init__.py +1 -0
- {aiecs-1.4.0.dist-info → aiecs-1.4.1.dist-info}/METADATA +1 -1
- {aiecs-1.4.0.dist-info → aiecs-1.4.1.dist-info}/RECORD +10 -10
- {aiecs-1.4.0.dist-info → aiecs-1.4.1.dist-info}/WHEEL +0 -0
- {aiecs-1.4.0.dist-info → aiecs-1.4.1.dist-info}/entry_points.txt +0 -0
- {aiecs-1.4.0.dist-info → aiecs-1.4.1.dist-info}/licenses/LICENSE +0 -0
- {aiecs-1.4.0.dist-info → aiecs-1.4.1.dist-info}/top_level.txt +0 -0
aiecs/__init__.py
CHANGED
|
@@ -5,7 +5,7 @@ A powerful Python middleware framework for building AI-powered applications
|
|
|
5
5
|
with tool orchestration, task execution, and multi-provider LLM support.
|
|
6
6
|
"""
|
|
7
7
|
|
|
8
|
-
__version__ = "1.4.
|
|
8
|
+
__version__ = "1.4.1"
|
|
9
9
|
__author__ = "AIECS Team"
|
|
10
10
|
__email__ = "iretbl@gmail.com"
|
|
11
11
|
|
aiecs/main.py
CHANGED
|
@@ -142,7 +142,7 @@ async def lifespan(app: FastAPI):
|
|
|
142
142
|
app = FastAPI(
|
|
143
143
|
title="AIECS - AI Execute Services",
|
|
144
144
|
description="Middleware service for AI-powered task execution and tool orchestration",
|
|
145
|
-
version="1.4.
|
|
145
|
+
version="1.4.1",
|
|
146
146
|
lifespan=lifespan
|
|
147
147
|
)
|
|
148
148
|
|
|
@@ -167,7 +167,7 @@ async def health_check():
|
|
|
167
167
|
return {
|
|
168
168
|
"status": "healthy",
|
|
169
169
|
"service": "aiecs",
|
|
170
|
-
"version": "1.4.
|
|
170
|
+
"version": "1.4.1"
|
|
171
171
|
}
|
|
172
172
|
|
|
173
173
|
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
aiecs/__init__.py,sha256=
|
|
1
|
+
aiecs/__init__.py,sha256=fb_uYsyBbfL6G4E9tKCaZMLPHQBDUQ-FScTNFgWBrt4,1859
|
|
2
2
|
aiecs/__main__.py,sha256=AfQpzy3SgwWuP4DuymYcm4MISMuzqwhxxGSYo53PBvY,1035
|
|
3
3
|
aiecs/aiecs_client.py,sha256=gIqecRBBH_bYIWhqiHCemdVgmGb9Jqdxf1b6RoqXWlQ,17276
|
|
4
|
-
aiecs/main.py,sha256=
|
|
4
|
+
aiecs/main.py,sha256=F5oXIOnmwULnfCWk7X7fej3q-W4gFrjVhLaMPFw4Dpk,10837
|
|
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
|
|
@@ -39,7 +39,7 @@ aiecs/domain/agent/prompts/builder.py,sha256=vYjCLGMdifpe-jdpy71FoLo6U3lxrMEkn7y
|
|
|
39
39
|
aiecs/domain/agent/prompts/formatters.py,sha256=CYva2umS6G-82B1JgRGbwlSOMqOaK3S4-DRHZ4HxsSM,4605
|
|
40
40
|
aiecs/domain/agent/prompts/template.py,sha256=jk_k-z9Hz5lr7shQwv4qfiFBXMWXq_ZxGuxSapfodjs,7543
|
|
41
41
|
aiecs/domain/agent/tools/__init__.py,sha256=hQVIzYR1TK-tf3f7GBG4EkPBqoWU2tywJ1wwYofGbJY,227
|
|
42
|
-
aiecs/domain/agent/tools/schema_generator.py,sha256=
|
|
42
|
+
aiecs/domain/agent/tools/schema_generator.py,sha256=yiOJRqPT2UlJ_6d8s_MhGJZi1xoQqWW791bwqJ7lJQE,6862
|
|
43
43
|
aiecs/domain/community/__init__.py,sha256=SxP6IVtG6ZO5LSwzFEzOKAWjjsKO91s2Xgbp92L4R2I,3606
|
|
44
44
|
aiecs/domain/community/agent_adapter.py,sha256=QAIex0ftCSNlyC9eZPAOLtwCsX6kJrxGoC6rMq0gqgc,16070
|
|
45
45
|
aiecs/domain/community/analytics.py,sha256=M7uwkS5DLSYc4OA3H26CkHJigj7BG7aMtihO8piLZLw,18316
|
|
@@ -152,7 +152,7 @@ aiecs/tools/docs/document_creator_tool.py,sha256=QLHKEBvZjtDSgaT1a0a7SrjbPlfSJyV
|
|
|
152
152
|
aiecs/tools/docs/document_layout_tool.py,sha256=L5ZyFyShNX6FW1e374m21ZpvNs8eZsmj8l85LFRq2xo,45234
|
|
153
153
|
aiecs/tools/docs/document_parser_tool.py,sha256=TuECotyEh9lirZ2L3-lixBTTvhJtJpNTt188z8GIejw,38366
|
|
154
154
|
aiecs/tools/docs/document_writer_tool.py,sha256=BPfBiv2D9NSdjDD_ByFTfiYTqTSexSNWBmj_gfLpA9c,69061
|
|
155
|
-
aiecs/tools/search_tool/__init__.py,sha256=
|
|
155
|
+
aiecs/tools/search_tool/__init__.py,sha256=tn2vBakmr2tExbUtfiCjhUL_KVqkhZFEHU-t6XbG9hw,2664
|
|
156
156
|
aiecs/tools/search_tool/analyzers.py,sha256=d34NT5PKNamOJtVyGkmjD3Tk3EE32vSzM-gWSw8VO9s,21266
|
|
157
157
|
aiecs/tools/search_tool/cache.py,sha256=VMTmT9ctV_9uT62SElTav9QKwlrAQO4E-70NLZcQzN0,8745
|
|
158
158
|
aiecs/tools/search_tool/constants.py,sha256=A_y8YYfqspeCMCfQA3Tw8EO8IiudZ3YwFhjj-mGYAN8,2586
|
|
@@ -195,9 +195,9 @@ aiecs/utils/prompt_loader.py,sha256=cBS2bZXpYQOWSiOGkhwIzyy3_bETqwIblRi_9qQT9iQ,
|
|
|
195
195
|
aiecs/utils/token_usage_repository.py,sha256=1xjenLYwC0YT6lKZFEGO4scRCXLuWdec2MWjzih5SZY,10210
|
|
196
196
|
aiecs/ws/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
197
197
|
aiecs/ws/socket_server.py,sha256=j_9idVY_rWlTsF51FgmuhWCWFVt7_gAHL8vNg3IxV5g,1476
|
|
198
|
-
aiecs-1.4.
|
|
199
|
-
aiecs-1.4.
|
|
200
|
-
aiecs-1.4.
|
|
201
|
-
aiecs-1.4.
|
|
202
|
-
aiecs-1.4.
|
|
203
|
-
aiecs-1.4.
|
|
198
|
+
aiecs-1.4.1.dist-info/licenses/LICENSE,sha256=_1YRaIS0eZu1pv6xfz245UkU0i1Va2B841hv3OWRwqg,12494
|
|
199
|
+
aiecs-1.4.1.dist-info/METADATA,sha256=4sbX5_awoM0Sa46qPgBbmmg7qntdzTeM4ROSHyFAyfg,16635
|
|
200
|
+
aiecs-1.4.1.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
201
|
+
aiecs-1.4.1.dist-info/entry_points.txt,sha256=TfLBuwLOfgQqKvnoF1sgTS19-Hgl0aWvCZjIdblIiig,667
|
|
202
|
+
aiecs-1.4.1.dist-info/top_level.txt,sha256=22IlUlOqh9Ni3jXlQNMNUqzbW8dcxXPeR_EQ-BJVcV8,6
|
|
203
|
+
aiecs-1.4.1.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|