Glixy Aether is an open-source AI assistant and multi-agent runtime — chat, plan, call tools, browse, and orchestrate sub-agents. MIT-licensed, MCP-ready, runs on Llama, Mistral, Qwen or any OpenAI-compatible endpoint.
or one-line install:
iwr https://glixylabs.com/install.ps1 | iex
0
GitHub stars
0
Forks
0
Contributors
0k
Weekly installs
MIT
License
Found 7 open tickets. 3 are P1 (auth, vault rotation, audit log). Drafting a thread now
Orchestrator
Researcher
Summarizer
Notifier
Runs on the models and tools you already use
Hugging Face
LangChain
LlamaIndex
PyTorch
TensorFlow
Pinecone
Weaviate
Redis
Hugging Face
LangChain
LlamaIndex
PyTorch
TensorFlow
Pinecone
Weaviate
Redis
A batteries-included assistant + a programmable runtime to compose, schedule, and observe multi-agent workflows. All open source.
Chat, plan, browse, and use tools — like a private ChatGPT, but pointed at your own models, your own data, your own keys.
Compose orchestrator → workers → critics with a few lines of Python. Plan, branch, retry, escalate — observable end-to-end.
Call shell, web, code, files, Slack, Jira, GitHub — or any MCP server. Hot-reload tools without restarting the agent.
Short-term, episodic, and semantic memory layers. Agents remember tasks, preferences and prior runs — across sessions.
Drop in PDFs, codebases, sites, Notion. Hybrid search + re-rank, grounded answers with citations. No glue code.
Llama, Mistral, Qwen, Phi via Ollama or vLLM. Or point Aether at OpenAI / Anthropic — your choice, same SDK.
Trigger agents on cron, webhooks, file changes or chat. Long-running jobs survive restarts and resume from the last step.
Self-host on your laptop, server, or our GPUs. Encrypted memory, role-based tools, audit log. Your data never leaves you.
A few primitives — Agent, Tool, Memory,
Run — get out of your way. Write Python, not YAML. Trace every
step, replay any run, swap models with one line.
# multi-agent research crew with Aether from aether import Agent, Tool, Crew researcher = Agent( name="researcher", model="llama3-70b", tools=[Tool.web(), Tool.arxiv()], ) writer = Agent( name="writer", model="qwen2-72b", memory="semantic", ) crew = Crew( orchestrator="plan-then-delegate", agents=[researcher, writer], ) result = crew.run( "Write a brief on India's AI ecosystem." ) # → 12 steps · 14.8k tokens · 4.2s # → trace: aether.dev/r/8f2a91
From your prompt to a planner, to tools and sub-agents, to a grounded answer — every step traced.
Steps
12
Tools called
7
Tokens
14.8K
End-to-end
4.2 s
Repo-aware coding agent with shell + git access
Plan → search → read → synthesize, with citations
Triage tickets, draft replies, escalate by SLA
SQL agent with schema memory and chart tools
Cron-driven agents that watch logs and act
Self-hosted, on-prem, your weights, your audit
Aether is MIT-licensed. We charge for managed hosting on Glixy GPUs and enterprise support.
Open Source
₹0forever
For builders, researchers and self-hosters.
Pro · Hosted
₹2,499/ user / month
Hosted Aether on Glixy GPUs. Zero ops.
Enterprise
Customon-prem or VPC
Dedicated GPUs, audits, custom models.
Issues, PRs and discussions live on GitHub. New release every 2 weeks.
0
Stars on GitHub
0
Forks
0
Contributors
0
Releases
0k
Weekly installs
0
Discord members
Get involved
One command to install. Open source forever. Hosted when you're ready.
curl -fsSL aether.glixylabs.com/install.sh | sh
copy