isagellm-core 0.3.0.3__py2.py3-none-any.whl → 0.3.0.5__py2.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.
Files changed (49) hide show
  1. {isagellm_core-0.3.0.3.dist-info → isagellm_core-0.3.0.5.dist-info}/METADATA +5 -76
  2. isagellm_core-0.3.0.5.dist-info/RECORD +44 -0
  3. sagellm_core/__init__.py +3 -1
  4. sagellm_core/__init__.pyc +0 -0
  5. sagellm_core/__main__.pyc +0 -0
  6. sagellm_core/__pycache__/__init__.cpython-311.pyc +0 -0
  7. sagellm_core/__pycache__/config.cpython-311.pyc +0 -0
  8. sagellm_core/__pycache__/demo.cpython-311.pyc +0 -0
  9. sagellm_core/__pycache__/engine.cpython-311.pyc +0 -0
  10. sagellm_core/__pycache__/engine_factory.cpython-311.pyc +0 -0
  11. sagellm_core/__pycache__/factory.cpython-311.pyc +0 -0
  12. sagellm_core/__pycache__/health.cpython-311.pyc +0 -0
  13. sagellm_core/__pycache__/plugins.cpython-311.pyc +0 -0
  14. sagellm_core/__pycache__/runner.cpython-311.pyc +0 -0
  15. sagellm_core/__pycache__/workload.cpython-311.pyc +0 -0
  16. sagellm_core/config.pyc +0 -0
  17. sagellm_core/demo.pyc +0 -0
  18. sagellm_core/engine.pyc +0 -0
  19. sagellm_core/engine_factory.pyc +0 -0
  20. sagellm_core/engines/__init__.pyc +0 -0
  21. sagellm_core/engines/__pycache__/__init__.cpython-311.pyc +0 -0
  22. sagellm_core/engines/__pycache__/cpu.cpython-311.pyc +0 -0
  23. sagellm_core/engines/__pycache__/embedding.cpython-311.pyc +0 -0
  24. sagellm_core/engines/__pycache__/hf_cuda.cpython-311.pyc +0 -0
  25. sagellm_core/engines/__pycache__/pytorch.cpython-311.pyc +0 -0
  26. sagellm_core/engines/__pycache__/pytorch_engine.cpython-311.pyc +0 -0
  27. sagellm_core/engines/ascend.pyc +0 -0
  28. sagellm_core/engines/cpu.pyc +0 -0
  29. sagellm_core/engines/embedding.pyc +0 -0
  30. sagellm_core/engines/hf_cuda.pyc +0 -0
  31. sagellm_core/engines/pytorch.pyc +0 -0
  32. sagellm_core/engines/pytorch_engine.pyc +0 -0
  33. sagellm_core/factory.pyc +0 -0
  34. sagellm_core/health.pyc +0 -0
  35. sagellm_core/pd_executor.pyc +0 -0
  36. sagellm_core/plugins.pyc +0 -0
  37. sagellm_core/runner.pyc +0 -0
  38. sagellm_core/runtime.pyc +0 -0
  39. sagellm_core/workload.pyc +0 -0
  40. isagellm_core-0.3.0.3.dist-info/RECORD +0 -50
  41. sagellm_core/__pycache__/base_engine.cpython-311.pyc +0 -0
  42. sagellm_core/__pycache__/mock_engine.cpython-311.pyc +0 -0
  43. sagellm_core/__pycache__/pd_executor.cpython-311.pyc +0 -0
  44. sagellm_core/__pycache__/runtime.cpython-311.pyc +0 -0
  45. sagellm_core/engines/__pycache__/ascend.cpython-311.pyc +0 -0
  46. sagellm_core/engines/__pycache__/mock.cpython-311.pyc +0 -0
  47. {isagellm_core-0.3.0.3.dist-info → isagellm_core-0.3.0.5.dist-info}/WHEEL +0 -0
  48. {isagellm_core-0.3.0.3.dist-info → isagellm_core-0.3.0.5.dist-info}/entry_points.txt +0 -0
  49. {isagellm_core-0.3.0.3.dist-info → isagellm_core-0.3.0.5.dist-info}/top_level.txt +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: isagellm-core
3
- Version: 0.3.0.3
3
+ Version: 0.3.0.5
4
4
  Summary: sageLLM core runtime with PD separation (MVP)
5
5
  Author: IntelliStream Team
6
6
  License: Proprietary - IntelliStream
@@ -13,10 +13,10 @@ Requires-Python: ==3.11.*
13
13
  Description-Content-Type: text/markdown
14
14
  Requires-Dist: pydantic>=2.0.0
15
15
  Requires-Dist: pyyaml>=6.0.0
16
- Requires-Dist: isagellm-protocol<0.4.0,>=0.3.0.0
17
- Requires-Dist: isagellm-backend<0.4.0,>=0.3.0.0
18
- Requires-Dist: isagellm-comm<0.4.0,>=0.3.0.0
19
- Requires-Dist: isagellm-kv-cache<0.4.0,>=0.3.0.0
16
+ Requires-Dist: isagellm-protocol<0.4.0,>=0.3.0.2
17
+ Requires-Dist: isagellm-backend<0.4.0,>=0.3.0.5
18
+ Requires-Dist: isagellm-comm<0.4.0,>=0.3.0.1
19
+ Requires-Dist: isagellm-kv-cache<0.4.0,>=0.3.0.1
20
20
  Provides-Extra: dev
21
21
  Requires-Dist: pytest>=7.0.0; extra == "dev"
22
22
  Requires-Dist: pytest-cov>=4.0.0; extra == "dev"
@@ -58,11 +58,6 @@ sageLLM Core - 引擎协调层与运行时系统
58
58
  │ │ • YAML/JSON 配置解析 │ │
59
59
  │ │ • Pydantic v2 类型验证 │ │
60
60
  │ └─────────────────────────────────────────────────────┘ │
61
- │ ┌─────────────────────────────────────────────────────┐ │
62
- │ │ Demo Runner (runner.py) │ │
63
- │ │ • 协调 backend + engine + workload │ │
64
- │ │ • M1 Demo Contract 验证 │ │
65
- │ └─────────────────────────────────────────────────────┘ │
66
61
  ├─────────────────────────────────────────────────────────────┤
67
62
  │ sagellm-backend (硬件抽象层) │
68
63
  │ • BackendProvider (CPU/CUDA/Ascend) │
@@ -81,7 +76,6 @@ sageLLM Core - 引擎协调层与运行时系统
81
76
  - 🏭 EngineFactory - 支持自动发现与优先级选择
82
77
  - 🎯 内置引擎实现(CPU/CUDA/Embedding)
83
78
  - 🔌 插件系统 - 扩展引擎与后端
84
- - 📊 Demo Runner - M1 验证框架
85
79
  - ⚙️ 配置系统 - YAML/JSON + Pydantic v2
86
80
  - ✅ CPU-First - 无 GPU 测试支持
87
81
 
@@ -108,11 +102,6 @@ pip install -e ".[dev]"
108
102
  pytest tests/ -v
109
103
  ```
110
104
 
111
- 运行 Demo(CPU 模式):
112
- ```bash
113
- python -m sagellm_core.demo --segments short
114
- ```
115
-
116
105
  > 💡 **提示**:`isagellm-protocol` 和 `isagellm-backend` 会自动从 PyPI 安装。
117
106
  > 如需本地联调:
118
107
  > ```bash
@@ -142,23 +131,9 @@ Main configuration components:
142
131
  - `EngineConfig`: Inference engine configuration
143
132
  - `WorkloadConfig`: Workload parameters
144
133
  - `OutputConfig`: Output paths and logging
145
- - `DemoConfig`: Top-level demo configuration
146
134
 
147
135
  ### 配置示例
148
136
 
149
- #### 快速开始
150
-
151
- ```bash
152
- # CPU 模式(无需 GPU)
153
- python -m sagellm.demo --config examples/config_cpu.yaml
154
-
155
- # CUDA 生产模式
156
- python -m sagellm.demo --config examples/config_cuda.yaml
157
-
158
- # 昇腾生产模式
159
- python -m sagellm.demo --config examples/config_ascend.yaml
160
- ```
161
-
162
137
  #### 示例配置文件
163
138
 
164
139
  - [config_cpu.yaml](examples/config_cpu.yaml) - CPU 模式(CI/开发)
@@ -200,52 +175,6 @@ except PluginResolutionError as e:
200
175
  # Install hint: pip install isagellm-backend-ascend_cann
201
176
  ```
202
177
 
203
- ## Demo Runner CLI (Task0.08)
204
-
205
- sagellm-core 提供了 Demo Runner CLI,用于执行 M1 Demo Contract 验证:
206
-
207
- ### 用法
208
-
209
- ```bash
210
- # 使用配置文件运行
211
- python -m sagellm_core.demo --config examples/demo_config.yaml
212
-
213
- # 强制使用 CPU 模式(覆盖配置文件)
214
- python -m sagellm_core.demo --config config.yaml --backend cpu
215
-
216
- # 覆盖 workload 段选择
217
- python -m sagellm_core.demo --config config.yaml --segments short,long
218
-
219
- # 覆盖输出路径
220
- python -m sagellm_core.demo --config config.yaml --output /tmp/metrics.json
221
-
222
- # 启用 streaming 模式和详细日志
223
- python -m sagellm_core.demo --config config.yaml --stream --verbose
224
- ```
225
-
226
- ### 示例配置
227
-
228
- 参见 [examples/demo_config.yaml](examples/demo_config.yaml):
229
-
230
- ```yaml
231
- backend:
232
- kind: cpu
233
- device: cpu
234
-
235
- engine:
236
- kind: cpu
237
- model: sshleifer/tiny-gpt2
238
-
239
- workload:
240
- segments: [short, long, stress]
241
- concurrency: 4
242
- kv_budget_tokens: 8192
243
-
244
- output:
245
- metrics_path: ./output/metrics.json
246
- report_path: ./output/report.md
247
- ```
248
-
249
178
  ## Development Guide
250
179
 
251
180
  ### 快速开始
@@ -0,0 +1,44 @@
1
+ sagellm_core/__init__.py,sha256=JTvYEkJb2HmKJijh4aRtqwA4d0GB7NNNbE5ULvEbIek,3475
2
+ sagellm_core/__init__.pyc,sha256=0MHt6UlCSo3iWcJV8tGa5MjU3OkaiZEMR7jZE96Ocs8,3379
3
+ sagellm_core/__main__.pyc,sha256=EV7-2pRVHwHPTZxaObqiwPiP-uoFLKY-VR3dndvvs1g,384
4
+ sagellm_core/config.pyc,sha256=3z34OxQd-6UVr1iixJy6TB4HJehmnCgaLksx6yBDjvg,8453
5
+ sagellm_core/demo.pyc,sha256=lMOjuQbFTzgGAiT-PfUaRk14T6htqUKVDtYQrZVhlV4,6028
6
+ sagellm_core/engine.pyc,sha256=_fz-N0Rks0RlcWXOe6NY2HptUvdMBVmVGt71cWlGkOo,12258
7
+ sagellm_core/engine_factory.pyc,sha256=O2OPMhtvhXSZR8ZDRO5MifltoSb4j8lBaCzVmVAhu6A,14886
8
+ sagellm_core/factory.pyc,sha256=AjDSFuMNPWSTuauBUvhH2PdxWdXp2wBCk4oJ3M8Ac1A,2737
9
+ sagellm_core/health.pyc,sha256=h_ktGxiaZMdt-bjMECKQFsZRx0NA3BSoBJ8qpItd47Y,684
10
+ sagellm_core/pd_executor.pyc,sha256=MbtivfEF_BgeaACkvxXinH0j91rWU5xVKtQckbbsN7w,17784
11
+ sagellm_core/plugins.pyc,sha256=gDZbziN-7qzqEIzfokexugqrNwzn8OSa0mdF9WUhRdk,2617
12
+ sagellm_core/py.typed,sha256=ixa8YukDZ3kLo0WsFJRGohLMyHzbMur1ALmmASML2cs,64
13
+ sagellm_core/runner.pyc,sha256=IPFgmHnscDPN7kLvEiuH7sFV2xRsq9U3bWZNuCLpsDI,14238
14
+ sagellm_core/runtime.pyc,sha256=Ak__Z-laWuOvd2t_7NBmxXW_SKriuiLXgEe6Uu9jczA,10018
15
+ sagellm_core/workload.pyc,sha256=wVkQitgU5J62_JtyzMDb99tGCOFtdtFzrMtFq2PhI34,4127
16
+ sagellm_core/__pycache__/__init__.cpython-311.pyc,sha256=KxzNkq7Qomugn7EP5s0MLFdQueWcD5a43xwJUPXOY_U,2788
17
+ sagellm_core/__pycache__/config.cpython-311.pyc,sha256=KAXHiAkSZnHFKqre0xw-VUKqxPwDU2a1LMCOxvz3Blk,8483
18
+ sagellm_core/__pycache__/demo.cpython-311.pyc,sha256=McaAAOYeG9G1eUa0_lzgN-DJNrp_u8Smph24Ku9ZB-U,6058
19
+ sagellm_core/__pycache__/engine.cpython-311.pyc,sha256=5i5PsdLI7ADgQfLGy6CBlXixp4sgBywMFXXmxtHq6Ho,9778
20
+ sagellm_core/__pycache__/engine_factory.cpython-311.pyc,sha256=hLi8aGdH9HyY-cUGHalXeWLuhGAMdljO3QGmQEWZ3e8,14916
21
+ sagellm_core/__pycache__/factory.cpython-311.pyc,sha256=cyN7MvZiBn1-wpsMzFbWl4RPGZMDkIBv8nV2X-NFEyk,2767
22
+ sagellm_core/__pycache__/health.cpython-311.pyc,sha256=DCQ3n00ac5LvWVogrcZs1-4N91OBlmRyz7RKmgJi7Xk,714
23
+ sagellm_core/__pycache__/plugins.cpython-311.pyc,sha256=d_Gs-14efXC5yinGNSXiB58pKvG37XTHh0cqrKqy3IA,2647
24
+ sagellm_core/__pycache__/runner.cpython-311.pyc,sha256=LN2lSeBsFq9B3LG6Mk89fvZ6pcMgEuat5D3d5s41Y_M,14268
25
+ sagellm_core/__pycache__/workload.cpython-311.pyc,sha256=jIPAkq21cJzNotwYXEzisYElq5nBmAc1vEYN4HJvdoM,4157
26
+ sagellm_core/engines/__init__.py,sha256=dK5-xPVkGftvSUDg7B6rNuaMohibckfXrklaWFzz_Jo,1418
27
+ sagellm_core/engines/__init__.pyc,sha256=60M252aAiYAyWtvmH5ia1gebC7MyrZmjU37fGWW20Lw,1438
28
+ sagellm_core/engines/ascend.pyc,sha256=K-0pRFEtuCN30418n8_-ywehZiy7AYyW5797rnFNGMA,17263
29
+ sagellm_core/engines/cpu.pyc,sha256=brHH2mT8bf9kZCpkUdMU-Isl9ahekuM3M7wUBgSpVfQ,27833
30
+ sagellm_core/engines/embedding.pyc,sha256=OdEvmArXhNd0gpW9qUr80KFrE2gxMRhwi9tW3wWqxps,11476
31
+ sagellm_core/engines/hf_cuda.pyc,sha256=er3YI-dfJCIQ8qeMhH466zsI8tof5N4iLZtE11thq9U,61103
32
+ sagellm_core/engines/pytorch.pyc,sha256=aiulIwc3YJ9Prm7WswTtklwIEreOGwhmOs0l70oPN4w,18408
33
+ sagellm_core/engines/pytorch_engine.pyc,sha256=pxt1kRU4gr3KBQ9x4594u3n7riZTOhIuQIOkb1VJRHI,11645
34
+ sagellm_core/engines/__pycache__/__init__.cpython-311.pyc,sha256=NjMDwyo0bjQBB_7z4GRKjMURxRCROeNttla7goMbJU4,1148
35
+ sagellm_core/engines/__pycache__/cpu.cpython-311.pyc,sha256=41Bns7LA7h9YjLS4LuZgJS3tYgNu2nvcbo4OlCqu0B0,20139
36
+ sagellm_core/engines/__pycache__/embedding.cpython-311.pyc,sha256=FLJ3P9xBo481DAYL3caolgAUYzcTcUEiYu-dPknmzIo,11506
37
+ sagellm_core/engines/__pycache__/hf_cuda.cpython-311.pyc,sha256=sb2ZUP94qO5O7MVQkQDAcNiUTAAnsXDWrRyyc2muW70,50370
38
+ sagellm_core/engines/__pycache__/pytorch.cpython-311.pyc,sha256=C-ZNeh30VXfIefU_pmCvmCIAEamhhI6tX2KPRZtG9Yw,18438
39
+ sagellm_core/engines/__pycache__/pytorch_engine.cpython-311.pyc,sha256=A8YP-Q2eR67bRvP-I33N6a90z8ktjVrGMCcGm_7LERU,11675
40
+ isagellm_core-0.3.0.5.dist-info/METADATA,sha256=XU2_u9d5-HV9RPSy30x8BAn4unX9jX0EazHopnzQ6yM,8916
41
+ isagellm_core-0.3.0.5.dist-info/WHEEL,sha256=JNWh1Fm1UdwIQV075glCn4MVuCRs0sotJIq-J6rbxCU,109
42
+ isagellm_core-0.3.0.5.dist-info/entry_points.txt,sha256=IQcDdYSQnAR1R0O9J2EpBt1RUGd2xJgJQwZNVL6peag,247
43
+ isagellm_core-0.3.0.5.dist-info/top_level.txt,sha256=wcgdWrvkaoYYh_dWSFI5Toi8PZsHutVqfhTB2tb0K6g,13
44
+ isagellm_core-0.3.0.5.dist-info/RECORD,,
sagellm_core/__init__.py CHANGED
@@ -12,6 +12,8 @@
12
12
 
13
13
  from __future__ import annotations
14
14
 
15
+ __version__ = "0.3.0.5"
16
+
15
17
  from sagellm_core.engine import BaseEngine, EngineInstanceConfig
16
18
  from sagellm_core.config import (
17
19
  BackendConfig,
@@ -86,7 +88,7 @@ try:
86
88
  except Exception:
87
89
  pass # torch or transformers not available
88
90
 
89
- __version__ = "0.3.0.3"
91
+ __version__ = "0.3.0.5"
90
92
 
91
93
  __all__ = [
92
94
  # Version
sagellm_core/__init__.pyc CHANGED
Binary file
sagellm_core/__main__.pyc CHANGED
Binary file
sagellm_core/config.pyc CHANGED
Binary file
sagellm_core/demo.pyc CHANGED
Binary file
sagellm_core/engine.pyc CHANGED
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
sagellm_core/factory.pyc CHANGED
Binary file
sagellm_core/health.pyc CHANGED
Binary file
Binary file
sagellm_core/plugins.pyc CHANGED
Binary file
sagellm_core/runner.pyc CHANGED
Binary file
sagellm_core/runtime.pyc CHANGED
Binary file
sagellm_core/workload.pyc CHANGED
Binary file
@@ -1,50 +0,0 @@
1
- sagellm_core/__init__.py,sha256=Z1bZaFgNR4rHTW7oiXFz6KfDYjjD19zuRogoFP7cXHQ,3450
2
- sagellm_core/__init__.pyc,sha256=JRvsH6L0BHmgm74vxNW9LIDdjiGNXr6pd6jKvKvNHXs,3370
3
- sagellm_core/__main__.pyc,sha256=48Ej1ycqV-z87qawGOTNBKNgY3EcbffUOOXrDecOR3g,384
4
- sagellm_core/config.pyc,sha256=cCMLvMVb_s3HzPYSfqlbRWodQ4Uby8U962l1vmunT5Y,8453
5
- sagellm_core/demo.pyc,sha256=0hZkAJch6ETjSDsPq8XkDLNcd8qAys_hqOH1qi0xBzg,6028
6
- sagellm_core/engine.pyc,sha256=o5yzFfLhpRx5lEYC2E75q9b04UqsDY63fC4nZdkHyeU,12258
7
- sagellm_core/engine_factory.pyc,sha256=cNbEImM0MNcCgVeC0zViAT1AZkPAt2WARrVd1U__tS4,14886
8
- sagellm_core/factory.pyc,sha256=B0s_JSOjVPwE95Oj2moP_vVA3vCrWsi2753UrwF8-eM,2737
9
- sagellm_core/health.pyc,sha256=c4A60b1ZANbAqck59AV-kczK2b355EPi9JxoYHRlhl8,684
10
- sagellm_core/pd_executor.pyc,sha256=1ytnDJi56sTSnZjAa7cRlN_1yQU4t7OJwXYgeUgjqA4,17784
11
- sagellm_core/plugins.pyc,sha256=g6eke_yH65_7Bu6yfT7v19cZ7gjIAWbkyG7gv1JSXy0,2617
12
- sagellm_core/py.typed,sha256=ixa8YukDZ3kLo0WsFJRGohLMyHzbMur1ALmmASML2cs,64
13
- sagellm_core/runner.pyc,sha256=GK_t15IH2etN6flRqUui4iUPkD39zl3_rw1wnOSG5Jg,14238
14
- sagellm_core/runtime.pyc,sha256=RFPMN7Vu9M5O1ZYgFQ9REz4wkMFznRPVPt2ra3u2vns,10018
15
- sagellm_core/workload.pyc,sha256=G9yMm2L4ZyZpGsCxuEOQ83t78Y_lCQmbg5p6OHl5rn0,4127
16
- sagellm_core/__pycache__/__init__.cpython-311.pyc,sha256=sJCRIn6V_viZZU7ys1dM123uvqzCSY3fMOt2qJeP9hQ,3400
17
- sagellm_core/__pycache__/base_engine.cpython-311.pyc,sha256=XiynMTxG3srYsUwzIoEbwEJOmpjBBB6UNEoAXDxDgWM,9563
18
- sagellm_core/__pycache__/config.cpython-311.pyc,sha256=6gUdzUs3m31zGQVa2OzlPcPbX1it2Ziag0cQbCaXvIU,8483
19
- sagellm_core/__pycache__/demo.cpython-311.pyc,sha256=PN6yZ3PgPWjiZ4XqpqRT-s5YYWitMwR_muYFvPmXdWA,6058
20
- sagellm_core/__pycache__/engine.cpython-311.pyc,sha256=B6ynwwETTD_kjZ2CvUao_QRjM0EluEWg60Be-nRiVeE,12288
21
- sagellm_core/__pycache__/engine_factory.cpython-311.pyc,sha256=Qte3LXKSpcOWGhu-Hns7xPvTdkyYry3v_EeYQbfVp4w,14916
22
- sagellm_core/__pycache__/factory.cpython-311.pyc,sha256=R4MbGyreD3U2iWmwQ0r14R347GAY9RM_I1xOiWovozo,2767
23
- sagellm_core/__pycache__/health.cpython-311.pyc,sha256=Z2mo-4iGINZp0w9AmCJomhHGRSzvbwxCfmdMAjg5vc4,714
24
- sagellm_core/__pycache__/mock_engine.cpython-311.pyc,sha256=zCHNncwIzEgqZ0lc7kiWkS-zOHf7CQ73UhCXztR6mFM,581
25
- sagellm_core/__pycache__/pd_executor.cpython-311.pyc,sha256=XuMKNOZEYiupvhyQjgN1iM3p2Q0daXQvTNK745BPL5U,17814
26
- sagellm_core/__pycache__/plugins.cpython-311.pyc,sha256=gaoaHApylGSrmMxXVwFs2v4idiZJnisttawlXTbXBWY,2647
27
- sagellm_core/__pycache__/runner.cpython-311.pyc,sha256=krW5MagsiQcX5J9fljblEshfsQB_gAIAWR7S0uD-TzU,14268
28
- sagellm_core/__pycache__/runtime.cpython-311.pyc,sha256=STMbXptWWqislgsqEk4kIXmUYXdFzGDihSeXGWLy_6k,10048
29
- sagellm_core/__pycache__/workload.cpython-311.pyc,sha256=Y01UUCDE85D8GY5kF_UsHyNCBbMkmsoB3vOUJV-vulA,4157
30
- sagellm_core/engines/__init__.py,sha256=dK5-xPVkGftvSUDg7B6rNuaMohibckfXrklaWFzz_Jo,1418
31
- sagellm_core/engines/__init__.pyc,sha256=k_8HvoXGNmRVikV24Dxy0QIoLJ_XLP2aKwu7Dw3CIkQ,1438
32
- sagellm_core/engines/ascend.pyc,sha256=T2qveWOhxV1AyVwJ5n_q8-TLg0uBJN_G6EZuVpA5rCU,17263
33
- sagellm_core/engines/cpu.pyc,sha256=CLLNyuRLDIER5Zgny91-eGYUSMxmVVAw4E0rUMJDDsU,27833
34
- sagellm_core/engines/embedding.pyc,sha256=Be4To-qpamFuGcyFZ1MKPk6XOf_HDBKnBGoIisxNemE,11476
35
- sagellm_core/engines/hf_cuda.pyc,sha256=zo-Ht70Q3aba7L5xugpc6fwTIRrpkEFe9SeTy3exI-s,61103
36
- sagellm_core/engines/pytorch.pyc,sha256=MLcymoDnwMduWoWVDZmYuG6UoQavNO-FjddPQ8ccccI,18408
37
- sagellm_core/engines/pytorch_engine.pyc,sha256=fdzf-VN2hVRWzP8PCmGV-pg9qUIJWWqEH662CRmh5_0,11645
38
- sagellm_core/engines/__pycache__/__init__.cpython-311.pyc,sha256=dI0jrBb6-rlnTvVQZojWA2n-lUhE9j0aGn4cz3SxmqY,1468
39
- sagellm_core/engines/__pycache__/ascend.cpython-311.pyc,sha256=UvdVYqCptZqrPhyrbqK2dxnVa9NY-HH_vsXffsblzC8,17293
40
- sagellm_core/engines/__pycache__/cpu.cpython-311.pyc,sha256=lxuj9LGXjsg7WwB0GXQUsYBphevFENmeLAjKYiswNxY,27863
41
- sagellm_core/engines/__pycache__/embedding.cpython-311.pyc,sha256=ZNqFpuCsS4Wp0xg7yV3GBbaJ4G0saqGNaKMdivxEBkA,11506
42
- sagellm_core/engines/__pycache__/hf_cuda.cpython-311.pyc,sha256=WcWhj1ktaGONooxWJZKRv-os5Hw-InlfV2ZfZ6myrLY,61133
43
- sagellm_core/engines/__pycache__/mock.cpython-311.pyc,sha256=1g9YyKfo9yv-6VTjzzfacv-9ZICHjsVXjyJ_IajRnQo,14641
44
- sagellm_core/engines/__pycache__/pytorch.cpython-311.pyc,sha256=MRSQN2ZBJmuIxFIA_yflaxarFhslfT0SG0Lw7-EFyDQ,18438
45
- sagellm_core/engines/__pycache__/pytorch_engine.cpython-311.pyc,sha256=dLBcBODxEqgmH25nCBPWhwy3uu3-dqzyzOwQy-izN7A,11675
46
- isagellm_core-0.3.0.3.dist-info/METADATA,sha256=dzLYorlanyMTfcrF9Bqru3Elxhd2uYxHla_SVHw4PC4,10943
47
- isagellm_core-0.3.0.3.dist-info/WHEEL,sha256=JNWh1Fm1UdwIQV075glCn4MVuCRs0sotJIq-J6rbxCU,109
48
- isagellm_core-0.3.0.3.dist-info/entry_points.txt,sha256=IQcDdYSQnAR1R0O9J2EpBt1RUGd2xJgJQwZNVL6peag,247
49
- isagellm_core-0.3.0.3.dist-info/top_level.txt,sha256=wcgdWrvkaoYYh_dWSFI5Toi8PZsHutVqfhTB2tb0K6g,13
50
- isagellm_core-0.3.0.3.dist-info/RECORD,,