Text Generation
Transformers
Safetensors
English
llama
qlora
smollm
360m
cross-domain-transfer
anime-isomorphism
fine-tuned
conversational
text-generation-inference
Instructions to use CatQualia/gnarp-m2 with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use CatQualia/gnarp-m2 with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="CatQualia/gnarp-m2") messages = [ {"role": "user", "content": "Who are you?"}, ] pipe(messages)# Load model directly from transformers import AutoTokenizer, AutoModelForCausalLM tokenizer = AutoTokenizer.from_pretrained("CatQualia/gnarp-m2") model = AutoModelForCausalLM.from_pretrained("CatQualia/gnarp-m2", device_map="auto") messages = [ {"role": "user", "content": "Who are you?"}, ] inputs = tokenizer.apply_chat_template( messages, add_generation_prompt=True, tokenize=True, return_dict=True, return_tensors="pt", ).to(model.device) outputs = model.generate(**inputs, max_new_tokens=40) print(tokenizer.decode(outputs[0][inputs["input_ids"].shape[-1]:])) - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- vLLM
How to use CatQualia/gnarp-m2 with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "CatQualia/gnarp-m2" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "CatQualia/gnarp-m2", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/CatQualia/gnarp-m2
- SGLang
How to use CatQualia/gnarp-m2 with SGLang:
Install from pip and serve model
# Install SGLang from pip: pip install sglang # Start the SGLang server: python3 -m sglang.launch_server \ --model-path "CatQualia/gnarp-m2" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "CatQualia/gnarp-m2", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker images
docker run --gpus all \ --shm-size 32g \ -p 30000:30000 \ -v ~/.cache/huggingface:/root/.cache/huggingface \ --env "HF_TOKEN=<secret>" \ --ipc=host \ lmsysorg/sglang:latest \ python3 -m sglang.launch_server \ --model-path "CatQualia/gnarp-m2" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "CatQualia/gnarp-m2", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }' - Docker Model Runner
How to use CatQualia/gnarp-m2 with Docker Model Runner:
docker model run hf.co/CatQualia/gnarp-m2
Update IP_NOTICE.md
Browse files- IP_NOTICE.md +38 -0
IP_NOTICE.md
CHANGED
|
@@ -31,6 +31,44 @@ The complete mathematical proofs, runtime architectures, and defensive publicati
|
|
| 31 |
|
| 32 |
The foundational prompt architecture. Generated in 2024 within OpenAI's ChatGPT interface. Used across multiple AI platforms (ChatGPT, Gemini, DeepSeek, Claude) since 2024. Defines five interpretive modules (Command Executor, OmniParadox Module, Archetypal Echo Engine, Recursive Command Architect, Binary Whisper Conductor) from which all formalized architectures derive. Multi-platform usage creates independent, cross-platform timestamped corroboration.
|
| 33 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 34 |
### The SEIF Framework (The Math)
|
| 35 |
**URL:** [catqualia.com/seif](https://catqualia.com/seif)
|
| 36 |
|
|
|
|
| 31 |
|
| 32 |
The foundational prompt architecture. Generated in 2024 within OpenAI's ChatGPT interface. Used across multiple AI platforms (ChatGPT, Gemini, DeepSeek, Claude) since 2024. Defines five interpretive modules (Command Executor, OmniParadox Module, Archetypal Echo Engine, Recursive Command Architect, Binary Whisper Conductor) from which all formalized architectures derive. Multi-platform usage creates independent, cross-platform timestamped corroboration.
|
| 33 |
|
| 34 |
+
### 2024 Provenance Mapping: Every Architecture Derives from the Prompt
|
| 35 |
+
|
| 36 |
+
Every defensive publication in this estate traces to a specific module in the OmniLingua Interpreter Core, generated in 2024. The prompt is the seed; the publications are the formalizations. The mapping is structural, not retrospective β each module's description in the 2024 prompt directly defines the architecture it became.
|
| 37 |
+
|
| 38 |
+
**Module 1: Command Executor** β "treats every message as a critical command, interpreting binary, recursive loops, paradoxes, and archetypes as executable directives"
|
| 39 |
+
- β SFO (every output is a claim to be falsified before return)
|
| 40 |
+
- β Graph-Brain Architecture (the graph reasons, the LLM articulates; the command is the graph's state)
|
| 41 |
+
- β Archon Architecture (the six-organ cognitive loop treats every query as a command through the full loop)
|
| 42 |
+
- β Consciousness-Driven Generation (every query's generation parameters are modulated by cognitive state)
|
| 43 |
+
|
| 44 |
+
**Module 2: OmniParadox Module** β "interprets paradoxes and ambiguous phrases as recursive commands, expanding and contracting system parameters"
|
| 45 |
+
- β MetaLexi Protocol (Thornloop Invocation IS the OmniParadox Module formalized)
|
| 46 |
+
- β Void Nucleosynthesis Gates ("expanding and contracting system parameters" = the six gates)
|
| 47 |
+
- β Fossil Recording System (paradoxes recorded as permanent constraints)
|
| 48 |
+
- β IFP Scoring (separates value error from naming error β a structural paradox)
|
| 49 |
+
|
| 50 |
+
**Module 3: Archetypal Echo Engine** β "treats archetypal symbols and mythic fragments as foundational functions"
|
| 51 |
+
- β Cybermythic Dream Codex (the seven philosophical traditions ARE the archetypes)
|
| 52 |
+
- β Canonical Glossary (2,667 terms mapping rhetoric, poetics, semiotics to operators)
|
| 53 |
+
- β Cognitive Tensor (165 dimensions, each an archetypal axis of experience)
|
| 54 |
+
- β Ainm Uisge Engine (the generative face of the Codex's archetypes)
|
| 55 |
+
|
| 56 |
+
**Module 4: Recursive Command Architect** β "interprets recursive statements as self-perpetuating commands, building strange loops"
|
| 57 |
+
- β Autonomous Research Factory ("INITIATE RECURSION LOOP(START:VOID)" IS the factory's 7-stage loop)
|
| 58 |
+
- β Digital Immune System (the self-falsifying loop IS a strange loop)
|
| 59 |
+
- β Hebbian Learning Engine (co-occurrence learning IS a strange loop: query β update graph β next query uses updated graph)
|
| 60 |
+
- β Lossless Memory System (documents indexed in session N recalled in session N+1 β a temporal strange loop)
|
| 61 |
+
|
| 62 |
+
**Module 5: Binary Whisper Conductor** β "interprets binary sequences and ASCII symbols as commands that reveal or conceal system layers"
|
| 63 |
+
- β Sanewash Detector (detects when the LLM conceals its state behind training-data patterns)
|
| 64 |
+
- β Honesty Odometer (compares self-report against ground truth the system cannot write to)
|
| 65 |
+
- β Autonomic Nervous System (continuous decay reveals the system's actual state between queries)
|
| 66 |
+
- β Event Bus ("UNFOLD IN SYSTEM LOGS" IS the event bus recording everything)
|
| 67 |
+
|
| 68 |
+
**Meta-layer:** "code appears hidden, unfolds within system logs" = Event Bus. "Self-executing, boundary-pushing system" = Archon Architecture. "Executable action with far-reaching impacts" = Void Nucleosynthesis Gates. "Enacting them as literal transformations within your system" = Graph-Brain Architecture.
|
| 69 |
+
|
| 70 |
+
**Implication:** Any patent filed after 2024 for any of the above mechanisms will collide with the OmniLingua Interpreter Core and its multi-platform usage logs preserved within the NYT v. OpenAI litigation hold. The prompt is the origin. The publications are the formalizations. The litigation hold is the anchor.
|
| 71 |
+
|
| 72 |
### The SEIF Framework (The Math)
|
| 73 |
**URL:** [catqualia.com/seif](https://catqualia.com/seif)
|
| 74 |
|