aiecs 1.0.1__py3-none-any.whl → 1.0.3__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 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.0.0"
8
+ __version__ = "1.0.3"
9
9
  __author__ = "AIECS Team"
10
10
  __email__ = "iretbl@gmail.com"
11
11
 
aiecs/domain/__init__.py CHANGED
@@ -6,6 +6,11 @@ Contains business logic and domain models.
6
6
  from .execution.model import TaskStepResult, TaskStatus, ErrorCode
7
7
  from .task.model import TaskContext, DSLStep
8
8
  from .task.dsl_processor import DSLProcessor
9
+ from .context import (
10
+ ContextEngine, SessionMetrics, ConversationMessage,
11
+ ConversationParticipant, ConversationSession, AgentCommunicationMessage,
12
+ create_session_key, validate_conversation_isolation_pattern
13
+ )
9
14
 
10
15
  __all__ = [
11
16
  # Execution domain
@@ -17,4 +22,14 @@ __all__ = [
17
22
  "TaskContext",
18
23
  "DSLStep",
19
24
  "DSLProcessor",
25
+
26
+ # Context domain
27
+ "ContextEngine",
28
+ "SessionMetrics",
29
+ "ConversationMessage",
30
+ "ConversationParticipant",
31
+ "ConversationSession",
32
+ "AgentCommunicationMessage",
33
+ "create_session_key",
34
+ "validate_conversation_isolation_pattern",
20
35
  ]
aiecs/main.py CHANGED
@@ -106,7 +106,7 @@ async def lifespan(app: FastAPI):
106
106
  app = FastAPI(
107
107
  title="AIECS - AI Execute Services",
108
108
  description="Middleware service for AI-powered task execution and tool orchestration",
109
- version="1.0.0",
109
+ version="1.0.3",
110
110
  lifespan=lifespan
111
111
  )
112
112
 
@@ -239,3 +239,4 @@ aiecs/scripts/
239
239
 
240
240
 
241
241
 
242
+
@@ -307,3 +307,4 @@ print(report)
307
307
 
308
308
 
309
309
 
310
+
@@ -855,3 +855,4 @@ if __name__ == "__main__":
855
855
 
856
856
 
857
857
 
858
+
@@ -346,3 +346,4 @@ if __name__ == "__main__":
346
346
 
347
347
 
348
348
 
349
+
@@ -267,3 +267,4 @@ if __name__ == "__main__":
267
267
 
268
268
 
269
269
 
270
+
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: aiecs
3
- Version: 1.0.1
3
+ Version: 1.0.3
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
@@ -1,7 +1,7 @@
1
- aiecs/__init__.py,sha256=KRDxAtJkyuZ6cJD8J_A_zgCpoBw8vM6ASGMyZodm-eM,1859
1
+ aiecs/__init__.py,sha256=R6S5jWVBqOv_m5sy6E2egIpBBN9WCOy1jmhxF444TsE,1859
2
2
  aiecs/__main__.py,sha256=AfQpzy3SgwWuP4DuymYcm4MISMuzqwhxxGSYo53PBvY,1035
3
3
  aiecs/aiecs_client.py,sha256=gJbCY6zuHR9TZPCgHhxd-d4CwCW9P_lUrtTSC5-ADWE,10527
4
- aiecs/main.py,sha256=Cqae4VgROn3F6kvrS9ggwjOkoFjorqNAUReDK33TGKM,9306
4
+ aiecs/main.py,sha256=BoO3y02TBBeya-tLT-YE6MFADN916maA1I5NPTG6zQk,9306
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
@@ -12,7 +12,7 @@ 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=a_cGb8TCaa-azcNpetGHvTFprPb6SlcJt-tfJ5GC2N8,397
15
+ aiecs/domain/__init__.py,sha256=fwcoCiZxcRmXPhRUEiYVYdY9QAB29Dmst1oPJC9jYvU,875
16
16
  aiecs/domain/context/__init__.py,sha256=ljKpQg1THBPRM61vVCEc97-bJl7z5qaP8pQs-lXlBzA,863
17
17
  aiecs/domain/context/content_engine.py,sha256=1Ex2sMI7wRpFrvHE6srkk2JQBaNAau75ZzQVmSxEbIA,36045
18
18
  aiecs/domain/context/conversation_models.py,sha256=HoxMXoZGyhMXbk8AcA-vMa-G--ulY4yew2VeGFHxgZU,13006
@@ -41,17 +41,17 @@ aiecs/llm/custom_callbacks.py,sha256=DyEbd1iSwiD8rN3cn96thCxFqk0JFwpBJLZdHijRv7I
41
41
  aiecs/llm/openai_client.py,sha256=Dmuo_91AiuM_57QuDiqkFdWFD3Jr-m4xJ89gKihivCs,4388
42
42
  aiecs/llm/vertex_client.py,sha256=r_geBuF800g0CyUUAGmxYRjjTd9_X-H8rJ1vGeIvZ6U,8592
43
43
  aiecs/llm/xai_client.py,sha256=CMCDdHh7uBGlFdYqTo4EKp7ZenjZIawtL5oWVVvLVCY,6800
44
- aiecs/scripts/DEPENDENCY_SYSTEM_SUMMARY.md,sha256=K6V1Ugbxx-I-2w1GfS9y7wA4Spgb0mvC3qApBfUgpoc,5865
45
- aiecs/scripts/README_DEPENDENCY_CHECKER.md,sha256=pE-ISxRycwUvn2EZeOzbtfSTVQPs2ui-_PGJAR50JRQ,6002
44
+ aiecs/scripts/DEPENDENCY_SYSTEM_SUMMARY.md,sha256=u2OLwmXaRGuTwEfj3jQ_yzAO_Z49P1CBC1pV3iULuoE,5866
45
+ aiecs/scripts/README_DEPENDENCY_CHECKER.md,sha256=7sAyeiMN7I-RsTOudo_JO2CTbC5ObEV0z_YyGtjiMcI,6003
46
46
  aiecs/scripts/README_WEASEL_PATCH.md,sha256=h0e3Xy6FArLgjika3pRZRhZRbyuj6iLzTU-AhHkWE7M,3581
47
47
  aiecs/scripts/__init__.py,sha256=cVxQ5iqym520eDQSpV7B6hWolndCLMOVdvhC_D280PE,66
48
- aiecs/scripts/dependency_checker.py,sha256=1BpwodgHTGeMcr7rGH0vnAokPCMOJTczzAUSzGiTOS0,33836
49
- aiecs/scripts/dependency_fixer.py,sha256=0X8Eojf9N0yba2znEYrIwa7kWCKzZbV1OlnRwlrjq-Y,13961
48
+ aiecs/scripts/dependency_checker.py,sha256=XVBQQrPPyif7mfq4P7vs0IkmtiAddb9aSTtJCxyI_18,33837
49
+ aiecs/scripts/dependency_fixer.py,sha256=yXp5uj2elXGUrEco8_42nsD9VlUGSsyaG-qiMoF5Ab0,13962
50
50
  aiecs/scripts/download_nlp_data.py,sha256=P2ObKS2P7oGCQU257mByU8Ca4-UXpfH8ZrgOUYT12Ys,10985
51
51
  aiecs/scripts/fix_weasel_validator.py,sha256=w_s2VTIAgWPi-3VUXlrINBkLm9765QHdRf4g5RzBUug,4073
52
52
  aiecs/scripts/fix_weasel_validator.sh,sha256=XqV3Yx1wi23dWXDbofFK6_SU0BVLr9E1HaIudIuem7Q,2736
53
53
  aiecs/scripts/patch_weasel_library.sh,sha256=5mF6G2uL_K5zU4Sgf28W3c3-JI5lR-xuVk181LtWdVc,5489
54
- aiecs/scripts/quick_dependency_check.py,sha256=-Foin8lz6LN6pV6Gxzd3N7UcQA9_rkM3SJdQLErA8uU,9827
54
+ aiecs/scripts/quick_dependency_check.py,sha256=KUDhwuPocaH2jYPCBfNVF0o1dtINAVf__UcQV-ZYswQ,9828
55
55
  aiecs/scripts/run_weasel_patch.sh,sha256=bwyFyeaITwDmG2_3HsTd7PHeexahh6MhEZwUuAC_85c,1233
56
56
  aiecs/scripts/setup_nlp_data.sh,sha256=CqO-bLVc_mLhNpsSoXZjvJKhtLUbA_gYBqfp3nzUuRI,5843
57
57
  aiecs/tasks/__init__.py,sha256=__xkKqXWQ24FkySb8xtsCCJYLKnqmHKbAnojxeELEiE,90
@@ -82,9 +82,9 @@ aiecs/utils/prompt_loader.py,sha256=cBS2bZXpYQOWSiOGkhwIzyy3_bETqwIblRi_9qQT9iQ,
82
82
  aiecs/utils/token_usage_repository.py,sha256=cSu2lQq7obNrjYBdtvqkCeWeApscHVcYa9JNgl3T3gU,10206
83
83
  aiecs/ws/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
84
84
  aiecs/ws/socket_server.py,sha256=j_9idVY_rWlTsF51FgmuhWCWFVt7_gAHL8vNg3IxV5g,1476
85
- aiecs-1.0.1.dist-info/licenses/LICENSE,sha256=_1YRaIS0eZu1pv6xfz245UkU0i1Va2B841hv3OWRwqg,12494
86
- aiecs-1.0.1.dist-info/METADATA,sha256=tRQdJ7E_SGsY28EGauleXzQE5UAiZ1cebT7WLnjo1CI,16388
87
- aiecs-1.0.1.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
88
- aiecs-1.0.1.dist-info/entry_points.txt,sha256=0Bj2pSaZM-ADKTktbCQ0KQxRe0s8mQFKVsg3IGDJGqA,342
89
- aiecs-1.0.1.dist-info/top_level.txt,sha256=22IlUlOqh9Ni3jXlQNMNUqzbW8dcxXPeR_EQ-BJVcV8,6
90
- aiecs-1.0.1.dist-info/RECORD,,
85
+ aiecs-1.0.3.dist-info/licenses/LICENSE,sha256=_1YRaIS0eZu1pv6xfz245UkU0i1Va2B841hv3OWRwqg,12494
86
+ aiecs-1.0.3.dist-info/METADATA,sha256=NKy3juoWfQb2dEJLlcHX6HA_cUy_imbJUqiyK2GS-xE,16388
87
+ aiecs-1.0.3.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
88
+ aiecs-1.0.3.dist-info/entry_points.txt,sha256=0Bj2pSaZM-ADKTktbCQ0KQxRe0s8mQFKVsg3IGDJGqA,342
89
+ aiecs-1.0.3.dist-info/top_level.txt,sha256=22IlUlOqh9Ni3jXlQNMNUqzbW8dcxXPeR_EQ-BJVcV8,6
90
+ aiecs-1.0.3.dist-info/RECORD,,
File without changes