suite / app.py
JoeyLee1980's picture
update: suite polished demo
b308e91 verified
Raw
History Blame Contribute Delete
517 Bytes
import gradio as gr
def show():
return """## XMRT Suite - AI Development Platform
| Module | Status |
|--------|--------|
| AI IDE | Live |
| Agent Builder | Live |
| Wallet Manager | Live |
| Mesh Monitor | Beta |
| Market Terminal | Beta |
### Agents Built:
- Eliza (ZeroClaw governance)
- Elon (Mining optimization)
- PriceOracle (Market signals)
**Repo:** github.com/xmrtdao/suite"""
with gr.Blocks(title='XMRT Suite') as demo:
gr.Markdown('# 🧰 XMRT Suite')
gr.Markdown(show())
demo.launch()