Single-commit clean baseline after security scrub of niche-tells, project codenames, internal jargon, and contributor-email leaks. Contents: - 100 Rust crates (_primitives/_rust/) - 37 agent manifests (_manifests/) + generated specs (_generated/) - 67 user-invocable skills (skills/) - 33 hooks (hooks/) - Composition blocks (_blocks/) - Documentation (docs/, README.md) - TS adapter packages (_ts_packages/) - Assembler (_assembler/) - Roles (_roles/) - Templates (_templates/) - Forgejo CI (.forgejo/) Author: Denis Parfionovich <info@greendragon.info> License: see LICENSE.
30 lines
904 B
TOML
30 lines
904 B
TOML
[package]
|
|
name = "kei-llm-router"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
rust-version = "1.75"
|
|
description = "Wave 60 — UNIVERSAL local-LLM backend selector. Glues W55-W59 (kei-model + kei-machine-probe + kei-llm-{ollama,llamacpp,mlx}) into a single route(machine, model_id, opts) decision."
|
|
authors = ["Denis Parfionovich <info@greendragon.info>"]
|
|
|
|
[[bin]]
|
|
name = "kei-llm-router"
|
|
path = "src/main.rs"
|
|
|
|
[lib]
|
|
name = "kei_llm_router"
|
|
path = "src/lib.rs"
|
|
|
|
[dependencies]
|
|
clap = { workspace = true }
|
|
serde = { workspace = true }
|
|
serde_json = { workspace = true }
|
|
anyhow = { workspace = true }
|
|
tokio = { workspace = true }
|
|
kei-model = { path = "../kei-model" }
|
|
kei-machine-probe = { path = "../kei-machine-probe" }
|
|
kei-llm-ollama = { path = "../kei-llm-ollama" }
|
|
kei-llm-llamacpp = { path = "../kei-llm-llamacpp" }
|
|
kei-llm-mlx = { path = "../kei-llm-mlx" }
|
|
|
|
[dev-dependencies]
|
|
tempfile = { workspace = true }
|