isagellm-core 0.1.0.1__cp311-none-any.whl → 0.1.0.3__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.
Files changed (33) hide show
  1. {isagellm_core-0.1.0.1.dist-info → isagellm_core-0.1.0.3.dist-info}/METADATA +46 -106
  2. isagellm_core-0.1.0.3.dist-info/RECORD +32 -0
  3. {isagellm_core-0.1.0.1.dist-info → isagellm_core-0.1.0.3.dist-info}/WHEEL +1 -1
  4. sagellm_core/__init__.py +3 -6
  5. sagellm_core/__init__.pyc +0 -0
  6. sagellm_core/__main__.pyc +0 -0
  7. sagellm_core/__pycache__/__init__.cpython-311.pyc +0 -0
  8. sagellm_core/__pycache__/config.cpython-311.pyc +0 -0
  9. sagellm_core/__pycache__/demo.cpython-311.pyc +0 -0
  10. sagellm_core/__pycache__/engine.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__/mock_engine.cpython-311.pyc +0 -0
  14. sagellm_core/__pycache__/plugins.cpython-311.pyc +0 -0
  15. sagellm_core/__pycache__/runner.cpython-311.pyc +0 -0
  16. sagellm_core/__pycache__/workload.cpython-311.pyc +0 -0
  17. sagellm_core/config.pyc +0 -0
  18. sagellm_core/demo.pyc +0 -0
  19. sagellm_core/engine.pyc +0 -0
  20. sagellm_core/engines/__init__.py +2 -10
  21. sagellm_core/engines/__init__.pyc +0 -0
  22. sagellm_core/engines/__pycache__/__init__.cpython-311.pyc +0 -0
  23. sagellm_core/engines/__pycache__/mock.cpython-311.pyc +0 -0
  24. sagellm_core/engines/mock.pyc +0 -0
  25. sagellm_core/factory.pyc +0 -0
  26. sagellm_core/health.pyc +0 -0
  27. sagellm_core/mock_engine.pyc +0 -0
  28. sagellm_core/plugins.pyc +0 -0
  29. sagellm_core/runner.pyc +0 -0
  30. sagellm_core/workload.pyc +0 -0
  31. isagellm_core-0.1.0.1.dist-info/RECORD +0 -31
  32. isagellm_core-0.1.0.1.dist-info/entry_points.txt +0 -2
  33. {isagellm_core-0.1.0.1.dist-info → isagellm_core-0.1.0.3.dist-info}/top_level.txt +0 -0
@@ -1,6 +1,6 @@
1
- Metadata-Version: 2.4
1
+ Metadata-Version: 2.1
2
2
  Name: isagellm-core
3
- Version: 0.1.0.1
3
+ Version: 0.1.0.3
4
4
  Summary: sageLLM core runtime (config/observability/registries), plugin-ready
5
5
  Author: IntelliStream Team
6
6
  License: Proprietary - IntelliStream
@@ -26,23 +26,21 @@ Requires-Dist: pre-commit>=3.0.0; extra == "dev"
26
26
 
27
27
  # sagellm-core
28
28
 
29
- core 只依赖协议与抽象,不直接 import 硬件 SDK。
29
+ [![CI](https://github.com/intellistream/sagellm-core/actions/workflows/ci.yml/badge.svg)](https://github.com/intellistream/sagellm-core/actions/workflows/ci.yml)
30
+ [![PyPI](https://img.shields.io/pypi/v/isagellm-core.svg)](https://pypi.org/project/isagellm-core/)
31
+ [![Python](https://img.shields.io/pypi/pyversions/isagellm-core.svg)](https://pypi.org/project/isagellm-core/)
32
+ [![License](https://img.shields.io/github/license/intellistream/sagellm-core.svg)](https://github.com/intellistream/sagellm-core/blob/main/LICENSE)
33
+ [![Code style: ruff](https://img.shields.io/badge/code%20style-ruff-000000.svg)](https://github.com/astral-sh/ruff)
30
34
 
31
- - 仓库名:`sagellm-core`
32
- - PyPI 包名:`isagellm-core`
33
- - import 名:`sagellm_core`
35
+ sageLLM Core - Engine runtime and configuration system for LLM inference.
34
36
 
35
- ## 架构层级
37
+ ## Features
36
38
 
37
- sagellm-core 位于 **Level 2**,依赖:
38
- - **Level 0**: `isagellm-protocol` (协议定义)
39
- - **Level 1**: `isagellm-backend` (后端抽象,包含 BackendProvider)
40
-
41
- 为下游提供:
42
- - 配置体系(config.py)
43
- - Engine 抽象接口(engine.py)
44
- - 插件发现机制(plugins.py)
45
- - 工厂函数(factory.py)
39
+ - 🔧 Flexible configuration system (YAML/JSON)
40
+ - 🔌 Plugin-based backend and engine discovery
41
+ - 🎯 Mock mode for development and testing
42
+ - 📊 Built-in demo runner for benchmarking
43
+ - ✅ Type-safe with Pydantic v2
46
44
 
47
45
  ## 安装
48
46
 
@@ -79,14 +77,7 @@ python -m sagellm_core.demo --mock --segments short
79
77
  > pip install -e ../sagellm-backend
80
78
  > ```
81
79
 
82
- ## 插件发现(entry points)
83
-
84
- - backends:`sagellm.backends`(由 sagellm-backend 提供基础实现)
85
- - engines:`sagellm.engines`(由各 engine 包提供实现)
86
-
87
- core 在运行时扫描 entry points;当配置指定 kind 但未安装插件时必须 fail-fast,并给出安装提示。
88
-
89
- ## 配置系统(Task0.02)
80
+ ## Configuration System
90
81
 
91
82
  ### 使用方法
92
83
 
@@ -101,20 +92,15 @@ backend = create_backend(config.backend)
101
92
  engine = create_engine(config.engine, backend)
102
93
  ```
103
94
 
104
- ### 配置结构
95
+ ### Configuration Structure
105
96
 
106
- 所有配置类均使用 pydantic v2 实现严格校验:
107
- - 缺失必填字段立即抛出 `ValidationError`
108
- - 未知字段被拒绝(`extra="forbid"`)
109
- - 数值约束被强制执行
110
-
111
- 主要配置类:
112
- - `BackendConfig`: 后端设备配置(kind, device, device_ids)
113
- - `EngineConfig`: 推理引擎配置(kind, model, model_path, 等)
114
- - `WorkloadConfig`: 工作负载配置(segments, concurrency, kv_budget_tokens, 等)
115
- - `OutputConfig`: 输出配置(metrics_path, report_path, log_path, log_level)
116
- - `MockConfig`: 模拟模式配置(enable, fixed_latency_ms, jitter_ms, error_rate)
117
- - `DemoConfig`: 顶层配置(包含以上所有配置 + 特性开关)
97
+ Main configuration components:
98
+ - `BackendConfig`: Device and backend settings
99
+ - `EngineConfig`: Inference engine configuration
100
+ - `WorkloadConfig`: Workload parameters
101
+ - `OutputConfig`: Output paths and logging
102
+ - `MockConfig`: Mock mode settings for testing
103
+ - `DemoConfig`: Top-level demo configuration
118
104
 
119
105
  ### 配置示例
120
106
 
@@ -218,18 +204,7 @@ output:
218
204
  report_path: ./output/report.md
219
205
  ```
220
206
 
221
- ### 验收标准(Task0.08)
222
-
223
- - [x] `python -m sagellm_core.demo --help` 输出帮助信息
224
- - [x] `python -m sagellm_core.demo --config examples/demo_config.yaml --mock` 可运行
225
- - [x] 缺少 --config 参数时报错
226
- - [x] 配置文件不存在时报错
227
- - [x] 无效的 segment 值时报错
228
- - [x] `ruff check` 和 `mypy` 通过
229
-
230
- **注意**:实际 workload 执行逻辑在 task0_10 实现,当前阶段运行会输出 `NotImplementedError`。
231
-
232
- ## 开发指南
207
+ ## Development Guide
233
208
 
234
209
  ### 快速开始
235
210
 
@@ -248,11 +223,9 @@ pre-commit install
248
223
  pytest tests/ -v
249
224
  ```
250
225
 
251
- ### 质量保证体系
226
+ ### Testing and Quality
252
227
 
253
- sageLLM 实施三层质量保证:
254
-
255
- #### 1. Pre-commit Hooks(提交前自动检查)
228
+ #### Pre-commit Hooks
256
229
 
257
230
  安装后,每次 `git commit` 会自动运行:
258
231
  - **Ruff**: 代码格式化 + Lint 检查
@@ -267,57 +240,34 @@ pre-commit run --all-files
267
240
  git commit --no-verify
268
241
  ```
269
242
 
270
- #### 2. 单元测试(本地验证)
243
+ #### Running Tests
271
244
 
272
245
  ```bash
273
- # 运行所有测试
246
+ # Run all tests
274
247
  pytest tests/ -v
275
248
 
276
- # 运行特定模块测试
249
+ # Run specific test module
277
250
  pytest tests/unit/test_demo.py -v
278
- pytest tests/unit/test_config.py -v
279
251
 
280
- # 生成覆盖率报告
252
+ # Generate coverage report
281
253
  pytest tests/ --cov=sagellm_core --cov-report=html
282
- open htmlcov/index.html
283
254
  ```
284
255
 
285
- 测试要求:
286
- - ✅ 新功能必须有对应单元测试
287
- - ✅ 覆盖率不低于现有水平
288
- - ✅ 所有测试必须支持 mock 模式(无需 GPU)
289
-
290
- #### 3. CI/CD(自动化验证)
291
-
292
- 每次 PR 触发 GitHub Actions 自动运行:
293
- - **Lint Job**: Ruff + Mypy 检查
294
- - **Test Job**: 多 Python 版本矩阵测试(3.10, 3.11, 3.12)
295
- - **Protocol Job**: 验证与 Protocol v0.1 对齐
296
- - **Build Job**: 验证包构建
297
-
298
- 查看 CI 状态:`.github/workflows/ci.yml`
256
+ #### Continuous Integration
299
257
 
300
- ### 代码规范
258
+ GitHub Actions automatically runs on each PR:
259
+ - Code linting and formatting checks
260
+ - Tests across Python 3.10, 3.11, 3.12
261
+ - Package build verification
301
262
 
302
- **核心原则**:
303
- 1. **Protocol-first** - 修改接口前先升级 Protocol
304
- 2. **Mock-first** - 所有模块支持 mock 模式
305
- 3. **Fail-fast** - 禁止隐式默认值,配置错误立即报错
306
- 4. **Type-safe** - 所有函数必须有类型注解
263
+ ### Code Style
307
264
 
308
- ```python
309
- # 正确示例
310
- def create_backend(config: BackendConfig) -> BaseBackend:
311
- if config.kind == "mock":
312
- return MockBackend(config)
313
- raise PluginResolutionError(f"Unknown backend: {config.kind}")
314
-
315
- # ❌ 错误示例
316
- def create_backend(config): # 缺少类型注解
317
- return MockBackend(config.get("kind", "mock")) # 隐式默认值
318
- ```
265
+ This project uses:
266
+ - **Ruff** for formatting and linting
267
+ - **Mypy** for type checking
268
+ - **Type hints** are required for all functions
319
269
 
320
- 详细规范参见 [CONTRIBUTING.md](CONTRIBUTING.md)
270
+ For detailed guidelines, see [CONTRIBUTING.md](CONTRIBUTING.md)
321
271
 
322
272
  ### 代码检查
323
273
 
@@ -342,20 +292,10 @@ pre-commit run --all-files
342
292
  - `isagellm-protocol>=0.1.0,<0.2.0`: 协议定义(Level 0)
343
293
  - `isagellm-backend>=0.1.0,<0.2.0`: 后端抽象(Level 1)
344
294
 
345
- ## 依赖层级说明
295
+ ## Related Packages
346
296
 
347
- ```
348
- Level 0: isagellm-protocol (最基础,无依赖)
349
-
350
- Level 1: isagellm-backend (依赖 protocol)
351
-
352
- Level 2: isagellm-core (依赖 protocol + backend) ← 当前包
353
-
354
- Level 3: 功能模块(依赖 protocol + backend + core)
355
- ├─ isagellm-kv-cache
356
- ├─ isagellm-comm
357
- └─ isagellm-compression
358
-
359
- Level 4: isagellm-demo (依赖所有模块)
360
- ```
297
+ - `isagellm-protocol` - Protocol definitions
298
+ - `isagellm-backend` - Backend abstraction layer
299
+ - `isagellm` - Main package with CLI
361
300
 
301
+ For more packages, see the [sageLLM ecosystem](https://github.com/intellistream/sagellm)
@@ -0,0 +1,32 @@
1
+ sagellm_core/__init__.py,sha256=tCd-s6qtnmcAlkTPIAPI6eVAv2VDpTv1x3BTIPmJksc,1318
2
+ sagellm_core/__init__.pyc,sha256=1gOLrD7tMlJWBJfli9YCkaCz3ARTW6TOF1BV6sC9vjc,1462
3
+ sagellm_core/__main__.pyc,sha256=4wEXHFB0JVZaI6wLACU59_b-LfEbujTQZyzONaalAYA,384
4
+ sagellm_core/config.pyc,sha256=8gGOOBcHRSSv883bDIJNXzB069ntBc0yYEf-PFAeWdU,9617
5
+ sagellm_core/demo.pyc,sha256=MAeTgokTW8kW906wjvTLN1yNLfOOl3_hokpVzJ-Lt4I,6377
6
+ sagellm_core/engine.pyc,sha256=8Et-gI0pYOpDPRCz8IrWMDYKWs_-K31jAAnYoe-HnF8,584
7
+ sagellm_core/factory.pyc,sha256=PF-xQQn-fYn25GO5muzf9rCdHKQ3NhQYiCKOnkHBjxY,2692
8
+ sagellm_core/health.pyc,sha256=oEWyaaTix4YXhyu8JSYOQAy9KBySxbIcHt2hNpchi-w,684
9
+ sagellm_core/mock_engine.pyc,sha256=iadJef1bNdQXdXJLFo_FE9aVglecothXLhxMoMtzEv0,532
10
+ sagellm_core/plugins.pyc,sha256=rhdewQ_zJxnmRFBjUozBlhQtIwFg0C1rFD8zMT7ZeKI,2618
11
+ sagellm_core/py.typed,sha256=ixa8YukDZ3kLo0WsFJRGohLMyHzbMur1ALmmASML2cs,64
12
+ sagellm_core/runner.pyc,sha256=kUPITl68dX1rOY5Fg5o6KRBMjMhMAQFNizEuRF44PgM,14248
13
+ sagellm_core/workload.pyc,sha256=LDuZAdimFAd3pHn8E9WG7LjwU_1IKABZ-gaMCMjOTus,4118
14
+ sagellm_core/__pycache__/__init__.cpython-311.pyc,sha256=rD-1rR4IMX4lKJKlNtTrMkPLHY-rWF-S06ZjtGu1pQU,1492
15
+ sagellm_core/__pycache__/config.cpython-311.pyc,sha256=4c_gjzVmxIRApzmUq8LCboOG3wPqmmwWVFxZS3JOHOg,9647
16
+ sagellm_core/__pycache__/demo.cpython-311.pyc,sha256=yOMGCRRQigl8sclMTcg-iHThQoxrRTPWSUdgDYJ3hgU,6407
17
+ sagellm_core/__pycache__/engine.cpython-311.pyc,sha256=6wUoB2Rz8YqoVpefE28b_vqxAozdXFiCYJZ_gn5Vi9A,614
18
+ sagellm_core/__pycache__/factory.cpython-311.pyc,sha256=Dl6w_PHlzEVr62cT6D11_gm9F-MAcqouBNNHZEHCjqw,2722
19
+ sagellm_core/__pycache__/health.cpython-311.pyc,sha256=t8l6F_O808YWsFBDQfdJU6_Ps8H-nnE6k0fdLxYwLJk,714
20
+ sagellm_core/__pycache__/mock_engine.cpython-311.pyc,sha256=KcHBGI1dVIEKm7rhZOkPWQ27rzNVEhmXDYsiQ_5Lfe8,562
21
+ sagellm_core/__pycache__/plugins.cpython-311.pyc,sha256=K6-SC0yOVvT-qVh7Fp2GC-O0GloaWY00W9_8y_jrBnk,2648
22
+ sagellm_core/__pycache__/runner.cpython-311.pyc,sha256=aZCGktjzcGBqNB7tJahEHfUgbTOYPCn-TyKp6yzpD6s,14278
23
+ sagellm_core/__pycache__/workload.cpython-311.pyc,sha256=ah0QMR3-t_EdjS6km5zi64LLn0FB3XgN7ALa1rVlDYY,4148
24
+ sagellm_core/engines/__init__.py,sha256=Pz_6hPpdL9aZqFSZnP_3Hdo_oOhMgygp8fYDUq60eoM,99
25
+ sagellm_core/engines/__init__.pyc,sha256=F8_ZNvo0w79MF136pvCmRArLhPjae6uGsds7v9OUAEo,331
26
+ sagellm_core/engines/mock.pyc,sha256=D0kWj50DsPdaZAM_2W-vyTW11ofNsSF02knRGtfKEJA,586
27
+ sagellm_core/engines/__pycache__/__init__.cpython-311.pyc,sha256=Y36wU_L1T0NqaGBb-oqt38qVk38lunfTWTv5n-TkCLI,361
28
+ sagellm_core/engines/__pycache__/mock.cpython-311.pyc,sha256=bt1MKmriqKcL_HF2gvQQ5JfxI-ij24G4fZvgFXjBAmM,616
29
+ isagellm_core-0.1.0.3.dist-info/METADATA,sha256=wKlVRTDAi3oqLa6FMZsxPRpjaU2j_O9DivkGDzqzjy0,7558
30
+ isagellm_core-0.1.0.3.dist-info/WHEEL,sha256=ZJeWpR6hcCRGwxVKXlDk-HsGwijNyTq4fszaDj4Ycyo,93
31
+ isagellm_core-0.1.0.3.dist-info/top_level.txt,sha256=wcgdWrvkaoYYh_dWSFI5Toi8PZsHutVqfhTB2tb0K6g,13
32
+ isagellm_core-0.1.0.3.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: setuptools (80.9.0)
2
+ Generator: setuptools (73.0.1)
3
3
  Root-Is-Purelib: true
4
4
  Tag: cp311-none-any
5
5
 
sagellm_core/__init__.py CHANGED
@@ -21,13 +21,13 @@ from sagellm_core.config import (
21
21
  load_config,
22
22
  )
23
23
  from sagellm_core.demo import main as demo_main
24
- from sagellm_core.engine import BaseEngine, HealthStatus
25
- from sagellm_core.engines.mock import MockEngine, create_mock_engine
24
+ from sagellm_core.engine import BaseEngine
26
25
  from sagellm_core.factory import create_backend, create_engine
26
+ from sagellm_core.health import HealthStatus
27
27
  from sagellm_core.plugins import PluginResolutionError, list_entry_points, resolve_kind
28
28
  from sagellm_core.runner import DemoRunner, RunnerContext
29
29
 
30
- __version__ = "0.1.0.1"
30
+ __version__ = "0.1.0.3"
31
31
 
32
32
  __all__ = [
33
33
  # Version
@@ -44,9 +44,6 @@ __all__ = [
44
44
  # Engine abstraction
45
45
  "BaseEngine",
46
46
  "HealthStatus",
47
- # Engine implementations
48
- "MockEngine",
49
- "create_mock_engine",
50
47
  # Factory functions
51
48
  "create_backend",
52
49
  "create_engine",
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
@@ -1,13 +1,5 @@
1
- """Engine implementations
2
-
3
- 包含各种引擎实现(mock, adapters 等)。
4
- """
1
+ """Engine implementations package."""
5
2
 
6
3
  from __future__ import annotations
7
4
 
8
- from sagellm_core.engines.mock import MockEngine, create_mock_engine
9
-
10
- __all__ = [
11
- "MockEngine",
12
- "create_mock_engine",
13
- ]
5
+ __all__: list[str] = []
Binary file
Binary file
sagellm_core/factory.pyc CHANGED
Binary file
Binary file
Binary file
sagellm_core/plugins.pyc CHANGED
Binary file
sagellm_core/runner.pyc CHANGED
Binary file
sagellm_core/workload.pyc CHANGED
Binary file
@@ -1,31 +0,0 @@
1
- sagellm_core/__init__.py,sha256=PCaUSXf21TfjJvLOSQD5oxyUPKdHEIONhTfgDiyCf3g,1429
2
- sagellm_core/__init__.pyc,sha256=nUZm7zN3ZxqrH9rZ7fx0ceg8nAyX136PuacyTNOahBY,1540
3
- sagellm_core/__main__.pyc,sha256=48Ej1ycqV-z87qawGOTNBKNgY3EcbffUOOXrDecOR3g,384
4
- sagellm_core/config.pyc,sha256=Reg92lld5VRC8FcV3qahAXaWmwar5RYfQMLysPw5UFQ,9617
5
- sagellm_core/demo.pyc,sha256=hI3RKeIGhmoKt7N30r5QWJh07qrmf49cZlXjp48phz4,5728
6
- sagellm_core/engine.pyc,sha256=mpODIRlxLspAQ5PQcP81dCvU0rc_gyn9ua_mNf-sRkc,3598
7
- sagellm_core/factory.pyc,sha256=uLXID49VZ7TcNZqgLBbznInCXjwbRSXSpD0bc6WHDVs,2692
8
- sagellm_core/mock_engine.pyc,sha256=wTAEID7SVpZGeMiujX98CumNksp4T78AfKIWeuCb2jI,532
9
- sagellm_core/plugins.pyc,sha256=RwUFT48AJhKqah3q7YOigOYwqvnei6RNMqpZksX5VJ0,2618
10
- sagellm_core/py.typed,sha256=ixa8YukDZ3kLo0WsFJRGohLMyHzbMur1ALmmASML2cs,64
11
- sagellm_core/runner.pyc,sha256=D-HDpVHvWBV2RdxKRZUeohuO9jerfGRb_z3PWtZtK7Y,14479
12
- sagellm_core/workload.pyc,sha256=92TRxjcnKLzAbcVZgOTPzwdR9dU1hqjO2j-olr1QCQ8,4118
13
- sagellm_core/__pycache__/__init__.cpython-311.pyc,sha256=vEYsS7efRG35E0lrTNCLokWRUGaE8DINcT2LRqabs_s,1582
14
- sagellm_core/__pycache__/config.cpython-311.pyc,sha256=bFTIjHE0DP304V_cvsFREkedx1b9TB4UTVDwExUvqXo,9661
15
- sagellm_core/__pycache__/demo.cpython-311.pyc,sha256=dG2EDA_mTwWRgOWujyDXJvDAInQZWuNgJOBTMxtkxQc,5772
16
- sagellm_core/__pycache__/engine.cpython-311.pyc,sha256=TVIIPO8-iuqcrkJ4iFICAkAseYG-Q-V_GbLXYpWDhfg,3628
17
- sagellm_core/__pycache__/factory.cpython-311.pyc,sha256=d3up_zYRL1q12mGYvBE_f6HpzaWlerXV_RZ9ys4VZtQ,2736
18
- sagellm_core/__pycache__/mock_engine.cpython-311.pyc,sha256=zCHNncwIzEgqZ0lc7kiWkS-zOHf7CQ73UhCXztR6mFM,581
19
- sagellm_core/__pycache__/plugins.cpython-311.pyc,sha256=__NNjLfUJXa1DqwdgVBJAkLp-nN2rcA5SXM0_Jd9MPU,2662
20
- sagellm_core/__pycache__/runner.cpython-311.pyc,sha256=KADnFlBOf0w2NgVPqtKDQRYOwCslo14skLgdZtBxiu8,14509
21
- sagellm_core/__pycache__/workload.cpython-311.pyc,sha256=kOSkfzgj2-GozzyuTfTE7NST2_HblneakPUuj9MLP48,4162
22
- sagellm_core/engines/__init__.py,sha256=X_zrzK96ZTwcqWJD6GcdZ_9cynsJnpN11KtV_GQTG4c,248
23
- sagellm_core/engines/__init__.pyc,sha256=wvPx_2E1evtbKxyF7d1xdoK5l-XVLh7_vkFlKkf8KtI,458
24
- sagellm_core/engines/mock.pyc,sha256=U4gYG9jVS0FH7Ntt3W9r8ylyAYdEis4KNdmez9lfhms,8014
25
- sagellm_core/engines/__pycache__/__init__.cpython-311.pyc,sha256=5EYPxOv12AZEhUSw_v65GgVskdxzcJLcfdhJ5B05BHw,502
26
- sagellm_core/engines/__pycache__/mock.cpython-311.pyc,sha256=HnYUoE9Nzr0qYI9cN8cUcbjFBzIweYAx9LkbBN8V_OY,8044
27
- isagellm_core-0.1.0.1.dist-info/METADATA,sha256=T4J1cOBLPINTrlNiOKkWB7_P1HmWgjUHnb0HoX2TGhM,9312
28
- isagellm_core-0.1.0.1.dist-info/WHEEL,sha256=27snaH8EChr9VGIQt_981R5IOTPR-vQPuJNW-WzhNJA,93
29
- isagellm_core-0.1.0.1.dist-info/entry_points.txt,sha256=dvRi6CIfghSFY6qmzpfG6nLg9yeQicW6lFBTNmdgEB8,70
30
- isagellm_core-0.1.0.1.dist-info/top_level.txt,sha256=wcgdWrvkaoYYh_dWSFI5Toi8PZsHutVqfhTB2tb0K6g,13
31
- isagellm_core-0.1.0.1.dist-info/RECORD,,
@@ -1,2 +0,0 @@
1
- [sagellm.engines]
2
- mock = sagellm_core.engines.mock:create_mock_engine