split-stack 0.2.0__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.
- split_stack/__init__.py +106 -0
- split_stack/__main__.py +4 -0
- split_stack/advice.py +12 -0
- split_stack/benchmark.py +97 -0
- split_stack/cli.py +690 -0
- split_stack/community_picks.py +247 -0
- split_stack/compare.py +194 -0
- split_stack/complexity.py +77 -0
- split_stack/discovery.py +288 -0
- split_stack/hints.py +102 -0
- split_stack/local_models.py +63 -0
- split_stack/model_guide.py +273 -0
- split_stack/model_registry.py +314 -0
- split_stack/models.py +77 -0
- split_stack/ollama_errors.py +30 -0
- split_stack/ollama_generate.py +135 -0
- split_stack/poc_models.py +131 -0
- split_stack/presets.py +75 -0
- split_stack/quantization.py +137 -0
- split_stack/requirements.py +287 -0
- split_stack/routing.py +96 -0
- split_stack/session.py +259 -0
- split_stack/setup_wizard.py +259 -0
- split_stack/startup_tips.py +169 -0
- split_stack/tiering.py +66 -0
- split_stack/validation.py +85 -0
- split_stack-0.2.0.dist-info/METADATA +364 -0
- split_stack-0.2.0.dist-info/RECORD +32 -0
- split_stack-0.2.0.dist-info/WHEEL +5 -0
- split_stack-0.2.0.dist-info/entry_points.txt +2 -0
- split_stack-0.2.0.dist-info/licenses/LICENSE +21 -0
- split_stack-0.2.0.dist-info/top_level.txt +1 -0
|
@@ -0,0 +1,364 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: split-stack
|
|
3
|
+
Version: 0.2.0
|
|
4
|
+
Summary: Python routing library for local LLM agent loops: score prompts, map tiers to model names, embed in your runner.
|
|
5
|
+
Author: Eddie Baumel
|
|
6
|
+
License: MIT
|
|
7
|
+
Project-URL: Homepage, https://github.com/edwardjbaumel/split-stack
|
|
8
|
+
Project-URL: Documentation, https://github.com/edwardjbaumel/split-stack/blob/main/docs/FOR_APP_AUTHORS.md
|
|
9
|
+
Project-URL: Repository, https://github.com/edwardjbaumel/split-stack
|
|
10
|
+
Project-URL: Issues, https://github.com/edwardjbaumel/split-stack/issues
|
|
11
|
+
Keywords: llm,routing,ollama,complexity,python,local-first,agents
|
|
12
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
13
|
+
Classifier: Programming Language :: Python :: 3
|
|
14
|
+
Classifier: Programming Language :: Python :: 3 :: Only
|
|
15
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
16
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
17
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
18
|
+
Requires-Python: >=3.10
|
|
19
|
+
Description-Content-Type: text/markdown
|
|
20
|
+
License-File: LICENSE
|
|
21
|
+
Provides-Extra: ollama
|
|
22
|
+
Requires-Dist: requests>=2.31.0; extra == "ollama"
|
|
23
|
+
Provides-Extra: dev
|
|
24
|
+
Requires-Dist: pytest>=8.2.0; extra == "dev"
|
|
25
|
+
Dynamic: license-file
|
|
26
|
+
|
|
27
|
+
# split-stack
|
|
28
|
+
|
|
29
|
+
**A Python routing library for local LLM agent loops.**
|
|
30
|
+
|
|
31
|
+
Give split-stack a prompt and your model list. It returns a complexity tier and which model to call. You keep your agent runner, gateway, or Ollama client — split-stack only decides *which* local model each step should use.
|
|
32
|
+
|
|
33
|
+
Zero runtime dependencies. Works offline. No inference, no agent framework, no chat UI.
|
|
34
|
+
|
|
35
|
+
```python
|
|
36
|
+
import split_stack
|
|
37
|
+
|
|
38
|
+
split_stack.configure(vram_gb=16, quant="qat") # once — or export SPLIT_STACK_VRAM_GB=16
|
|
39
|
+
|
|
40
|
+
for step in agent_steps:
|
|
41
|
+
tier, model = split_stack.route(step.prompt, hint=step.hint)
|
|
42
|
+
response = your_llm.complete(model=model, prompt=step.prompt)
|
|
43
|
+
```
|
|
44
|
+
|
|
45
|
+
Or pass an explicit model list:
|
|
46
|
+
|
|
47
|
+
```python
|
|
48
|
+
from split_stack import assign_tiers, route_prompt
|
|
49
|
+
|
|
50
|
+
tiers = assign_tiers(["qwen3:4b", "qwen3:8b", "qwen3:14b"])
|
|
51
|
+
|
|
52
|
+
for step in agent_steps:
|
|
53
|
+
tier, model = route_prompt(step.prompt, tiers, hint=step.hint)
|
|
54
|
+
response = your_llm.complete(model=model, prompt=step.prompt)
|
|
55
|
+
```
|
|
56
|
+
|
|
57
|
+
## What it is
|
|
58
|
+
|
|
59
|
+
| Piece | Role |
|
|
60
|
+
| --- | --- |
|
|
61
|
+
| **`score_prompt(text)`** | Heuristic complexity tier (`simple` → `medium` → `complex` → `reasoning`) |
|
|
62
|
+
| **`assign_tiers(model_names)`** | Map your model names onto tier slots by size/name |
|
|
63
|
+
| **`route_prompt(text, tiers, hint=...)`** | Pick `(tier, model_name)` for one agent step |
|
|
64
|
+
| **`stack route` / `stack benchmark` / `stack compare`** | CLI for scripts, gateways, and CI evidence |
|
|
65
|
+
|
|
66
|
+
**Typical integration:** [`docs/FOR_APP_AUTHORS.md`](docs/FOR_APP_AUTHORS.md) (start here) · [`docs/INTEGRATION.md`](docs/INTEGRATION.md) (deeper patterns)
|
|
67
|
+
|
|
68
|
+
## Workstation size (VRAM)
|
|
69
|
+
|
|
70
|
+
split-stack maps **GPU VRAM (GB)** to a preset ladder. Devs are expected to know their budget; set it once:
|
|
71
|
+
|
|
72
|
+
```python
|
|
73
|
+
split_stack.configure(vram_gb=16)
|
|
74
|
+
```
|
|
75
|
+
|
|
76
|
+
Or:
|
|
77
|
+
|
|
78
|
+
```bash
|
|
79
|
+
export SPLIT_STACK_VRAM_GB=16 # Linux/macOS
|
|
80
|
+
$env:SPLIT_STACK_VRAM_GB=16 # PowerShell
|
|
81
|
+
```
|
|
82
|
+
|
|
83
|
+
| VRAM | Profile |
|
|
84
|
+
| --- | --- |
|
|
85
|
+
| ≤8 GB | `workstation_8gb` |
|
|
86
|
+
| ≤12 GB | `workstation_12gb` |
|
|
87
|
+
| ≤16 GB | `workstation_16gb` |
|
|
88
|
+
| ≤24 GB | `workstation_24gb` (3090 / 4090 class) |
|
|
89
|
+
| ≤32 GB | `workstation_32gb` |
|
|
90
|
+
|
|
91
|
+
**Apple Silicon:** there is no separate GPU VRAM — use **unified memory** as a conservative guide (e.g. 16 GB Mac → `vram_gb=12` or `16`, not 24). See [`docs/LOCAL_MODELS.md`](docs/LOCAL_MODELS.md) for preset details.
|
|
92
|
+
|
|
93
|
+
If you omit `models=`, split-stack picks a stack from the profile and what you have pulled in Ollama.
|
|
94
|
+
|
|
95
|
+
## Quantization (`quant=`)
|
|
96
|
+
|
|
97
|
+
**Critical:** split-stack does **not** pick Q4 vs Q8 per prompt. That would route hard steps to the wrong tier. Quant is a **pull-time** choice you declare once:
|
|
98
|
+
|
|
99
|
+
```python
|
|
100
|
+
split_stack.configure(vram_gb=16, quant="qat")
|
|
101
|
+
```
|
|
102
|
+
|
|
103
|
+
Or `$env:SPLIT_STACK_QUANT="qat"`.
|
|
104
|
+
|
|
105
|
+
| Mode | Meaning |
|
|
106
|
+
| --- | --- |
|
|
107
|
+
| `default` | Registry VRAM assumes typical Ollama Q4/Q5 pulls |
|
|
108
|
+
| `qat` | Gemma 4 QAT int4 runtime sizes (Unsloth [UD-Q4_K_XL](https://unsloth.ai/docs/models/gemma-4/qat#qat-analysis) table) |
|
|
109
|
+
| `qat_mobile` | Google mobile mixture QAT (E2B/E4B) |
|
|
110
|
+
| `bf16` | Full-precision Gemma 4 sizes for VRAM filter |
|
|
111
|
+
|
|
112
|
+
What `quant=` actually does:
|
|
113
|
+
|
|
114
|
+
1. **VRAM filter** — e.g. `gemma4:26b-a4b` fits 16 GB at QAT (~15 GB) but not at default (~20 GB).
|
|
115
|
+
2. **Stack suggestions** — `quant="qat"` adds `gemma4:26b-a4b` to the 16 GB preset ladder.
|
|
116
|
+
3. **Routing unchanged** — still `(tier, model_tag)`; your Ollama tag stays `gemma4:e4b`.
|
|
117
|
+
|
|
118
|
+
Ollama tags do not encode quant. If you pulled Unsloth QAT GGUFs into `gemma4:e4b`, set `quant="qat"` so feasibility math matches reality.
|
|
119
|
+
|
|
120
|
+
**Gemma 4 QAT pulls:** Google ships [Q4_0 GGUFs](https://huggingface.co/collections/google/gemma-4-qat-q4_0); Unsloth’s analysis shows naive Q4_0 conversion loses accuracy vs their [UD-Q4_K_XL](https://huggingface.co/collections/unsloth/gemma-4-qat) builds for llama.cpp/Ollama import. Mobile: [google/gemma-4-qat-mobile](https://huggingface.co/collections/google/gemma-4-qat-mobile).
|
|
121
|
+
|
|
122
|
+
```bash
|
|
123
|
+
stack models --profile workstation_16gb --quant qat --include-disk
|
|
124
|
+
stack stacks --profile workstation_16gb --quant qat
|
|
125
|
+
```
|
|
126
|
+
|
|
127
|
+
## What it is not
|
|
128
|
+
|
|
129
|
+
| This repo | Not this |
|
|
130
|
+
| --- | --- |
|
|
131
|
+
| Importable routing primitives | A consumer chat app |
|
|
132
|
+
| Owned heuristics you can test (`pytest`, no GPU) | Cursor chat interception or “save tokens on easy questions” |
|
|
133
|
+
| Optional Ollama helpers (`pip install -e ".[ollama]"`) | Another LiteLLM or multi-cloud proxy |
|
|
134
|
+
| Optional VS Code Quick Ask demo | An agent framework (no tools, memory, orchestration) |
|
|
135
|
+
|
|
136
|
+
**Primary user:** a developer building agent runners, gateways, or batch pipelines who already controls a local model list (usually Ollama).
|
|
137
|
+
|
|
138
|
+
## How routing works
|
|
139
|
+
|
|
140
|
+
```text
|
|
141
|
+
your prompt (+ optional step hint)
|
|
142
|
+
↓
|
|
143
|
+
score_prompt / resolve_tier → simple | medium | complex | reasoning
|
|
144
|
+
↓
|
|
145
|
+
assign_tiers(your model names) → tier → model map
|
|
146
|
+
↓
|
|
147
|
+
route_prompt(...) → (tier, model_name)
|
|
148
|
+
↓
|
|
149
|
+
your LLM client → generate
|
|
150
|
+
```
|
|
151
|
+
|
|
152
|
+
Step hints (`lookup`, `explain`, `design`, `code`, `reason`) override keyword scoring when you know the agent phase. See [`docs/USER_STORIES.md`](docs/USER_STORIES.md).
|
|
153
|
+
|
|
154
|
+
## Proof (10-prompt benchmark)
|
|
155
|
+
|
|
156
|
+
Run locally — no inference, CI-safe:
|
|
157
|
+
|
|
158
|
+
```bash
|
|
159
|
+
pip install -e .
|
|
160
|
+
stack benchmark --markdown --models qwen3:4b,qwen3:8b,qwen3:14b
|
|
161
|
+
```
|
|
162
|
+
|
|
163
|
+
Example output on the fixed suite:
|
|
164
|
+
|
|
165
|
+
| id | tier | model | note |
|
|
166
|
+
| --- | --- | --- | --- |
|
|
167
|
+
| b01 | simple | qwen3:4b | definition |
|
|
168
|
+
| b02 | simple | qwen3:4b | definition |
|
|
169
|
+
| b03 | simple | qwen3:4b | short explain |
|
|
170
|
+
| b04 | medium | qwen3:8b | medium explain |
|
|
171
|
+
| b05 | medium | qwen3:8b | compare |
|
|
172
|
+
| b06 | medium | qwen3:8b | plan |
|
|
173
|
+
| b07 | complex | qwen3:14b | debug keyword |
|
|
174
|
+
| b08 | complex | qwen3:14b | architecture |
|
|
175
|
+
| b09 | complex | qwen3:14b | refactor keyword |
|
|
176
|
+
| b10 | reasoning | qwen3:14b | reasoning |
|
|
177
|
+
|
|
178
|
+
Naive “always use biggest model” sends **all 10** to `qwen3:14b`. split-stack spreads them across **3 models**.
|
|
179
|
+
|
|
180
|
+
## Compare POC (why not always 14b?)
|
|
181
|
+
|
|
182
|
+
Same 5-step agent loop, two strategies: **split-stack** (`route_prompt` per step) vs **baseline** (always the largest model). Dry by default — no Ollama:
|
|
183
|
+
|
|
184
|
+
```bash
|
|
185
|
+
stack compare
|
|
186
|
+
python examples/poc_compare/run.py
|
|
187
|
+
```
|
|
188
|
+
|
|
189
|
+
```text
|
|
190
|
+
Compare: split-stack vs always-largest (qwen3:14b)
|
|
191
|
+
|
|
192
|
+
step | routed tier | routed model | baseline model
|
|
193
|
+
quick_lookup | simple | qwen3:4b | qwen3:14b
|
|
194
|
+
...
|
|
195
|
+
|
|
196
|
+
Summary:
|
|
197
|
+
split-stack: 3 models used, 3/5 steps avoided largest
|
|
198
|
+
baseline: 1 model used, 5/5 on largest
|
|
199
|
+
```
|
|
200
|
+
|
|
201
|
+
Optional live latency on your hardware:
|
|
202
|
+
|
|
203
|
+
```bash
|
|
204
|
+
stack compare --live --models qwen3:4b,qwen3:8b,qwen3:14b
|
|
205
|
+
```
|
|
206
|
+
|
|
207
|
+
See [`examples/poc_compare/README.md`](examples/poc_compare/README.md).
|
|
208
|
+
|
|
209
|
+
## Visual demo (browser)
|
|
210
|
+
|
|
211
|
+
Interactive view of the same compare POC — tier badges, step cards, optional live latency bars. **Demo only**, not the product:
|
|
212
|
+
|
|
213
|
+
```bash
|
|
214
|
+
pip install -e ".[ollama]"
|
|
215
|
+
python examples/demo_ui/server.py
|
|
216
|
+
```
|
|
217
|
+
|
|
218
|
+
Open **http://127.0.0.1:8765**. Live mode needs models pulled (`ollama pull qwen3:4b` etc.); missing models show an actionable error, not a traceback.
|
|
219
|
+
|
|
220
|
+
See [`examples/demo_ui/README.md`](examples/demo_ui/README.md).
|
|
221
|
+
|
|
222
|
+
## Try it
|
|
223
|
+
|
|
224
|
+
**Agent runner (hero demo)** — five steps, different model per step:
|
|
225
|
+
|
|
226
|
+
```bash
|
|
227
|
+
pip install -e .
|
|
228
|
+
python examples/agent_runner/run.py
|
|
229
|
+
```
|
|
230
|
+
|
|
231
|
+
```text
|
|
232
|
+
[step 1/5] understand_goal: tier=medium model=qwen3:8b
|
|
233
|
+
[step 2/5] quick_lookup: tier=simple model=qwen3:4b
|
|
234
|
+
[step 3/5] compare_options: tier=medium model=qwen3:8b
|
|
235
|
+
[step 4/5] design: tier=complex model=qwen3:14b
|
|
236
|
+
[step 5/5] reason: tier=reasoning model=qwen3:14b
|
|
237
|
+
```
|
|
238
|
+
|
|
239
|
+
See [`examples/agent_runner/README.md`](examples/agent_runner/README.md).
|
|
240
|
+
|
|
241
|
+
**Quickstart tour** — config, dry routing, benchmark, optional live Ollama:
|
|
242
|
+
|
|
243
|
+
```powershell
|
|
244
|
+
.\examples\quickstart\try_it.ps1
|
|
245
|
+
.\examples\quickstart\try_it.ps1 --live
|
|
246
|
+
```
|
|
247
|
+
|
|
248
|
+
See [`examples/quickstart/README.md`](examples/quickstart/README.md).
|
|
249
|
+
|
|
250
|
+
## Install
|
|
251
|
+
|
|
252
|
+
**App authors (use in your project):**
|
|
253
|
+
|
|
254
|
+
```bash
|
|
255
|
+
pip install split-stack
|
|
256
|
+
pip install "split-stack[ollama]" # optional: Ollama discovery, stack ask
|
|
257
|
+
```
|
|
258
|
+
|
|
259
|
+
**Contributors (this repo):**
|
|
260
|
+
|
|
261
|
+
```bash
|
|
262
|
+
pip install -e .
|
|
263
|
+
pip install -e ".[ollama]"
|
|
264
|
+
```
|
|
265
|
+
|
|
266
|
+
Before PyPI: `pip install git+https://github.com/edwardjbaumel/split-stack.git`
|
|
267
|
+
|
|
268
|
+
See [`docs/FOR_APP_AUTHORS.md`](docs/FOR_APP_AUTHORS.md) · [`docs/PUBLISHING.md`](docs/PUBLISHING.md)
|
|
269
|
+
|
|
270
|
+
First-time local setup (VRAM preset, Ollama pulls, `split-stack.models.json`):
|
|
271
|
+
|
|
272
|
+
```bash
|
|
273
|
+
stack setup --profile workstation_12gb
|
|
274
|
+
stack setup --profile 12gb --yes # non-interactive
|
|
275
|
+
stack setup --profile 12gb --dry-run # plan only
|
|
276
|
+
```
|
|
277
|
+
|
|
278
|
+
## Public API
|
|
279
|
+
|
|
280
|
+
**Session (embedded):**
|
|
281
|
+
|
|
282
|
+
- `configure(vram_gb=16, quant="qat", models=[...], tiers=...)` → set default profile + tier map (once per process)
|
|
283
|
+
- `route(prompt, hint="lookup")` → `(tier, model)` tuple
|
|
284
|
+
- `explain(prompt, hint="lookup")` → `RouteDecision` with reasons (logging / debug)
|
|
285
|
+
- `describe_session()` → active configure snapshot
|
|
286
|
+
- `session_warnings()` → warnings from last configure
|
|
287
|
+
|
|
288
|
+
**Explicit (power user):**
|
|
289
|
+
|
|
290
|
+
- `assign_tiers(model_names)` → tier map from model list
|
|
291
|
+
- `route_prompt(text, tiers, hint="lookup")` → `(tier, model)` with your tier map
|
|
292
|
+
- `explain_route(text, tiers, hint=...)` → full decision trace
|
|
293
|
+
- `validate_tier_map(tiers, models, profile=...)` → warning strings
|
|
294
|
+
|
|
295
|
+
**Shared:**
|
|
296
|
+
|
|
297
|
+
- `score_prompt(text)` → tier only, no network
|
|
298
|
+
- `assign_recommended_tiers("workstation_16gb")` → preset ladder
|
|
299
|
+
- `usage_requirements(profile, check=True)` → prerequisite catalog
|
|
300
|
+
|
|
301
|
+
CLI for gateways and polyglot glue:
|
|
302
|
+
|
|
303
|
+
```bash
|
|
304
|
+
stack route --prompt "design webhook retries" --json --models qwen3:4b,qwen3:8b,qwen3:14b
|
|
305
|
+
stack benchmark --json
|
|
306
|
+
stack compare
|
|
307
|
+
stack ask --prompt "what is caching?" --json # optional: route + Ollama generate
|
|
308
|
+
```
|
|
309
|
+
|
|
310
|
+
## Local model table (optional)
|
|
311
|
+
|
|
312
|
+
For Ollama discovery and VRAM-aware filtering — not required for `route_prompt()` with your own model list.
|
|
313
|
+
|
|
314
|
+
```bash
|
|
315
|
+
stack models
|
|
316
|
+
stack doctor
|
|
317
|
+
copy config\models.example.json split-stack.models.json
|
|
318
|
+
```
|
|
319
|
+
|
|
320
|
+
Or `~/.config/split-stack/models.json` or `SPLIT_STACK_MODELS_CONFIG`. Presets: `stack profiles`. Guides: [`docs/LOCAL_MODELS.md`](docs/LOCAL_MODELS.md), [`docs/DATACENTER.md`](docs/DATACENTER.md).
|
|
321
|
+
|
|
322
|
+
## Integrations
|
|
323
|
+
|
|
324
|
+
- LiteLLM custom router: [`docs/integrations/litellm.md`](docs/integrations/litellm.md)
|
|
325
|
+
- VS Code / Cursor Quick Ask panel (optional demo, not the product): [`extension/vscode/README.md`](extension/vscode/README.md)
|
|
326
|
+
|
|
327
|
+
## Scope (v0.2)
|
|
328
|
+
|
|
329
|
+
**In scope:** tier heuristics, model mapping, agent-loop hook, benchmark evidence, pytest CI.
|
|
330
|
+
|
|
331
|
+
**Out of scope:** agent memory, tools, orchestration, Cursor proxy, cloud multi-provider policy.
|
|
332
|
+
|
|
333
|
+
## Docs and tests
|
|
334
|
+
|
|
335
|
+
- [`docs/PACKAGING_USER_GUIDE.md`](docs/PACKAGING_USER_GUIDE.md) — pip install for app devs
|
|
336
|
+
- [`docs/FOR_APP_AUTHORS.md`](docs/FOR_APP_AUTHORS.md) — one-page guide for other local LLM apps
|
|
337
|
+
- [`docs/INTEGRATION.md`](docs/INTEGRATION.md) — session vs explicit API
|
|
338
|
+
- [`docs/PUBLISHING.md`](docs/PUBLISHING.md) — PyPI checklist
|
|
339
|
+
- [`docs/SECURITY.md`](docs/SECURITY.md) — what not to commit
|
|
340
|
+
- [`docs/USER_STORIES.md`](docs/USER_STORIES.md)
|
|
341
|
+
- [`docs/DECISION_LOG.md`](docs/DECISION_LOG.md)
|
|
342
|
+
- [`docs/NAMING_CONVENTIONS.md`](docs/NAMING_CONVENTIONS.md)
|
|
343
|
+
- [`docs/REPOSITORY.md`](docs/REPOSITORY.md) — how this repo relates to other projects on disk
|
|
344
|
+
|
|
345
|
+
```bash
|
|
346
|
+
pip install -e ".[dev]"
|
|
347
|
+
pytest
|
|
348
|
+
```
|
|
349
|
+
|
|
350
|
+
94 tests, no GPU required.
|
|
351
|
+
|
|
352
|
+
## Resume line
|
|
353
|
+
|
|
354
|
+
Built **split-stack**, a zero-dep Python routing library for agent loops; shipped a 10-prompt benchmark, compare POC (`stack compare`), and agent-runner demo showing per-step local model tiering (4B/8B/14B) instead of always using the largest model.
|
|
355
|
+
|
|
356
|
+
## Related projects
|
|
357
|
+
|
|
358
|
+
Same author, separate product: [Local Recruiting Ops](https://github.com/edwardjbaumel/local-recruiting-ops) (local job pipeline and dashboard). split-stack does not depend on it.
|
|
359
|
+
|
|
360
|
+
## Adoption
|
|
361
|
+
|
|
362
|
+
- **PyPI:** follow [`docs/PUBLISHING.md`](docs/PUBLISHING.md) → `pip install split-stack`
|
|
363
|
+
- **Other apps:** embed `configure()` + `route()` or call `stack route --json` — see [`docs/FOR_APP_AUTHORS.md`](docs/FOR_APP_AUTHORS.md)
|
|
364
|
+
- **Evidence:** compare POC + live agent runner on your hardware
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
split_stack/__init__.py,sha256=AtvBma-QYci2OlS4bm0WqNQr1uRAaUMya2XklE5dwVA,2869
|
|
2
|
+
split_stack/__main__.py,sha256=X79S2PFqrYOGd2hLQtB0-uqsdquj9Iuez7SYR64r0Ps,90
|
|
3
|
+
split_stack/advice.py,sha256=KBw-Ly35O-4KaJgXwabtJqIFeaoP65wOj7VscodUiWc,427
|
|
4
|
+
split_stack/benchmark.py,sha256=lx2sJvlPlzHsCkGxQ5YS_Z4duzt25yhmqQpNSdAsOPM,3170
|
|
5
|
+
split_stack/cli.py,sha256=ohcTIV4V2fo7uoB52K_4Ynu1euDTq_jLPqalpwlnMMs,25005
|
|
6
|
+
split_stack/community_picks.py,sha256=Jaq0Wxs3_U4ix8kYLu2ge_VDMgym5xqKGtPsfxdEQhs,8148
|
|
7
|
+
split_stack/compare.py,sha256=4u4OQ38I6DhMft-TYrAKljLJ8vIam-SlfiT9hcjun-Q,6665
|
|
8
|
+
split_stack/complexity.py,sha256=R3N2t5QkGIkprx4fKnEqmsTPbTdsRo1Ap8-Er0lDEXk,1884
|
|
9
|
+
split_stack/discovery.py,sha256=W4B7DLpCQBkVtipIy2wlcs6bcNGikGHzoB94TJG4AI8,9693
|
|
10
|
+
split_stack/hints.py,sha256=jsfbWzuPDgZwrfmuuwhh1QHSFA7650Yy4VOuouJFSww,3125
|
|
11
|
+
split_stack/local_models.py,sha256=IEHrE9w0tmJ0Nb9toP50EJcOQMbO8VXX4id0TWS-MkY,2270
|
|
12
|
+
split_stack/model_guide.py,sha256=_xKFfyI30kN2VM8GgY4a05SIqPXTyDluOUZUcDpvuVw,9782
|
|
13
|
+
split_stack/model_registry.py,sha256=vXPj0-sRPv0tPNkodVpz5WyucOfrmawrWiTq8yaEYls,11066
|
|
14
|
+
split_stack/models.py,sha256=nDqFdeSGmcPPUCOVEEsArvUJApehNWvMFB97TaBI7zY,1820
|
|
15
|
+
split_stack/ollama_errors.py,sha256=nu3qLCGIcS3asX03AEKKALuiCnvLmr5BhP0RcRHhtlQ,962
|
|
16
|
+
split_stack/ollama_generate.py,sha256=qHJN1izaS855nL2TdiPnYV05TZPVpz03tqlXljcxvNo,3789
|
|
17
|
+
split_stack/poc_models.py,sha256=4wSXsRy2gz3aFPsTuwf4Mf2qbWAX9Cef_RS3zB5ZiPs,4422
|
|
18
|
+
split_stack/presets.py,sha256=1E7UsT0bahQMZZxBHr0iG0fxEIvq7f0VPKxPTRj_CI0,2580
|
|
19
|
+
split_stack/quantization.py,sha256=zZMs7aiqksUyVXzKK5JxQDEDYiYXYza2gXkMlWQqywE,4311
|
|
20
|
+
split_stack/requirements.py,sha256=QK7lxn7jVU39z2IZByEKOiv1xz3G2SIs96uRsspskdY,9475
|
|
21
|
+
split_stack/routing.py,sha256=99fZilyXddkZIhTaPQEsE6P2EDDuaXo4n1Xqs28Zq5Y,3219
|
|
22
|
+
split_stack/session.py,sha256=_YkoNhsOp_4u14NgzWSkIDDNiCrhUt0-eU3e5y6lTfI,7959
|
|
23
|
+
split_stack/setup_wizard.py,sha256=EyCr_QtiUZMBW20mEjYbjvHBg6tIqAUafLHZd_9dqBY,8195
|
|
24
|
+
split_stack/startup_tips.py,sha256=CY6k_lBSgmulbe0PLH3sIy6qL3B1wtQeLGGpHisskNs,5524
|
|
25
|
+
split_stack/tiering.py,sha256=M4outcZwO-m-th7OYbKYRILB5trnxJU6oQI0pEo_MsY,2163
|
|
26
|
+
split_stack/validation.py,sha256=-JMuDnia1Rd3fMYtHVHtJ-GW_4Rrbijl9MKlTnfpCyw,3056
|
|
27
|
+
split_stack-0.2.0.dist-info/licenses/LICENSE,sha256=scGzQpUJlz3hAQQfj_Ukpj_rGSSDKp2TgqP5wzchytQ,1069
|
|
28
|
+
split_stack-0.2.0.dist-info/METADATA,sha256=dvnZStht1fgl5ZDKsItIjILSxcVyJaYeujrJFceQP3g,13655
|
|
29
|
+
split_stack-0.2.0.dist-info/WHEEL,sha256=aeYiig01lYGDzBgS8HxWXOg3uV61G9ijOsup-k9o1sk,91
|
|
30
|
+
split_stack-0.2.0.dist-info/entry_points.txt,sha256=ZByxKJLPs5y8blfIgplNejfVkjQuH2F9A99JoH1m5gw,47
|
|
31
|
+
split_stack-0.2.0.dist-info/top_level.txt,sha256=gfw1Q0n9UcJE069uO9G-TPSU9P1fwvOj0nhUYKix2pM,12
|
|
32
|
+
split_stack-0.2.0.dist-info/RECORD,,
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 Eddie Baumel
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
split_stack
|