XPDevs/Genesis-SPT-5.5
0
Genesis 5.5
A lightweight JSON conversational AI model. Works offline. No GPU required.
Overview
Genesis 5.5 maps user inputs to handcrafted responses. It does not use neural networks or inference engines. Just load the JSON and start chatting.
Available Variants
- Model: Genesis 5.5
- Format: JSON (key to response)
- Entries: 525,786 per variant
- Language: English
- License: MIT
Features
- Instant responses. No computation. Just a lookup.
- Fully offline. No internet or API calls needed.
- Zero dependencies. Just a JSON parser and string matching.
- Massive coverage. 525K+ entries spanning greetings, farewells, emotional support, philosophy, science topics, capabilities, and more.
- Reasoning simulation (Thinking variant). Each response includes a
<|think|>internal monologue. Clients can show this as chain-of-thought.
Categories
The model covers 525,786 conversation patterns across 20+ categories.
Reasoning Tags (Thinking Variant)
Every response in the Thinking variant includes a <|think|> tag with simulated reasoning.
{
"who are you": "<|think|>User is asking about my identity. I should be clear and friendly — state my name, who built me, and what I do.</|think|>I'm Genesis 5.5 — a conversational model built by XPDevs. I'm here to chat, help, and keep you company!"
}Clients can parse these tags. The thinking content can be shown before the clean response.
Usage (Python)
import json, re
with open("5.5/Genesis-5.5.json") as f:
model = json.load(f)
def respond(input_text, model):
clean = input_text.lower().strip()
if clean in model:
raw = model[clean]
clean = re.sub(r"<\|think\|>.*?</\|think\|>", "", raw).strip()
return clean
return "I'm not sure how to respond to that. Could you rephrase?"
print(respond("hello", model))File Structure
5.5/
Genesis-5.5.json # Standard model data (~55 MB)
Genesis-5.5-Thinking.json # Model with reasoning blocks (~115 MB)
README.md # This fileThe JSON is a flat object.
{
"ver": "Genesis 5.5",
"hello": "Hey, good to see you! What's good? 😄",
"bye": "Goodbye! Talk to you later — Genesis signing off. ✌️",
...
}Limitations
- No generative capabilities. Responses are pre-written. The model cannot answer questions outside its dataset.
- No memory. Each response is stateless. Conversation history is not considered.
- English only. Designed for English conversation patterns.
License
MIT. Free to use, modify, and distribute.
Built by XPDevs.
