makepad/libs/ai/Cargo.toml
Admin 31e5faaff5 ai-hub: local model runner, licence acknowledgements, a shared install panel; Beat This!, Basic Pitch and the Salamander drum-kit entries
LocalModels runs registry models in-process (install state, resumable downloads, recorded licence acknowledgements at $MAKEPAD_HOME/license_acks.json, weight paths by file role) and libs/ai/hub_ui is the install panel + licence modal every app can embed. New native ports: Beat This! (beats + downbeats) and Basic Pitch (note transcription) with their registry entries; the Salamander Drumkit samples (CC BY-SA 3.0, 37 files pinned by size and sha256) as a sample bank the downloader fetches like a model.

Co-Authored-By: Claude Fable 5.1 <noreply@anthropic.com>
2026-09-02 02:51:44 +02:00

31 lines
751 B
TOML

# The AI model workspace: loader (disk), cuda/metal (kernel+residency
# stores), job (the one cross-model contract), llm + models/* (per-family
# model crates). Standalone workspace like libs/diffusion before it; the
# asset-ai service and root-workspace apps reach in via path deps.
# Plan of record: /aiarch.md
[workspace]
members = [
"loader",
"cuda",
"metal",
"job",
"llm",
"models/common",
"models/paint",
"models/h3",
"models/flux",
"models/vision",
"models/body",
"models/rig",
"models/motion",
"models/rife",
"models/sfx",
"models/music",
"models/speech",
"models/splat",
"models/stems",
"models/beats",
"models/notes",
"models/trellis",
]
resolver = "2"