cks-runtime 0.4.1__tar.gz → 0.4.2__tar.gz
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.
- {cks_runtime-0.4.1 → cks_runtime-0.4.2}/PKG-INFO +3 -3
- {cks_runtime-0.4.1 → cks_runtime-0.4.2}/README.md +1 -1
- {cks_runtime-0.4.1 → cks_runtime-0.4.2}/cks_runtime/config.py +1 -1
- {cks_runtime-0.4.1 → cks_runtime-0.4.2}/cks_runtime/core_api/validation_result.py +4 -2
- {cks_runtime-0.4.1 → cks_runtime-0.4.2}/cks_runtime.egg-info/PKG-INFO +3 -3
- {cks_runtime-0.4.1 → cks_runtime-0.4.2}/cks_runtime.egg-info/requires.txt +1 -1
- {cks_runtime-0.4.1 → cks_runtime-0.4.2}/pyproject.toml +2 -2
- {cks_runtime-0.4.1 → cks_runtime-0.4.2}/LICENSE +0 -0
- {cks_runtime-0.4.1 → cks_runtime-0.4.2}/cks_runtime/__init__.py +0 -0
- {cks_runtime-0.4.1 → cks_runtime-0.4.2}/cks_runtime/adapters/__init__.py +0 -0
- {cks_runtime-0.4.1 → cks_runtime-0.4.2}/cks_runtime/adapters/mcp/__init__.py +0 -0
- {cks_runtime-0.4.1 → cks_runtime-0.4.2}/cks_runtime/adapters/mcp/adapter.py +0 -0
- {cks_runtime-0.4.1 → cks_runtime-0.4.2}/cks_runtime/adapters/mcp/contracts.py +0 -0
- {cks_runtime-0.4.1 → cks_runtime-0.4.2}/cks_runtime/adapters/mcp/errors.py +0 -0
- {cks_runtime-0.4.1 → cks_runtime-0.4.2}/cks_runtime/adapters/mcp/handlers.py +0 -0
- {cks_runtime-0.4.1 → cks_runtime-0.4.2}/cks_runtime/adapters/mcp/serializers.py +0 -0
- {cks_runtime-0.4.1 → cks_runtime-0.4.2}/cks_runtime/adapters/mcp/tool_registry.py +0 -0
- {cks_runtime-0.4.1 → cks_runtime-0.4.2}/cks_runtime/core_api/__init__.py +0 -0
- {cks_runtime-0.4.1 → cks_runtime-0.4.2}/cks_runtime/core_api/bridge.py +0 -0
- {cks_runtime-0.4.1 → cks_runtime-0.4.2}/cks_runtime/core_api/interfaces.py +0 -0
- {cks_runtime-0.4.1 → cks_runtime-0.4.2}/cks_runtime/diagnostics/__init__.py +0 -0
- {cks_runtime-0.4.1 → cks_runtime-0.4.2}/cks_runtime/diagnostics/aggregator.py +0 -0
- {cks_runtime-0.4.1 → cks_runtime-0.4.2}/cks_runtime/diagnostics/diagnostic.py +0 -0
- {cks_runtime-0.4.1 → cks_runtime-0.4.2}/cks_runtime/dispatcher/dispatcher.py +0 -0
- {cks_runtime-0.4.1 → cks_runtime-0.4.2}/cks_runtime/events/event_bus.py +0 -0
- {cks_runtime-0.4.1 → cks_runtime-0.4.2}/cks_runtime/events/runtime_event.py +0 -0
- {cks_runtime-0.4.1 → cks_runtime-0.4.2}/cks_runtime/execution/__init__.py +0 -0
- {cks_runtime-0.4.1 → cks_runtime-0.4.2}/cks_runtime/execution/execution_context.py +0 -0
- {cks_runtime-0.4.1 → cks_runtime-0.4.2}/cks_runtime/execution/operation_executor.py +0 -0
- {cks_runtime-0.4.1 → cks_runtime-0.4.2}/cks_runtime/explainability/__init__.py +0 -0
- {cks_runtime-0.4.1 → cks_runtime-0.4.2}/cks_runtime/explainability/explainability_manager.py +0 -0
- {cks_runtime-0.4.1 → cks_runtime-0.4.2}/cks_runtime/operations/operation_registry.py +0 -0
- {cks_runtime-0.4.1 → cks_runtime-0.4.2}/cks_runtime/operations/operation_types.py +0 -0
- {cks_runtime-0.4.1 → cks_runtime-0.4.2}/cks_runtime/pipeline/__init__.py +0 -0
- {cks_runtime-0.4.1 → cks_runtime-0.4.2}/cks_runtime/pipeline/execution_pipeline.py +0 -0
- {cks_runtime-0.4.1 → cks_runtime-0.4.2}/cks_runtime/runtime.py +0 -0
- {cks_runtime-0.4.1 → cks_runtime-0.4.2}/cks_runtime/session/__init__.py +0 -0
- {cks_runtime-0.4.1 → cks_runtime-0.4.2}/cks_runtime/session/session.py +0 -0
- {cks_runtime-0.4.1 → cks_runtime-0.4.2}/cks_runtime/session/session_manager.py +0 -0
- {cks_runtime-0.4.1 → cks_runtime-0.4.2}/cks_runtime/storage/__init__.py +0 -0
- {cks_runtime-0.4.1 → cks_runtime-0.4.2}/cks_runtime/storage/memory_storage.py +0 -0
- {cks_runtime-0.4.1 → cks_runtime-0.4.2}/cks_runtime/storage/storage.py +0 -0
- {cks_runtime-0.4.1 → cks_runtime-0.4.2}/cks_runtime/transaction/__init__.py +0 -0
- {cks_runtime-0.4.1 → cks_runtime-0.4.2}/cks_runtime/transaction/transaction.py +0 -0
- {cks_runtime-0.4.1 → cks_runtime-0.4.2}/cks_runtime/transaction/transaction_manager.py +0 -0
- {cks_runtime-0.4.1 → cks_runtime-0.4.2}/cks_runtime/versioning/__init__.py +0 -0
- {cks_runtime-0.4.1 → cks_runtime-0.4.2}/cks_runtime/versioning/version.py +0 -0
- {cks_runtime-0.4.1 → cks_runtime-0.4.2}/cks_runtime/versioning/version_manager.py +0 -0
- {cks_runtime-0.4.1 → cks_runtime-0.4.2}/cks_runtime.egg-info/SOURCES.txt +0 -0
- {cks_runtime-0.4.1 → cks_runtime-0.4.2}/cks_runtime.egg-info/dependency_links.txt +0 -0
- {cks_runtime-0.4.1 → cks_runtime-0.4.2}/cks_runtime.egg-info/top_level.txt +0 -0
- {cks_runtime-0.4.1 → cks_runtime-0.4.2}/cks_runtime_plugins/__init__.py +0 -0
- {cks_runtime-0.4.1 → cks_runtime-0.4.2}/cks_runtime_plugins/cks_core/__init__.py +0 -0
- {cks_runtime-0.4.1 → cks_runtime-0.4.2}/cks_runtime_plugins/cks_core/adapter.py +0 -0
- {cks_runtime-0.4.1 → cks_runtime-0.4.2}/setup.cfg +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: cks-runtime
|
|
3
|
-
Version: 0.4.
|
|
3
|
+
Version: 0.4.2
|
|
4
4
|
Summary: Canonical Runtime for the Canonical Knowledge Structure ecosystem
|
|
5
5
|
Author: Vladyslav Hruznov
|
|
6
6
|
License: MIT
|
|
@@ -17,7 +17,7 @@ Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
|
|
|
17
17
|
Requires-Python: >=3.12
|
|
18
18
|
Description-Content-Type: text/markdown
|
|
19
19
|
License-File: LICENSE
|
|
20
|
-
Requires-Dist: cks-core>=1.
|
|
20
|
+
Requires-Dist: cks-core>=1.2.0
|
|
21
21
|
Provides-Extra: dev
|
|
22
22
|
Requires-Dist: pytest>=8.0; extra == "dev"
|
|
23
23
|
Requires-Dist: mypy>=1.0; extra == "dev"
|
|
@@ -29,7 +29,7 @@ Dynamic: license-file
|
|
|
29
29
|
|
|
30
30
|

|
|
31
31
|

|
|
32
|
-

|
|
33
33
|

|
|
34
34
|
|
|
35
35
|
CKS Runtime is the canonical execution environment for
|
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
|
|
5
5
|

|
|
6
6
|

|
|
7
|
-

|
|
8
8
|

|
|
9
9
|
|
|
10
10
|
CKS Runtime is the canonical execution environment for
|
|
@@ -5,6 +5,7 @@ Runtime Validation Result.
|
|
|
5
5
|
from __future__ import annotations
|
|
6
6
|
|
|
7
7
|
from dataclasses import dataclass, field
|
|
8
|
+
from types import MappingProxyType
|
|
8
9
|
from typing import Any, Mapping
|
|
9
10
|
|
|
10
11
|
|
|
@@ -19,8 +20,9 @@ class RuntimeValidationResult:
|
|
|
19
20
|
def __post_init__(self) -> None:
|
|
20
21
|
# diagnostics всегда должен быть кортежем
|
|
21
22
|
object.__setattr__(self, "diagnostics", tuple(self.diagnostics))
|
|
22
|
-
# metadata
|
|
23
|
-
#
|
|
23
|
+
# metadata замораживаем через MappingProxyType – теперь это безопасно,
|
|
24
|
+
# так как cks-core >=1.2.0 поддерживает deepcopy для иммутабельных объектов.
|
|
25
|
+
object.__setattr__(self, "metadata", MappingProxyType(dict(self.metadata)))
|
|
24
26
|
|
|
25
27
|
@property
|
|
26
28
|
def has_diagnostics(self) -> bool:
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: cks-runtime
|
|
3
|
-
Version: 0.4.
|
|
3
|
+
Version: 0.4.2
|
|
4
4
|
Summary: Canonical Runtime for the Canonical Knowledge Structure ecosystem
|
|
5
5
|
Author: Vladyslav Hruznov
|
|
6
6
|
License: MIT
|
|
@@ -17,7 +17,7 @@ Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
|
|
|
17
17
|
Requires-Python: >=3.12
|
|
18
18
|
Description-Content-Type: text/markdown
|
|
19
19
|
License-File: LICENSE
|
|
20
|
-
Requires-Dist: cks-core>=1.
|
|
20
|
+
Requires-Dist: cks-core>=1.2.0
|
|
21
21
|
Provides-Extra: dev
|
|
22
22
|
Requires-Dist: pytest>=8.0; extra == "dev"
|
|
23
23
|
Requires-Dist: mypy>=1.0; extra == "dev"
|
|
@@ -29,7 +29,7 @@ Dynamic: license-file
|
|
|
29
29
|
|
|
30
30
|

|
|
31
31
|

|
|
32
|
-

|
|
33
33
|

|
|
34
34
|
|
|
35
35
|
CKS Runtime is the canonical execution environment for
|
|
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "cks-runtime"
|
|
7
|
-
version = "0.4.
|
|
7
|
+
version = "0.4.2"
|
|
8
8
|
|
|
9
9
|
description = "Canonical Runtime for the Canonical Knowledge Structure ecosystem"
|
|
10
10
|
|
|
@@ -19,7 +19,7 @@ license = { text = "MIT" }
|
|
|
19
19
|
requires-python = ">=3.12"
|
|
20
20
|
|
|
21
21
|
dependencies = [
|
|
22
|
-
"cks-core>=1.
|
|
22
|
+
"cks-core>=1.2.0",
|
|
23
23
|
]
|
|
24
24
|
|
|
25
25
|
keywords = [
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{cks_runtime-0.4.1 → cks_runtime-0.4.2}/cks_runtime/explainability/explainability_manager.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|