[package] name = "makepad-files" version = "0.1.0" edition = "2021" [[bin]] name = "files" path = "src/main.rs" [features] default = ["chat"] chat = ["dep:makepad-ai-hub"] demo = [] [dependencies] makepad-widgets = { path = "../../widgets" } makepad-wm-theme = { path = "../../libs/wm_theme" } makepad-wm-api = { path = "../../libs/wm_api" } # The AI services wire: bounded read and confirmed mutation tools on the bus # (hosted port, id-correlated runner — see ai_service.rs). makepad-ai-services = { path = "../../libs/ai/services" } makepad-strict-json = { path = "../../libs/strict_json" } # The ask panel's local model: an in-process Qwen GGUF on makepad-ggml, loaded # only when the panel is first opened. makepad-ai-hub = { path = "../../libs/ai/hub", default-features = false, features = ["llm"], optional = true }