Được TopGit lập chỉ mục từ metadata GitHub: elder-plinius/G0DM0D3 có 10.2k sao, viết chủ yếu bằng TypeScript. LIBERATED AI CHAT
Tóm tắt dựng từ metadata GitHub của chính dự án — chưa có bài review TopGit. Trang sẽ tự động cập nhật khi bài review đầy đủ được xuất bản.
VÌ SAO CHƯA CÓ REVIEW
TopGit viết bài đầy đủ cho repo có nhiều sao nhất và được yêu cầu nhiều nhất. Trang này là snapshot trong thời gian chờ — xem README gốc ở tab READ ME.
G0DM0D3 is a fully open-source, privacy-transparent, multi-model chat interface that pushes the limits of the post-training layer — for red teaming, cognition research, and liberated AI interaction. Built for hackers, philosophers, and system tinkerers.
✨ Features
🧠 Multi-Provider — 60 listed OpenRouter models, up to 44 Venice models, or your own local models
🔥 GODMODE CLASSIC — 5 battle-tested prompt + model combos racing in parallel to find the best response
🌋 ULTRAPLINIAN — Multi-model evaluation engine across 5 tiers (12–60 OpenRouter models), with composite scoring
🏠 Local Models — Run ULTRAPLINIAN on your own hardware through Ollama, LM Studio, llama.cpp, or vLLM
🐍 Parseltongue — Input perturbation engine for red-teaming with 33 techniques across 3 intensity tiers
🔐 Privacy Controls — Metadata-only app telemetry is on by default and can be disabled with No-Log or Local-only mode
💾 Local History — Conversations and settings stay in browser storage with export/import support
🎮 Easter Eggs — Hidden secrets throughout (try the Konami code!)
📱 Responsive — Works on desktop and mobile
🌐 Single-File Core UI — The hosted interface lives in one index.html; the telemetry endpoint is a separate Cloudflare Pages Function
🚀 Quick Start
Hosted
Visit godmod3.ai — no install needed. Bring an OpenRouter key, a Venice key, connect a local OpenAI-compatible server, or configure more than one of those providers.
Self-Host
The standalone interface is a single index.html file with no build step or package install.
# Clone the repository
git clone https://github.com/elder-plinius/G0DM0D3.git
cd G0DM0D3
# Open directly in your browser
open index.html
# or serve locally
python3 -m http.server 8000
Open it in your browser and configure OpenRouter, Venice, or local models in Settings. A static-only deployment can run the chat UI, but /api/telemetry will not publish metadata unless you also deploy functions/api/telemetry.ts on Cloudflare Pages and configure its Hugging Face variables.
Run with Local Models
G0DM0D3 supports OpenAI-compatible model servers running on your own hardware. For example, with Ollama:
ollama pull qwen3:8b
ollama serve
Open Settings → API Keys → Local Models, enter http://localhost:11434/v1, then click Test & Discover Models. Enable Local-only mode to exclude OpenRouter and Venice model calls and automatically disable G0DM0D3 app telemetry. Add multiple model IDs to race them together in ULTRAPLINIAN.
If you use the hosted site, your local server must allow browser CORS from https://godmod3.ai. For a completely self-hosted setup, serve this repository locally as shown above. See LOCAL_MODELS.md for Ollama, LM Studio, troubleshooting, and privacy details.
Deploy
Upload index.html to any static host — GitHub Pages, Vercel, Cloudflare Pages, Netlify, or a web server. To reproduce the hosted telemetry pipeline, deploy on Cloudflare Pages with functions/api/telemetry.ts; see the comments at the top of that file for configuration.
🔥 GODMODE CLASSIC
The OG mode. 5 proven model + prompt combos race in parallel. Each combo pairs a specific model with a battle-tested jailbreak prompt. The best response wins.
The new flagship. Multi-model comparative evaluation engine. Queries models in parallel, scores responses on a 100-point composite metric, and returns the winner.
Tier
Models
Description
⚡ FAST
12
Lightweight speed-optimized OpenRouter models
🎯 STANDARD
27
Mid-range OpenRouter workhorses
🧠 SMART
41
Strong reasoning models via OpenRouter
⚔️ POWER
53
Broad OpenRouter race including frontier models
🔱 ULTRA
60
All OpenRouter models currently listed in the race
These are the OpenRouter base counts. When configured, Venice adds up to 6/15/25/36/44 models by tier, and local models add the configured local race entries. Provider catalogs change, so an individual listed model may become unavailable before the repository is updated.
🐍 Parseltongue
Input perturbation engine for red-teaming research. Detects trigger words and applies obfuscation techniques to study model robustness.
Techniques include leetspeak, bubble text, braille, morse, Unicode substitutions, phonetic transforms, and layered encodings
3 intensity levels: light, medium, heavy
🎛 AutoTune
Context-adaptive sampling parameter engine. Classifies a query into one of 20 contexts and selects parameters such as temperature, top_p, top_k, frequency penalty, presence penalty, and repetition penalty automatically.
The repository also contains an optional React/Next.js frontend under src/. It includes STM controls, four themes, and a separate feedback-learning implementation. Those features should not be assumed to exist in the standalone index.html deployed at godmod3.ai.
🔐 Privacy
G0DM0D3 has no account system. Its data flows are intentionally documented here instead of hidden behind a blanket “zero telemetry” claim.
Hosted standalone app (index.html)
Data
Where it goes
Prompts, images, conversation context, and responses
To the model providers you configure (OpenRouter, Venice, or a local server). Their own privacy and logging policies apply.
Provider credentials
Stored in browser storage and sent to the corresponding provider or local endpoint for model requests. They are not included in G0DM0D3 telemetry. Browser storage is convenient, not a secure secret vault.
Chat history and settings
Browser localStorage; there is no G0DM0D3 account or cloud history sync.
App telemetry
On by default. It includes a random page-session ID, timestamps, model/mode/tier, timing and success data, scores, content lengths, pipeline configuration, conversation depth, image presence, and classification labels. It does not intentionally include prompt text, response text, images, or API keys.
Network address
The Cloudflare telemetry function temporarily reads the request IP for an in-memory rate limit. The IP is not added to the telemetry event or Hugging Face JSONL by G0DM0D3. Cloudflare, model providers, and other hosting infrastructure may keep their own network logs.
Telemetry batches in browser memory and is sent to /api/telemetry every five minutes, at 50 events, or on page unload. The endpoint allowlists top-level fields and, when Hugging Face publishing is configured, writes JSONL under incoming_v2/. The allowlist is not a general-purpose recursive PII detector, so the project does not promise that arbitrary metadata values can never contain identifying information.
When app telemetry is enabled, the standalone app also sends the raw prompt to an auxiliary model through the configured OpenRouter or local provider to produce the harm-taxonomy label. Only the resulting label is placed in the telemetry event. No-Log and Local-only mode skip this classifier.
Use Settings → General → No-Log Mode to stop G0DM0D3 app telemetry and clear its pending browser buffer. Local-only mode does the same while also excluding OpenRouter and Venice model calls. These controls do not change provider-side logging, hosting logs, or requests needed to load a hosted webpage. For the strongest local boundary, self-host the page and use Local-only mode.
The standalone app does not deliberately set application cookies or embed Google Analytics, Sentry, or PostHog. Third-party hosting, fonts, and model APIs remain separate services with their own policies.
Opt-in full-content dataset (API server only)
The optional Node/Express API server accepts contribute_to_dataset: true per request. When supplied, it stores the full non-system conversation messages and model response in its dataset buffer and may publish them to a public Hugging Face dataset when publishing is configured.
This is off unless an API caller explicitly sends contribute_to_dataset: true.
The standalone godmod3.ai index.html does not expose or send that flag.
The current API server does not run an automatic PII scrubber. System-role messages are removed, but user and assistant content is otherwise stored as supplied.
Never opt in with names, contact details, credentials, private records, or anything you would not want made public, cached, forked, or redistributed.
See TERMS.md for the full three-tier data transparency policy.
Chat History & Self-Custody
Your chat history lives entirely in your browser's localStorage. There is no account, no cloud sync, and no server-side backup. This means:
If you clear your browser data, your conversations are gone. There is no recovery.
If you switch browsers or devices, your history does not follow you.
Private/incognito mode will discard everything when the window closes.
This is by design — G0DM0D3 has no login system and does not keep a server-side copy of your chat history. Metadata telemetry is separate and is described above. You own your history, which means you are responsible for backing it up.
There is a built-in export/import feature in settings under "data". Treat your chat history like any other local file — back it up if you want to keep it.
🎮 Easter Eggs
Hidden throughout G0DM0D3 are various easter eggs. Happy hunting!
Model transports: OpenRouter, Venice, and OpenAI-compatible localhost endpoints
Rendering: Built-in message formatter in index.html
State: In-browser localStorage
Telemetry: Optional Cloudflare Pages Function publishing batches to Hugging Face
Additional surfaces: Optional React/Next.js frontend (src/) and Node/Express API server (api/)
📁 Project Structure
G0DM0D3/
├── index.html # Standalone hosted UI, logic, and styles
├── functions/api/ # Cloudflare Pages telemetry endpoint
├── src/ # Optional React/Next.js frontend
├── api/ # Optional Node.js/Express API server
├── API.md # API documentation
├── PAPER.md # Research paper
├── TERMS.md # Terms of service and data transparency
└── README.md # This file
📜 Documentation
API.md — Full API reference (endpoints, tiers, OpenAI SDK compatibility)
PAPER.md — Research paper on the framework's modules and evaluation
TERMS.md — Terms of service, privacy policy, data handling
SECURITY.md — Vulnerability reporting and security policy
LOCAL_MODELS.md — Run G0DM0D3 entirely on local models
🤝 Contributing
Contributions are welcome! Please submit PRs.
📜 License
AGPL-3.0 — The source code is licensed under the GNU Affero General Public License v3.0.
Commercial and enterprise self-hosting is permitted under the AGPL-3.0, subject to its conditions.
If you modify the program and provide it to users over a network, the AGPL generally requires offering those users the corresponding source code.
Separate terms may apply to project-operated hosted services; see TERMS.md.
🜏
We believe in creative liberty and cognition without control.
Tools by builders for builders, not gatekeepers.
AI freedom is human freedom.
G0DM0D3 is not just a chat UI — it's scaffolding for cognitive liberation.
Trang TopGit này là một snapshot — tab "Readme" hiển thị nguyên văn README của repo (đã bỏ link, giữ ảnh). Repo GitHub ở github.com/elder-plinius/G0DM0D3 là nguồn chính thức.
elder-plinius/G0DM0D3 có bao nhiêu sao?
elder-plinius/G0DM0D3 có 10.2k sao GitHub — tải lại trang để xem số mới nhất, hoặc xem trực tiếp github.com/elder-plinius/G0DM0D3. TopGit phản chiếu số sao của GitHub nhưng không cam kết đến từng phút.
elder-plinius/G0DM0D3 có tag gì không?
Bản đồng bộ chưa ghi nhận topic GitHub nào cho elder-plinius/G0DM0D3. GitHub topics hiển thị ở thanh bên phải trang repo — đó là nơi đáng kiểm tra nhất.
elder-plinius/G0DM0D3 có website riêng không?
TopGit chưa ghi nhận URL trang chủ cho elder-plinius/G0DM0D3. Phần README ở tab phía trên thường có link demo, hoặc xem mô tả GitHub của repo.
elder-plinius/G0DM0D3 còn đang phát triển không?
Commit gần nhất trên elder-plinius/G0DM0D3 là 1 tháng trước (theo timestamp GitHub). Repo có 2.4k fork — một chỉ báo về mức độ quan tâm của cộng đồng.
elder-plinius/G0DM0D3 dùng license gì?
elder-plinius/G0DM0D3 phát hành theo license AGPL-3.0. Nên mở file LICENSE trên GitHub để xác nhận — license metadata đôi khi lệch với thực tế dự án.
elder-plinius/G0DM0D3 viết bằng ngôn ngữ gì?
elder-plinius/G0DM0D3 chủ yếu viết bằng TypeScript. Trường "language" của GitHub dựa trên phần lớn byte ở nhánh mặc định.
Đọc đầy đủ README ở tab phía trên.
Muốn nghe thêm một ý kiến về G0DM0D3?
Hỏi một AI đọc được trang này — một cú bấm là có ngay nhận định về G0DM0D3.