Open Source · Rust

AI agents जो साथ मिलकर काम करते हैं।
config में परिभाषित। mesh से जुड़े।

एक TOML file = LLM, tools, scheduling, memory और mesh networking वाला पूरा autonomous agent। API keys साझा किए बिना providers साझा करें। device पर चलाएं। cloud नहीं, Python नहीं, credential leaks नहीं।

Rust library, CLI, VS Code extension और iOS/Android FFI के रूप में भी उपलब्ध।

एक command में install करें

curl -sSf https://query.mt/install.sh | sh

macOS Silicon: download के बाद quarantine flag हटाएं:  xattr -dr com.apple.quarantine qmtcode
Rust developers: यहां जोड़ें: Cargo.tomlquerymt = { version = "0.3", features = ["extism_host"] }

पांच pillars जो querymt QueryMT को अलग बनाते हैं

हर feature इन pillars में से एक से जुड़ा है। साथ मिलकर ये ऐसा framework बनाते हैं जो दूसरे नहीं देते।

config से running agent तक तीन steps

1

TOML file लिखें

[agent]
provider = "anthropic"
model = "..."
tools = ["shell", "knowledge_ingest"]

[[mcp]]
name = "github"

[[middleware]]
type = "limits"
2

एक command चलाएं

qmtcode --config agent.toml --dashboard
Agent bootstrap करता है
MCP servers load करता है
knowledge store बनाता है
scheduler शुरू करता है
mesh join करता है
3

dashboard इस्तेमाल करें

chat > इससे chat करें
cron > schedule करें
tail > चलते हुए देखें
mode > mode बदलें

17+ providers, एक API

OCI से pull होने वाले WASM या native plugins। default रूप से sandboxed। local inference के लिए GPU auto-detection।

$ qmt providers list 17 adapters
provider-registry status: plugin-तैयार
[01] plugin: OpenAI तैयार
[02] plugin: Anthropic तैयार
[03] plugin: Google तैयार
[04] plugin: Groq तैयार
[05] plugin: xAI तैयार
[06] plugin: Ollama तैयार
[07] plugin: llama.cpp तैयार
[08] plugin: Mistral तैयार
[09] plugin: DeepSeek तैयार
[10] plugin: Alibaba तैयार
[11] plugin: Moonshot तैयार
[12] plugin: Kimi-Code तैयार
[13] plugin: OpenRouter तैयार
[14] plugin: Codex तैयार
[15] plugin: Z.AI तैयार
[16] plugin: Izwi तैयार
[17] plugin: MRS तैयार

आप कहां fit होते हैं?