Open source mirror of MAYA AI's flagship Hugging Face Spaces. Each subdirectory is a standalone, deployable Space — fork, clone, or deploy to your own HF account.
This repository contains 4 production-ready HF Spaces maintained by MAYA AI. Each folder is a complete Space — drop it into a new HF Space repo and it runs.
| Folder | HF Space | SDK | Likes | Purpose |
|---|---|---|---|---|
all-leaderboard/ |
MAYA-AI/all-leaderboard | static | ⭐ 28 | Unified LLM leaderboard (CLIcK, KMMLU, GPQA, HAE-RAE, etc.) |
qwen-3_5-chat/ |
MAYA-AI/QWEN-3_5-CHAT | gradio | ⭐ 16 | Qwen 3.5 chat interface with HF OAuth |
openclaw-moltbot/ |
mayafree/openclaw-moltbot | gradio | ⭐ 6 | LLM battle arena (blind side-by-side voting) |
fish-s2-pro-zero/ |
MAYA-AI/fish-s2-pro-zero | gradio | ⭐ 3 | Zero-shot speech-to-speech voice cloning |
Huggingface-MAYA/
├── README.md ← you are here
├── all-leaderboard/ ← 🏆 static HTML leaderboard
│ ├── README.md
│ ├── index.html (40 KB — main leaderboard)
│ ├── backup.html
│ ├── style.css
│ └── .gitattributes
├── qwen-3_5-chat/ ← 💬 Qwen 3.5 chat (Gradio)
│ ├── README.md
│ ├── app.py (16 KB — Gradio app + OAuth)
│ ├── index.html (47 KB — custom chat UI)
│ ├── requirements.txt
│ └── .gitattributes
├── openclaw-moltbot/ ← 🤖 LLM battle arena (Gradio)
│ ├── README.md
│ ├── app.py
│ ├── battle_arena.py (31 KB — arena logic)
│ ├── index.html
│ ├── requirements.txt
│ └── .gitattributes
└── fish-s2-pro-zero/ ← 🗣️ voice cloning (Gradio)
├── README.md
├── app.py (12 KB — S2S inference)
├── requirements.txt
├── packages.txt
└── .gitattributes
Each subdirectory is 1:1 compatible with a Hugging Face Space repository.
# 1. Create a new Space on https://huggingface.co/new-space
# (pick the same SDK: static / gradio / docker)
# 2. Clone it locally
git clone https://huggingface.co/spaces/YOUR_USERNAME/YOUR_SPACE
cd YOUR_SPACE
# 3. Copy this repo's folder contents into it
cp -r /path/to/Huggingface-MAYA/all-leaderboard/* .
# 4. Push
git add .
git commit -m "Initial deployment from MAYA AI mirror"
git pushgit clone https://huggingface.co/spaces/MAYA-AI/all-leaderboardSome Spaces require secrets configured in the HF Space Settings → Variables and secrets panel.
| Secret | Required | Purpose |
|---|---|---|
HF_TOKEN |
✅ yes | Access gated Qwen models |
OAUTH_CLIENT_ID |
✅ yes | HF OAuth login (auto-provided by HF Space OAuth) |
OAUTH_CLIENT_SECRET |
✅ yes | HF OAuth login (auto-provided by HF Space OAuth) |
SPACE_HOST |
optional | Custom domain override (default: localhost:7860) |
OAUTH_SCOPES |
optional | OAuth scopes (default: openid profile) |
| Secret | Required | Purpose |
|---|---|---|
MAIN_CODE |
✅ yes | Runtime loader code (supplied by maintainer) |
No secrets required — runs out of the box.
Our leaderboard aggregates results across:
- Korean benchmarks: CLIcK, KMMLU, HAE-RAE, KoBEST
- Reasoning benchmarks: GPQA, MMLU, ARC-Challenge
- Chat/Instruction: MT-Bench, AlpacaEval
Top-ranking MAYA AI models:
- 🥇 Darwin-31B-Opus — CLIcK 84.5 / KMMLU 76.0 / GPQA 85.9
- 🥇 Darwin-27B-Opus — GPQA 86.9 (SOTA in size class)
This mirror is updated periodically. For the absolute latest version, always pull from the upstream HF Spaces — this GitHub mirror exists for:
- Discoverability — GitHub search surfaces code that HF doesn't index the same way
- Version history — commit-by-commit diffs across deployments
- Backup — independent snapshot of Space source
- Community contributions — PRs, issues, forks
Found a bug? Want to improve a Space? PRs welcome.
- Fork this repo
- Make your changes in the relevant
<space-name>/folder - Test locally (see each folder's README for run instructions)
- Open a PR — we'll review and mirror approved changes upstream to HF
- 🤗 Hugging Face: mayafree · MAYA-AI
- 🐦 Twitter: @mayafree_ai
- 🌐 Landing: mayafree.ai · github.com/mayafree-ai/AI
- 📧 Email:
mayafreeai@gmail.com
This repository and its mirror contents are licensed under Apache License 2.0.
Individual Space components may depend on models or libraries with their own licenses — check each folder's README and the referenced model cards on Hugging Face.
Last synced: 2026-04-22 · Mirrored from huggingface.co/MAYA-AI and huggingface.co/mayafree