isagellm-core 0.2.2.0__cp311-none-any.whl → 0.2.2.1__cp311-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.
- {isagellm_core-0.2.2.0.dist-info → isagellm_core-0.2.2.1.dist-info}/METADATA +6 -1
- {isagellm_core-0.2.2.0.dist-info → isagellm_core-0.2.2.1.dist-info}/RECORD +7 -7
- sagellm_core/__init__.py +1 -1
- sagellm_core/__init__.pyc +0 -0
- {isagellm_core-0.2.2.0.dist-info → isagellm_core-0.2.2.1.dist-info}/WHEEL +0 -0
- {isagellm_core-0.2.2.0.dist-info → isagellm_core-0.2.2.1.dist-info}/entry_points.txt +0 -0
- {isagellm_core-0.2.2.0.dist-info → isagellm_core-0.2.2.1.dist-info}/top_level.txt +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: isagellm-core
|
|
3
|
-
Version: 0.2.2.
|
|
3
|
+
Version: 0.2.2.1
|
|
4
4
|
Summary: sageLLM core runtime (config/observability/registries), plugin-ready
|
|
5
5
|
Author: IntelliStream Team
|
|
6
6
|
License: Proprietary - IntelliStream
|
|
@@ -26,6 +26,11 @@ Requires-Dist: pre-commit>=3.0.0; extra == "dev"
|
|
|
26
26
|
|
|
27
27
|
# sagellm-core
|
|
28
28
|
|
|
29
|
+
## Protocol Compliance (Mandatory)
|
|
30
|
+
|
|
31
|
+
- MUST follow Protocol v0.1: https://github.com/intellistream/sagellm-docs/blob/main/docs/specs/protocol_v0.1.md
|
|
32
|
+
- Any globally shared definitions (fields, error codes, metrics, IDs, schemas) MUST be added to Protocol first.
|
|
33
|
+
|
|
29
34
|
[](https://github.com/intellistream/sagellm-core/actions/workflows/ci.yml)
|
|
30
35
|
[](https://pypi.org/project/isagellm-core/)
|
|
31
36
|
[](https://pypi.org/project/isagellm-core/)
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
sagellm_core/__init__.py,sha256=
|
|
2
|
-
sagellm_core/__init__.pyc,sha256=
|
|
1
|
+
sagellm_core/__init__.py,sha256=5C2PV2c-W0oRfkJUCi_n6uRPF7q7yw33JIVYMaxnPTc,3029
|
|
2
|
+
sagellm_core/__init__.pyc,sha256=nK7wOPBhSUDpwOL4aWpHMQA0pNtFaJMdXwdH4u7ifg4,2974
|
|
3
3
|
sagellm_core/__main__.pyc,sha256=4wEXHFB0JVZaI6wLACU59_b-LfEbujTQZyzONaalAYA,384
|
|
4
4
|
sagellm_core/base_engine.pyc,sha256=XANZ2YIQGyhI6GqBvoZdmYkMblO3N2eMWHhU4waJZIg,9823
|
|
5
5
|
sagellm_core/config.pyc,sha256=8gGOOBcHRSSv883bDIJNXzB069ntBc0yYEf-PFAeWdU,9617
|
|
@@ -40,8 +40,8 @@ sagellm_core/engines/__pycache__/hf_cuda.cpython-311.pyc,sha256=RjPewreHvv_9N_iS
|
|
|
40
40
|
sagellm_core/engines/__pycache__/mock.cpython-311.pyc,sha256=O5j1RVjz8mAgoA0Aogt_3bVmChAtuJSrjMgDFB8YTAI,14641
|
|
41
41
|
sagellm_core/engines/__pycache__/pytorch.cpython-311.pyc,sha256=grmN4cmJmGdeO89jBPllYZGlB8gbRDYA2Zzy7pPWCjQ,18443
|
|
42
42
|
sagellm_core/engines/__pycache__/pytorch_engine.cpython-311.pyc,sha256=UUzGwsrfgX5Byax7yf7dv-tj0oeTMGEhR6dcV1wDjKQ,11677
|
|
43
|
-
isagellm_core-0.2.2.
|
|
44
|
-
isagellm_core-0.2.2.
|
|
45
|
-
isagellm_core-0.2.2.
|
|
46
|
-
isagellm_core-0.2.2.
|
|
47
|
-
isagellm_core-0.2.2.
|
|
43
|
+
isagellm_core-0.2.2.1.dist-info/METADATA,sha256=afexxSMZfLVfw8TS63-4sJ4ZZfgIyMS3hhOkxANB8F4,10859
|
|
44
|
+
isagellm_core-0.2.2.1.dist-info/WHEEL,sha256=ZJeWpR6hcCRGwxVKXlDk-HsGwijNyTq4fszaDj4Ycyo,93
|
|
45
|
+
isagellm_core-0.2.2.1.dist-info/entry_points.txt,sha256=FoTEGna8tmx20UEjrNJGXOOgUnfIbNbdCyhxlDiSfHA,303
|
|
46
|
+
isagellm_core-0.2.2.1.dist-info/top_level.txt,sha256=wcgdWrvkaoYYh_dWSFI5Toi8PZsHutVqfhTB2tb0K6g,13
|
|
47
|
+
isagellm_core-0.2.2.1.dist-info/RECORD,,
|
sagellm_core/__init__.py
CHANGED
sagellm_core/__init__.pyc
CHANGED
|
Binary file
|
|
File without changes
|
|
File without changes
|
|
File without changes
|