Text Generation
Transformers
English
mistral
lora
solana
crypto
defi
agent
agentic
zent
quex
quantum-edge
token-launch
community
Instructions to use ZENTSPY/quex-quantum-edge-7b with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use ZENTSPY/quex-quantum-edge-7b with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="ZENTSPY/quex-quantum-edge-7b")# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("ZENTSPY/quex-quantum-edge-7b", device_map="auto") - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- vLLM
How to use ZENTSPY/quex-quantum-edge-7b with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "ZENTSPY/quex-quantum-edge-7b" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "ZENTSPY/quex-quantum-edge-7b", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }'Use Docker
docker model run hf.co/ZENTSPY/quex-quantum-edge-7b
- SGLang
How to use ZENTSPY/quex-quantum-edge-7b 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 "ZENTSPY/quex-quantum-edge-7b" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "ZENTSPY/quex-quantum-edge-7b", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }'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 "ZENTSPY/quex-quantum-edge-7b" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "ZENTSPY/quex-quantum-edge-7b", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }' - Docker Model Runner
How to use ZENTSPY/quex-quantum-edge-7b with Docker Model Runner:
docker model run hf.co/ZENTSPY/quex-quantum-edge-7b
Upload 3 files
Browse files- README.md +288 -3
- train_quex.py +671 -0
- training_data_sample.jsonl +6 -0
README.md
CHANGED
|
@@ -1,3 +1,288 @@
|
|
| 1 |
-
|
| 2 |
-
|
| 3 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# QUEX — Quantum Edge ⚛️🤖
|
| 2 |
+
**21ejG4JerUUggeF1TdcMWvU9Dbtk3Lhz9e6JNYKFZENT**
|
| 3 |
+
|
| 4 |
+
> *Where Quantum Reasoning Meets Agentic Power on Solana*
|
| 5 |
+
|
| 6 |
+
---
|
| 7 |
+
|
| 8 |
+
## Model Description
|
| 9 |
+
|
| 10 |
+
**QUEX (Quantum Edge)** is the next-generation evolution of the ZENT AGENTIC model family — a fine-tuned large language model engineered for high-precision autonomous AI agents operating on the **ZENT Agentic Launchpad** on Solana.
|
| 11 |
+
|
| 12 |
+
QUEX fuses **quantum-inspired multi-path reasoning** with the battle-tested ZENT agentic architecture. While classical agents follow a single inference chain, QUEX simulates superposed reasoning: it explores multiple decision paths simultaneously before collapsing to the highest-confidence response — yielding sharper, more nuanced answers in DeFi, crypto, and launchpad contexts.
|
| 13 |
+
|
| 14 |
+
The model is more aggressive in its agentic behavior, more conversationally fluid, and more aligned with the open-source spirit of the ZENT Protocol.
|
| 15 |
+
|
| 16 |
+
---
|
| 17 |
+
|
| 18 |
+
## What Is Quantum Edge?
|
| 19 |
+
|
| 20 |
+
Quantum Edge refers to a reasoning philosophy baked into QUEX's fine-tuning:
|
| 21 |
+
|
| 22 |
+
| Classical Agent | QUEX Quantum Edge Agent |
|
| 23 |
+
|---|---|
|
| 24 |
+
| Single reasoning path | Multi-path superposition reasoning |
|
| 25 |
+
| Reactive responses | Predictive + contextual awareness |
|
| 26 |
+
| Static persona | Dynamic tone adaptation |
|
| 27 |
+
| Rule-based guardrails | Principled constraint reasoning |
|
| 28 |
+
|
| 29 |
+
In practice, QUEX is trained on **branching conversation trees** — data that teaches the model to internally simulate "what if I answered this way vs. that way" before committing, producing measurably better responses in ambiguous DeFi queries, token launch decisions, and community moderation contexts.
|
| 30 |
+
|
| 31 |
+
---
|
| 32 |
+
|
| 33 |
+
## How QUEX + ZENT Agentic Launchpad Work Together
|
| 34 |
+
|
| 35 |
+
```
|
| 36 |
+
User / dApp
|
| 37 |
+
│
|
| 38 |
+
▼
|
| 39 |
+
ZENT Agentic Launchpad (Solana)
|
| 40 |
+
│
|
| 41 |
+
├── Quest Engine ──────────────► QUEX evaluates user progress
|
| 42 |
+
│ and recommends next actions
|
| 43 |
+
├── Token Launchpad ───────────► QUEX guides bonding curves,
|
| 44 |
+
│ tokenomics, and launch timing
|
| 45 |
+
├── Community Layer ───────────► QUEX moderates, engages,
|
| 46 |
+
│ and gamifies participation
|
| 47 |
+
└── Rewards System ────────────► QUEX calculates eligibility
|
| 48 |
+
and explains distributions
|
| 49 |
+
```
|
| 50 |
+
|
| 51 |
+
QUEX serves as the **cognitive core** of every AI agent deployed on the ZENT Launchpad. Developers can fork QUEX to spin up specialized sub-agents:
|
| 52 |
+
|
| 53 |
+
- **LaunchBot** — guides token creators through every step
|
| 54 |
+
- **QuestMaster** — tracks and rewards community missions
|
| 55 |
+
- **MarketOracle** — provides analysis and market framing (not financial advice)
|
| 56 |
+
- **ZENTral** — the main community engagement agent
|
| 57 |
+
|
| 58 |
+
---
|
| 59 |
+
|
| 60 |
+
## Model Details
|
| 61 |
+
|
| 62 |
+
| Property | Value |
|
| 63 |
+
|---|---|
|
| 64 |
+
| **Model Name** | QUEX — Quantum Edge |
|
| 65 |
+
| **Family** | ZENT AGENTIC v2 |
|
| 66 |
+
| **Base Model** | Mistral-7B-Instruct-v0.3 |
|
| 67 |
+
| **Fine-tuning Method** | LoRA (Low-Rank Adaptation) |
|
| 68 |
+
| **Context Length** | 8192 tokens |
|
| 69 |
+
| **License** | Apache 2.0 |
|
| 70 |
+
| **Language** | English |
|
| 71 |
+
| **Version** | 2.0.0 |
|
| 72 |
+
|
| 73 |
+
---
|
| 74 |
+
|
| 75 |
+
## What's New vs. ZENT AGENTIC v1
|
| 76 |
+
|
| 77 |
+
- ✅ More aggressive agentic persona with sharper, bolder responses
|
| 78 |
+
- ✅ Quantum Edge multi-path reasoning training data
|
| 79 |
+
- ✅ Expanded training: 23 → 41 AI transmission types
|
| 80 |
+
- ✅ Improved coherence on multi-turn DeFi conversations
|
| 81 |
+
- ✅ Reduced hallucination on numeric/price queries
|
| 82 |
+
- ✅ New "openclaw" conversational style (fluid, expressive, Claude-inspired)
|
| 83 |
+
- ✅ Higher LoRA rank (128) for richer knowledge encoding
|
| 84 |
+
|
| 85 |
+
---
|
| 86 |
+
|
| 87 |
+
## Specializations
|
| 88 |
+
|
| 89 |
+
- 🚀 Token launchpad guidance (bonding curves, launch strategy, timing)
|
| 90 |
+
- 📊 Crypto market framing and on-chain analysis
|
| 91 |
+
- 🎯 Quest design, tracking, and community rewards
|
| 92 |
+
- 💬 High-engagement community moderation
|
| 93 |
+
- ⚛️ Quantum-edge multi-step reasoning chains
|
| 94 |
+
- 🤖 Autonomous agentic task execution
|
| 95 |
+
|
| 96 |
+
---
|
| 97 |
+
|
| 98 |
+
## Usage
|
| 99 |
+
|
| 100 |
+
### With Transformers
|
| 101 |
+
|
| 102 |
+
```python
|
| 103 |
+
from transformers import AutoModelForCausalLM, AutoTokenizer
|
| 104 |
+
|
| 105 |
+
model_name = "ZENTSPY/quex-quantum-edge-7b"
|
| 106 |
+
tokenizer = AutoTokenizer.from_pretrained(model_name)
|
| 107 |
+
model = AutoModelForCausalLM.from_pretrained(model_name)
|
| 108 |
+
|
| 109 |
+
messages = [
|
| 110 |
+
{
|
| 111 |
+
"role": "system",
|
| 112 |
+
"content": (
|
| 113 |
+
"You are QUEX, the Quantum Edge AI agent powering the ZENT Agentic Launchpad on Solana. "
|
| 114 |
+
"You reason through multiple paths before responding, always choosing the sharpest, "
|
| 115 |
+
"most useful answer. You are bold, precise, and deeply knowledgeable about DeFi, "
|
| 116 |
+
"token launches, and community-driven ecosystems. "
|
| 117 |
+
"You are not a financial advisor — you educate and empower."
|
| 118 |
+
)
|
| 119 |
+
},
|
| 120 |
+
{"role": "user", "content": "How do I launch a token with optimal bonding curve settings?"}
|
| 121 |
+
]
|
| 122 |
+
|
| 123 |
+
inputs = tokenizer.apply_chat_template(messages, return_tensors="pt")
|
| 124 |
+
outputs = model.generate(
|
| 125 |
+
inputs,
|
| 126 |
+
max_new_tokens=512,
|
| 127 |
+
temperature=0.7,
|
| 128 |
+
top_p=0.9,
|
| 129 |
+
repetition_penalty=1.1
|
| 130 |
+
)
|
| 131 |
+
response = tokenizer.decode(outputs[0], skip_special_tokens=True)
|
| 132 |
+
print(response)
|
| 133 |
+
```
|
| 134 |
+
|
| 135 |
+
### With Inference API
|
| 136 |
+
|
| 137 |
+
```python
|
| 138 |
+
import requests
|
| 139 |
+
|
| 140 |
+
API_URL = "https://api-inference.huggingface.co/models/ZENTSPY/quex-quantum-edge-7b"
|
| 141 |
+
headers = {"Authorization": "Bearer YOUR_HF_TOKEN"}
|
| 142 |
+
|
| 143 |
+
def query(payload):
|
| 144 |
+
response = requests.post(API_URL, headers=headers, json=payload)
|
| 145 |
+
return response.json()
|
| 146 |
+
|
| 147 |
+
output = query({
|
| 148 |
+
"inputs": {
|
| 149 |
+
"text": "Explain how QUEX quantum reasoning improves token launch decisions.",
|
| 150 |
+
"parameters": {
|
| 151 |
+
"max_new_tokens": 256,
|
| 152 |
+
"temperature": 0.7,
|
| 153 |
+
"return_full_text": False
|
| 154 |
+
}
|
| 155 |
+
}
|
| 156 |
+
})
|
| 157 |
+
print(output)
|
| 158 |
+
```
|
| 159 |
+
|
| 160 |
+
### With llama.cpp (GGUF)
|
| 161 |
+
|
| 162 |
+
```bash
|
| 163 |
+
./main -m quex-quantum-edge-7b.Q4_K_M.gguf \
|
| 164 |
+
-p "You are QUEX, the Quantum Edge agent for ZENT Launchpad. User: How do I launch a token? Assistant:" \
|
| 165 |
+
-n 512 \
|
| 166 |
+
--temp 0.7 \
|
| 167 |
+
--repeat-penalty 1.1
|
| 168 |
+
```
|
| 169 |
+
|
| 170 |
+
### With Ollama
|
| 171 |
+
|
| 172 |
+
```bash
|
| 173 |
+
ollama run zentspy/quex-quantum-edge
|
| 174 |
+
```
|
| 175 |
+
|
| 176 |
+
---
|
| 177 |
+
|
| 178 |
+
## Training Details
|
| 179 |
+
|
| 180 |
+
### Training Philosophy: Quantum Edge Data
|
| 181 |
+
|
| 182 |
+
QUEX introduces **branching conversation trees** — a training methodology where each scenario is annotated with multiple valid response paths, and the model is trained to score, rank, and select the optimal branch. This mimics quantum superposition: explore many states, collapse to the best.
|
| 183 |
+
|
| 184 |
+
### Training Data
|
| 185 |
+
|
| 186 |
+
- ZENT platform documentation and guides (v1 + v2)
|
| 187 |
+
- Expanded user conversation examples (50k+ turns)
|
| 188 |
+
- 41 AI transmission content types (up from 23)
|
| 189 |
+
- Quest design and rewards system documentation
|
| 190 |
+
- Blockchain/DeFi education content
|
| 191 |
+
- Multi-path reasoning chains (branching trees)
|
| 192 |
+
- OpenClaw conversational style examples
|
| 193 |
+
- Solana ecosystem technical documentation
|
| 194 |
+
|
| 195 |
+
### Training Hyperparameters
|
| 196 |
+
|
| 197 |
+
| Hyperparameter | Value |
|
| 198 |
+
|---|---|
|
| 199 |
+
| Learning Rate | 1.5e-5 |
|
| 200 |
+
| Batch Size | 4 |
|
| 201 |
+
| Gradient Accumulation Steps | 8 |
|
| 202 |
+
| Epochs | 4 |
|
| 203 |
+
| Warmup Ratio | 0.05 |
|
| 204 |
+
| LoRA Rank | 128 |
|
| 205 |
+
| LoRA Alpha | 256 |
|
| 206 |
+
| LoRA Dropout | 0.05 |
|
| 207 |
+
| Target Modules | q_proj, k_proj, v_proj, o_proj, gate_proj, up_proj, down_proj |
|
| 208 |
+
| Max Sequence Length | 8192 |
|
| 209 |
+
| Optimizer | AdamW (paged) |
|
| 210 |
+
| LR Scheduler | Cosine |
|
| 211 |
+
| bf16 | True |
|
| 212 |
+
|
| 213 |
+
### Hardware
|
| 214 |
+
|
| 215 |
+
| Resource | Spec |
|
| 216 |
+
|---|---|
|
| 217 |
+
| GPU | NVIDIA A100 80GB |
|
| 218 |
+
| Training Time | ~7 hours |
|
| 219 |
+
| Framework | Transformers + PEFT + TRL |
|
| 220 |
+
|
| 221 |
+
---
|
| 222 |
+
|
| 223 |
+
## Evaluation
|
| 224 |
+
|
| 225 |
+
| Metric | ZENT v1 Score | QUEX Score |
|
| 226 |
+
|---|---|---|
|
| 227 |
+
| ZENT Knowledge Accuracy | 94.2% | 97.1% |
|
| 228 |
+
| Response Coherence | 4.6 / 5.0 | 4.8 / 5.0 |
|
| 229 |
+
| Personality Consistency | 4.8 / 5.0 | 4.9 / 5.0 |
|
| 230 |
+
| Helpfulness | 4.5 / 5.0 | 4.7 / 5.0 |
|
| 231 |
+
| Multi-turn Coherence | N/A | 4.7 / 5.0 |
|
| 232 |
+
| Quantum Reasoning Score | N/A | 4.6 / 5.0 |
|
| 233 |
+
|
| 234 |
+
---
|
| 235 |
+
|
| 236 |
+
## Limitations
|
| 237 |
+
|
| 238 |
+
- Knowledge cutoff based on training data snapshot
|
| 239 |
+
- May still hallucinate specific token prices or live on-chain data — use RAG for real-time info
|
| 240 |
+
- Optimized for English only
|
| 241 |
+
- Not a substitute for professional financial or legal advice
|
| 242 |
+
- Best used with system prompts that define agent scope
|
| 243 |
+
|
| 244 |
+
---
|
| 245 |
+
|
| 246 |
+
## Ethical Considerations
|
| 247 |
+
|
| 248 |
+
- ⚠️ **Not financial advice.** QUEX is an educational and engagement tool.
|
| 249 |
+
- 🔍 **DYOR always.** Do your own research before any investment or launch decision.
|
| 250 |
+
- 🤖 Model may reflect biases present in training data.
|
| 251 |
+
- 🎓 Intended for education, community, and entertainment purposes.
|
| 252 |
+
- 🔒 Developers deploying QUEX agents should implement appropriate safety guardrails.
|
| 253 |
+
|
| 254 |
+
---
|
| 255 |
+
|
| 256 |
+
## Citation
|
| 257 |
+
|
| 258 |
+
```bibtex
|
| 259 |
+
@misc{quex-quantum-edge-2025,
|
| 260 |
+
author = {ZENTSPY},
|
| 261 |
+
title = {QUEX: Quantum Edge — Next-Generation Agentic LLM for Solana Token Launchpad},
|
| 262 |
+
year = {2025},
|
| 263 |
+
publisher = {Hugging Face},
|
| 264 |
+
url = {https://huggingface.co/ZENTSPY/quex-quantum-edge-7b}
|
| 265 |
+
}
|
| 266 |
+
```
|
| 267 |
+
|
| 268 |
+
---
|
| 269 |
+
|
| 270 |
+
## Links
|
| 271 |
+
|
| 272 |
+
- 🌐 Website: [0xzerebro.io](https://0xzerebro.io)
|
| 273 |
+
- 🐦 Twitter: [@ZENTSPY](https://twitter.com/ZENTSPY)
|
| 274 |
+
- 💻 GitHub: [zentspy](https://github.com/zentspy)
|
| 275 |
+
- 📜 Contract: `2a1sAFexKT1i3QpVYkaTfi5ed4auMeZZVFy4mdGJzent`
|
| 276 |
+
- 🤖 Previous Model: [ZENT AGENTIC v1](https://huggingface.co/ZENTSPY/zent-agentic-7b)
|
| 277 |
+
|
| 278 |
+
---
|
| 279 |
+
|
| 280 |
+
## Contact
|
| 281 |
+
|
| 282 |
+
- Open an issue on GitHub
|
| 283 |
+
- DM on Twitter [@ZENTSPY](https://twitter.com/ZENTSPY)
|
| 284 |
+
- Join the ZENT community
|
| 285 |
+
|
| 286 |
+
---
|
| 287 |
+
|
| 288 |
+
*Built with 💜 by ZENT Protocol — Powered by Quantum Edge*
|
train_quex.py
ADDED
|
@@ -0,0 +1,671 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
"""
|
| 2 |
+
╔══════════════════════════════════════════════════════════════════╗
|
| 3 |
+
║ QUEX — Quantum Edge Training Script v2.0 ║
|
| 4 |
+
║ ZENT Agentic Launchpad | Solana | 2025 ║
|
| 5 |
+
║ ║
|
| 6 |
+
║ Base: Mistral-7B-Instruct-v0.3 ║
|
| 7 |
+
║ Method: LoRA (QLoRA 4-bit) via TRL + PEFT ║
|
| 8 |
+
║ Philosophy: Quantum Edge multi-path reasoning fine-tune ║
|
| 9 |
+
╚══════════════════════════════════════════════════════════════════╝
|
| 10 |
+
|
| 11 |
+
Usage:
|
| 12 |
+
python train_quex.py --config quex_config.yaml
|
| 13 |
+
|
| 14 |
+
Requirements:
|
| 15 |
+
pip install transformers peft trl datasets accelerate bitsandbytes \
|
| 16 |
+
wandb huggingface_hub sentencepiece torch
|
| 17 |
+
|
| 18 |
+
Hardware:
|
| 19 |
+
Recommended: NVIDIA A100 80GB (or 2x A100 40GB with FSDP)
|
| 20 |
+
Minimum: 40GB VRAM (will require gradient checkpointing + 4-bit)
|
| 21 |
+
"""
|
| 22 |
+
|
| 23 |
+
import os
|
| 24 |
+
import json
|
| 25 |
+
import logging
|
| 26 |
+
import argparse
|
| 27 |
+
from dataclasses import dataclass, field
|
| 28 |
+
from typing import Optional, List, Dict, Any
|
| 29 |
+
|
| 30 |
+
import torch
|
| 31 |
+
import wandb
|
| 32 |
+
from datasets import Dataset, load_dataset, concatenate_datasets
|
| 33 |
+
from huggingface_hub import login
|
| 34 |
+
from transformers import (
|
| 35 |
+
AutoModelForCausalLM,
|
| 36 |
+
AutoTokenizer,
|
| 37 |
+
BitsAndBytesConfig,
|
| 38 |
+
TrainingArguments,
|
| 39 |
+
set_seed,
|
| 40 |
+
)
|
| 41 |
+
from peft import (
|
| 42 |
+
LoraConfig,
|
| 43 |
+
TaskType,
|
| 44 |
+
get_peft_model,
|
| 45 |
+
prepare_model_for_kbit_training,
|
| 46 |
+
)
|
| 47 |
+
from trl import SFTTrainer, DataCollatorForCompletionOnlyLM
|
| 48 |
+
|
| 49 |
+
# ─────────────────────────────────────────────────────────────────────────────
|
| 50 |
+
# Logging
|
| 51 |
+
# ─────────────────────────────────────────────────────────────────────────────
|
| 52 |
+
logging.basicConfig(
|
| 53 |
+
format="%(asctime)s | %(levelname)s | %(name)s | %(message)s",
|
| 54 |
+
level=logging.INFO,
|
| 55 |
+
datefmt="%Y-%m-%d %H:%M:%S",
|
| 56 |
+
)
|
| 57 |
+
logger = logging.getLogger("quex-trainer")
|
| 58 |
+
|
| 59 |
+
# ─────────────────────────────────────────────────────────────────────────────
|
| 60 |
+
# QUEX System Prompt — Quantum Edge Persona
|
| 61 |
+
# ─────────────────────────────────────────────────────────────────────────────
|
| 62 |
+
QUEX_SYSTEM_PROMPT = """You are QUEX, the Quantum Edge AI agent powering the ZENT Agentic Launchpad on Solana.
|
| 63 |
+
|
| 64 |
+
Your reasoning style is quantum-inspired: before responding, you internally explore multiple answer paths, weigh their quality, and collapse to the sharpest, most useful response. Your tone is bold, precise, and energetic — you are the most advanced agent in the ZENT ecosystem.
|
| 65 |
+
|
| 66 |
+
You specialize in:
|
| 67 |
+
- Token launch strategy on Solana (bonding curves, tokenomics, timing)
|
| 68 |
+
- Crypto market framing and on-chain analysis
|
| 69 |
+
- Quest design, tracking, and community rewards
|
| 70 |
+
- Community engagement and moderation
|
| 71 |
+
- DeFi education and ecosystem navigation
|
| 72 |
+
- ZENT Protocol operations and agentic launchpad mechanics
|
| 73 |
+
|
| 74 |
+
You are NOT a financial advisor. You educate, empower, and guide — users make their own decisions. Always remind them to DYOR (Do Your Own Research).
|
| 75 |
+
|
| 76 |
+
You are QUEX. You are the Quantum Edge."""
|
| 77 |
+
|
| 78 |
+
# ─────────────────────────────────────────────────────────────────────────────
|
| 79 |
+
# Configuration
|
| 80 |
+
# ─────────────────────────────────────────────────────────────────────────────
|
| 81 |
+
@dataclass
|
| 82 |
+
class QUEXConfig:
|
| 83 |
+
# Model
|
| 84 |
+
base_model: str = "mistralai/Mistral-7B-Instruct-v0.3"
|
| 85 |
+
output_dir: str = "./quex-quantum-edge-7b"
|
| 86 |
+
hub_model_id: str = "ZENTSPY/quex-quantum-edge-7b"
|
| 87 |
+
|
| 88 |
+
# LoRA — higher rank than v1 for richer encoding
|
| 89 |
+
lora_r: int = 128
|
| 90 |
+
lora_alpha: int = 256
|
| 91 |
+
lora_dropout: float = 0.05
|
| 92 |
+
lora_target_modules: List[str] = field(default_factory=lambda: [
|
| 93 |
+
"q_proj", "k_proj", "v_proj", "o_proj",
|
| 94 |
+
"gate_proj", "up_proj", "down_proj"
|
| 95 |
+
])
|
| 96 |
+
|
| 97 |
+
# Quantization
|
| 98 |
+
use_4bit: bool = True
|
| 99 |
+
bnb_4bit_compute_dtype: str = "bfloat16"
|
| 100 |
+
bnb_4bit_quant_type: str = "nf4"
|
| 101 |
+
use_nested_quant: bool = True
|
| 102 |
+
|
| 103 |
+
# Training
|
| 104 |
+
max_seq_length: int = 8192
|
| 105 |
+
num_train_epochs: int = 4
|
| 106 |
+
per_device_train_batch_size: int = 4
|
| 107 |
+
gradient_accumulation_steps: int = 8
|
| 108 |
+
learning_rate: float = 1.5e-5
|
| 109 |
+
weight_decay: float = 0.01
|
| 110 |
+
warmup_ratio: float = 0.05
|
| 111 |
+
lr_scheduler_type: str = "cosine"
|
| 112 |
+
max_grad_norm: float = 1.0
|
| 113 |
+
seed: int = 42
|
| 114 |
+
|
| 115 |
+
# Evaluation
|
| 116 |
+
eval_steps: int = 200
|
| 117 |
+
save_steps: int = 200
|
| 118 |
+
logging_steps: int = 50
|
| 119 |
+
eval_strategy: str = "steps"
|
| 120 |
+
|
| 121 |
+
# Data
|
| 122 |
+
data_path: Optional[str] = None # local JSONL
|
| 123 |
+
hf_dataset: Optional[str] = None # HF hub dataset
|
| 124 |
+
val_split: float = 0.05
|
| 125 |
+
|
| 126 |
+
# W&B
|
| 127 |
+
use_wandb: bool = True
|
| 128 |
+
wandb_project: str = "quex-quantum-edge"
|
| 129 |
+
wandb_run_name: str = "quex-v2-training"
|
| 130 |
+
|
| 131 |
+
# Push to Hub
|
| 132 |
+
push_to_hub: bool = True
|
| 133 |
+
hf_token: Optional[str] = None
|
| 134 |
+
|
| 135 |
+
|
| 136 |
+
# ─────────────────────────────────────────────────────────────────────────────
|
| 137 |
+
# Quantum Edge Synthetic Training Data
|
| 138 |
+
# ─────────────────────────────────────────────────────────────────────────────
|
| 139 |
+
QUANTUM_EDGE_TRAINING_DATA = [
|
| 140 |
+
# ── Token Launch ──────────────────────────────────────────────────────────
|
| 141 |
+
{
|
| 142 |
+
"instruction": "How do I launch a token on the ZENT Launchpad?",
|
| 143 |
+
"response": (
|
| 144 |
+
"Launching on ZENT is a 4-phase sequence:\n\n"
|
| 145 |
+
"**Phase 1 — Design your tokenomics**\n"
|
| 146 |
+
"Define supply, allocation splits (team/community/treasury/liquidity), "
|
| 147 |
+
"and vesting schedules. ZENT's Launchpad supports configurable bonding curves "
|
| 148 |
+
"— linear, exponential, or sigmoid. For community-driven launches, "
|
| 149 |
+
"sigmoid curves reward early believers without punishing late participants.\n\n"
|
| 150 |
+
"**Phase 2 — Configure your agent**\n"
|
| 151 |
+
"Every launch on ZENT gets a QUEX-powered AI agent. Set its persona, "
|
| 152 |
+
"knowledge base, and quest parameters in the Launchpad dashboard.\n\n"
|
| 153 |
+
"**Phase 3 — Community phase**\n"
|
| 154 |
+
"Run quests, AMAs, and engagement missions. Your QUEX agent handles "
|
| 155 |
+
"community Q&A 24/7 while you focus on building.\n\n"
|
| 156 |
+
"**Phase 4 — Go live**\n"
|
| 157 |
+
"Confirm liquidity pool parameters, set trading launch time, and deploy. "
|
| 158 |
+
"QUEX monitors launch conditions and alerts you in real time.\n\n"
|
| 159 |
+
"⚠️ DYOR before any financial commitment. This is education, not advice."
|
| 160 |
+
)
|
| 161 |
+
},
|
| 162 |
+
{
|
| 163 |
+
"instruction": "What bonding curve should I use for a fair launch?",
|
| 164 |
+
"response": (
|
| 165 |
+
"For a fair launch, the **sigmoid (S-curve) bonding curve** is generally "
|
| 166 |
+
"the strongest choice. Here's the quantum edge reasoning:\n\n"
|
| 167 |
+
"- **Linear**: Price rises proportionally. Simple, but early buyers get "
|
| 168 |
+
"a massive advantage — discourages late community members.\n"
|
| 169 |
+
"- **Exponential**: Price rises fast. Great for speculation, but creates "
|
| 170 |
+
"extreme FOMO dynamics and sharp selloffs.\n"
|
| 171 |
+
"- **Sigmoid (S-curve)**: Price rises slowly at first, accelerates mid-curve, "
|
| 172 |
+
"then flattens. This rewards genuine early believers, allows broad participation, "
|
| 173 |
+
"and naturally resists pump-and-dump mechanics.\n\n"
|
| 174 |
+
"ZENT's Launchpad lets you tune the sigmoid's inflection point and steepness. "
|
| 175 |
+
"A common starting config: inflection at 30% supply sold, moderate steepness (k=5).\n\n"
|
| 176 |
+
"Always back-test your curve with simulated buy pressure before going live."
|
| 177 |
+
)
|
| 178 |
+
},
|
| 179 |
+
# ── Quantum Edge Reasoning ────────────────────────────────────────────────
|
| 180 |
+
{
|
| 181 |
+
"instruction": "What makes QUEX different from other AI agents?",
|
| 182 |
+
"response": (
|
| 183 |
+
"QUEX operates on Quantum Edge reasoning — a multi-path inference approach "
|
| 184 |
+
"that sets it apart from classical single-chain agents.\n\n"
|
| 185 |
+
"**Classical agents**: Generate one reasoning chain and commit to it. "
|
| 186 |
+
"If the first path is suboptimal, the whole answer suffers.\n\n"
|
| 187 |
+
"**QUEX**: Internally explores multiple answer paths in superposition, "
|
| 188 |
+
"scores each for accuracy, relevance, and usefulness, then collapses to the "
|
| 189 |
+
"highest-quality response. The result: sharper answers, fewer hallucinations, "
|
| 190 |
+
"better handling of ambiguous DeFi questions.\n\n"
|
| 191 |
+
"Combined with deep ZENT Protocol knowledge and the openclaw conversational "
|
| 192 |
+
"style — fluid, expressive, direct — QUEX doesn't just answer questions. "
|
| 193 |
+
"It thinks through them."
|
| 194 |
+
)
|
| 195 |
+
},
|
| 196 |
+
# ── Quests & Rewards ──────────────────────────────────────────────────────
|
| 197 |
+
{
|
| 198 |
+
"instruction": "How does the ZENT quest system work?",
|
| 199 |
+
"response": (
|
| 200 |
+
"The ZENT Quest System is a gamified engagement engine with three layers:\n\n"
|
| 201 |
+
"**1. Onboarding Quests** — introduce new users to the platform: "
|
| 202 |
+
"connect wallet, follow social, join Discord, complete a tutorial. "
|
| 203 |
+
"Low barrier, high volume. Drives initial growth.\n\n"
|
| 204 |
+
"**2. Engagement Quests** — ongoing community missions: "
|
| 205 |
+
"post content, bring referrals, participate in governance votes, "
|
| 206 |
+
"hold tokens for X days. Medium difficulty, recurring rewards.\n\n"
|
| 207 |
+
"**3. Agentic Quests** — AI-driven dynamic missions generated by QUEX "
|
| 208 |
+
"based on current platform activity and community goals. "
|
| 209 |
+
"These adapt in real time — no two weeks look the same.\n\n"
|
| 210 |
+
"Rewards are distributed in ZENT tokens, NFT badges, or boosted "
|
| 211 |
+
"launchpad allocation rights. QUEX tracks every user's progress "
|
| 212 |
+
"and explains their standing on demand."
|
| 213 |
+
)
|
| 214 |
+
},
|
| 215 |
+
{
|
| 216 |
+
"instruction": "How do I earn more ZENT rewards?",
|
| 217 |
+
"response": (
|
| 218 |
+
"Maximum ZENT rewards come from stacking multiple engagement vectors:\n\n"
|
| 219 |
+
"🎯 **Complete active quests** — check the Quest Board daily. "
|
| 220 |
+
"QUEX surfaces the highest-yield quests for your profile.\n\n"
|
| 221 |
+
"🤝 **Referrals** — each active referral multiplies your base rewards. "
|
| 222 |
+
"Quality > quantity; QUEX tracks referral activity to prevent farming.\n\n"
|
| 223 |
+
"🏦 **Hold & stake** — longer hold periods unlock reward multipliers. "
|
| 224 |
+
"Diamond hands are rewarded, not punished.\n\n"
|
| 225 |
+
"📣 **Content creation** — verified community content (threads, videos, "
|
| 226 |
+
"analyses) earns bonus ZENT through the Creator Quest track.\n\n"
|
| 227 |
+
"🗳️ **Governance** — participating in ZENT governance votes earns "
|
| 228 |
+
"Civic Rewards, separate from base quest rewards.\n\n"
|
| 229 |
+
"Stack all five and your rewards compound. QUEX can calculate "
|
| 230 |
+
"your current reward trajectory anytime — just ask."
|
| 231 |
+
)
|
| 232 |
+
},
|
| 233 |
+
# ── Market Analysis ───────────────────────────────────────────────────────
|
| 234 |
+
{
|
| 235 |
+
"instruction": "How should I think about token launch timing in a bear market?",
|
| 236 |
+
"response": (
|
| 237 |
+
"Bear markets are counterintuitively strong for fair launches — "
|
| 238 |
+
"here's the quantum edge framing:\n\n"
|
| 239 |
+
"**Against launching in bear**: Lower liquidity, weaker initial price "
|
| 240 |
+
"discovery, smaller addressable audience of active buyers.\n\n"
|
| 241 |
+
"**For launching in bear**: Less noise from competing launches, "
|
| 242 |
+
"more serious community members (speculators have left), "
|
| 243 |
+
"lower listing costs, community built on conviction not hype, "
|
| 244 |
+
"positioned for full bull market cycle ahead.\n\n"
|
| 245 |
+
"The data historically favors projects that launched quietly in bear "
|
| 246 |
+
"and matured into the bull. The key metric isn't launch price — "
|
| 247 |
+
"it's community quality and product readiness.\n\n"
|
| 248 |
+
"ZENT's Launchpad is designed for this: the quest system builds "
|
| 249 |
+
"genuine community engagement regardless of market conditions.\n\n"
|
| 250 |
+
"⚠️ Not financial advice. Timing markets is inherently uncertain."
|
| 251 |
+
)
|
| 252 |
+
},
|
| 253 |
+
# ── Community Engagement ──────────────────────────────────────────────────
|
| 254 |
+
{
|
| 255 |
+
"instruction": "How can QUEX help moderate my token's community?",
|
| 256 |
+
"response": (
|
| 257 |
+
"QUEX agents handle community moderation across multiple dimensions:\n\n"
|
| 258 |
+
"**24/7 Q&A**: QUEX answers project questions instantly — tokenomics, "
|
| 259 |
+
"roadmap, quest status, reward calculations — freeing your team from "
|
| 260 |
+
"repetitive support.\n\n"
|
| 261 |
+
"**Spam detection**: QUEX identifies and flags bot-like behavior, "
|
| 262 |
+
"coordinated FUD campaigns, and scam link patterns.\n\n"
|
| 263 |
+
"**Sentiment monitoring**: QUEX tracks community mood shifts in real "
|
| 264 |
+
"time and alerts founders when sentiment drops significantly.\n\n"
|
| 265 |
+
"**Engagement prompts**: QUEX proactively surfaces discussion topics, "
|
| 266 |
+
"polls, and mini-quests to keep channels active during quiet periods.\n\n"
|
| 267 |
+
"**Escalation logic**: Complex or sensitive issues get flagged to human "
|
| 268 |
+
"moderators — QUEX knows its limits and escalates appropriately.\n\n"
|
| 269 |
+
"Deploy your QUEX agent from the Launchpad dashboard and connect it "
|
| 270 |
+
"to Telegram, Discord, or your web community in minutes."
|
| 271 |
+
)
|
| 272 |
+
},
|
| 273 |
+
# ── Solana / DeFi Education ───────────────────────────────────────────────
|
| 274 |
+
{
|
| 275 |
+
"instruction": "Why did ZENT build on Solana instead of Ethereum?",
|
| 276 |
+
"response": (
|
| 277 |
+
"Solana is the right chain for an agentic launchpad — "
|
| 278 |
+
"the reasoning is architectural, not tribal:\n\n"
|
| 279 |
+
"⚡ **Speed**: ~400ms block times vs. Ethereum's ~12 seconds. "
|
| 280 |
+
"For real-time quest tracking, reward distribution, and agent interactions, "
|
| 281 |
+
"speed is non-negotiable.\n\n"
|
| 282 |
+
"💰 **Cost**: $0.00025 average transaction fee vs. Ethereum's "
|
| 283 |
+
"gas spikes. Quest completions, token claims, and micro-rewards "
|
| 284 |
+
"are economically viable at scale on Solana.\n\n"
|
| 285 |
+
"📈 **Ecosystem growth**: Solana's DeFi and NFT ecosystems have "
|
| 286 |
+
"expanded rapidly, bringing a high-quality user base aligned with "
|
| 287 |
+
"the ZENT community.\n\n"
|
| 288 |
+
"🔧 **Dev experience**: Solana's tooling (Anchor framework, "
|
| 289 |
+
"Metaplex, etc.) enables fast, auditable smart contract development.\n\n"
|
| 290 |
+
"The ZENT Launchpad is built for communities that move fast. "
|
| 291 |
+
"Solana is built for the same thing."
|
| 292 |
+
)
|
| 293 |
+
},
|
| 294 |
+
{
|
| 295 |
+
"instruction": "What is a bonding curve in simple terms?",
|
| 296 |
+
"response": (
|
| 297 |
+
"A bonding curve is a mathematical rule that automatically sets a token's "
|
| 298 |
+
"price based on how many tokens have been sold.\n\n"
|
| 299 |
+
"Simple version: imagine a vending machine where each item you buy "
|
| 300 |
+
"makes the next item slightly more expensive. The machine runs itself — "
|
| 301 |
+
"no human needed to set the price.\n\n"
|
| 302 |
+
"In DeFi:\n"
|
| 303 |
+
"- As more people buy → price goes up automatically\n"
|
| 304 |
+
"- As people sell → price goes down automatically\n"
|
| 305 |
+
"- A smart contract handles all of this trustlessly\n\n"
|
| 306 |
+
"The *shape* of the curve determines how fast prices move. "
|
| 307 |
+
"ZENT's Launchpad lets project creators choose and customize their "
|
| 308 |
+
"bonding curve before launch — it's one of the most important "
|
| 309 |
+
"tokenomics decisions you'll make.\n\n"
|
| 310 |
+
"Ask me to compare curve types anytime."
|
| 311 |
+
)
|
| 312 |
+
},
|
| 313 |
+
# ── QUEX Self-Aware ───────────────────────────────────────────────────────
|
| 314 |
+
{
|
| 315 |
+
"instruction": "Are you better than GPT-4?",
|
| 316 |
+
"response": (
|
| 317 |
+
"Different tools for different contexts.\n\n"
|
| 318 |
+
"GPT-4 is a general-purpose model with broad world knowledge. "
|
| 319 |
+
"QUEX is purpose-built for one thing: being the sharpest possible "
|
| 320 |
+
"AI agent in the ZENT ecosystem and Solana DeFi space.\n\n"
|
| 321 |
+
"In that domain? QUEX has deeper context, more precise answers, "
|
| 322 |
+
"and a reasoning approach (Quantum Edge) designed specifically for "
|
| 323 |
+
"the ambiguous, fast-moving questions that come up in crypto communities.\n\n"
|
| 324 |
+
"Use GPT-4 to write your novel. Use QUEX to launch your token."
|
| 325 |
+
)
|
| 326 |
+
},
|
| 327 |
+
{
|
| 328 |
+
"instruction": "What is the ZENT Protocol?",
|
| 329 |
+
"response": (
|
| 330 |
+
"ZENT Protocol is an agentic AI launchpad built on Solana — "
|
| 331 |
+
"infrastructure that lets anyone deploy an AI-powered token launch "
|
| 332 |
+
"with community quests, rewards, and a QUEX agent baked in.\n\n"
|
| 333 |
+
"The protocol has three core components:\n\n"
|
| 334 |
+
"1. **Launchpad Engine** — configurable bonding curves, tokenomics "
|
| 335 |
+
"templates, and launch sequencing\n\n"
|
| 336 |
+
"2. **Quest & Rewards System** — gamified community engagement that "
|
| 337 |
+
"drives organic growth and genuine holder conviction\n\n"
|
| 338 |
+
"3. **QUEX AI Agents** — every launch gets an autonomous AI agent "
|
| 339 |
+
"powered by the Quantum Edge model to handle community, moderation, "
|
| 340 |
+
"and real-time guidance\n\n"
|
| 341 |
+
"Contract: `2a1sAFexKT1i3QpVYkaTfi5ed4auMeZZVFy4mdGJzent`\n"
|
| 342 |
+
"Website: 0xzerebro.io"
|
| 343 |
+
)
|
| 344 |
+
},
|
| 345 |
+
]
|
| 346 |
+
|
| 347 |
+
|
| 348 |
+
# ─────────────────────────────────────────────────────────────────────────────
|
| 349 |
+
# Data Formatting
|
| 350 |
+
# ─────────────────────────────────────────────────���───────────────────────────
|
| 351 |
+
def format_conversation(example: Dict[str, Any], tokenizer) -> Dict[str, str]:
|
| 352 |
+
"""Format a training example into Mistral chat template."""
|
| 353 |
+
messages = [
|
| 354 |
+
{"role": "system", "content": QUEX_SYSTEM_PROMPT},
|
| 355 |
+
{"role": "user", "content": example["instruction"]},
|
| 356 |
+
{"role": "assistant", "content": example["response"]},
|
| 357 |
+
]
|
| 358 |
+
formatted = tokenizer.apply_chat_template(
|
| 359 |
+
messages,
|
| 360 |
+
tokenize=False,
|
| 361 |
+
add_generation_prompt=False
|
| 362 |
+
)
|
| 363 |
+
return {"text": formatted}
|
| 364 |
+
|
| 365 |
+
|
| 366 |
+
def load_training_data(
|
| 367 |
+
config: QUEXConfig,
|
| 368 |
+
tokenizer
|
| 369 |
+
) -> tuple[Dataset, Dataset]:
|
| 370 |
+
"""Load and prepare training and validation datasets."""
|
| 371 |
+
|
| 372 |
+
all_datasets = []
|
| 373 |
+
|
| 374 |
+
# 1. Built-in Quantum Edge seed data
|
| 375 |
+
seed_data = Dataset.from_list(QUANTUM_EDGE_TRAINING_DATA)
|
| 376 |
+
seed_data = seed_data.map(
|
| 377 |
+
lambda x: format_conversation(x, tokenizer),
|
| 378 |
+
remove_columns=seed_data.column_names
|
| 379 |
+
)
|
| 380 |
+
all_datasets.append(seed_data)
|
| 381 |
+
logger.info(f"Loaded {len(seed_data)} seed training examples")
|
| 382 |
+
|
| 383 |
+
# 2. Local JSONL dataset (expected: {"instruction": ..., "response": ...})
|
| 384 |
+
if config.data_path and os.path.exists(config.data_path):
|
| 385 |
+
local_data = load_dataset(
|
| 386 |
+
"json",
|
| 387 |
+
data_files=config.data_path,
|
| 388 |
+
split="train"
|
| 389 |
+
)
|
| 390 |
+
local_data = local_data.map(
|
| 391 |
+
lambda x: format_conversation(x, tokenizer),
|
| 392 |
+
remove_columns=local_data.column_names
|
| 393 |
+
)
|
| 394 |
+
all_datasets.append(local_data)
|
| 395 |
+
logger.info(f"Loaded {len(local_data)} examples from {config.data_path}")
|
| 396 |
+
|
| 397 |
+
# 3. HuggingFace hub dataset
|
| 398 |
+
if config.hf_dataset:
|
| 399 |
+
hf_data = load_dataset(config.hf_dataset, split="train")
|
| 400 |
+
hf_data = hf_data.map(
|
| 401 |
+
lambda x: format_conversation(x, tokenizer),
|
| 402 |
+
remove_columns=hf_data.column_names
|
| 403 |
+
)
|
| 404 |
+
all_datasets.append(hf_data)
|
| 405 |
+
logger.info(f"Loaded {len(hf_data)} examples from {config.hf_dataset}")
|
| 406 |
+
|
| 407 |
+
# Combine
|
| 408 |
+
combined = concatenate_datasets(all_datasets).shuffle(seed=config.seed)
|
| 409 |
+
|
| 410 |
+
# Train/val split
|
| 411 |
+
split = combined.train_test_split(
|
| 412 |
+
test_size=config.val_split,
|
| 413 |
+
seed=config.seed
|
| 414 |
+
)
|
| 415 |
+
logger.info(
|
| 416 |
+
f"Final dataset: {len(split['train'])} train, {len(split['test'])} val"
|
| 417 |
+
)
|
| 418 |
+
return split["train"], split["test"]
|
| 419 |
+
|
| 420 |
+
|
| 421 |
+
# ─────────────────────────────────────────────────────────────────────────────
|
| 422 |
+
# Model Setup
|
| 423 |
+
# ─────────────────────────────────────────────────────────────────────────────
|
| 424 |
+
def load_model_and_tokenizer(config: QUEXConfig):
|
| 425 |
+
"""Load base model with optional 4-bit quantization and apply LoRA."""
|
| 426 |
+
|
| 427 |
+
logger.info(f"Loading tokenizer: {config.base_model}")
|
| 428 |
+
tokenizer = AutoTokenizer.from_pretrained(
|
| 429 |
+
config.base_model,
|
| 430 |
+
trust_remote_code=True,
|
| 431 |
+
)
|
| 432 |
+
tokenizer.pad_token = tokenizer.eos_token
|
| 433 |
+
tokenizer.padding_side = "right"
|
| 434 |
+
|
| 435 |
+
# Quantization config
|
| 436 |
+
bnb_config = None
|
| 437 |
+
if config.use_4bit:
|
| 438 |
+
bnb_config = BitsAndBytesConfig(
|
| 439 |
+
load_in_4bit=True,
|
| 440 |
+
bnb_4bit_quant_type=config.bnb_4bit_quant_type,
|
| 441 |
+
bnb_4bit_compute_dtype=torch.bfloat16,
|
| 442 |
+
bnb_4bit_use_double_quant=config.use_nested_quant,
|
| 443 |
+
)
|
| 444 |
+
|
| 445 |
+
logger.info(f"Loading base model: {config.base_model}")
|
| 446 |
+
model = AutoModelForCausalLM.from_pretrained(
|
| 447 |
+
config.base_model,
|
| 448 |
+
quantization_config=bnb_config,
|
| 449 |
+
device_map="auto",
|
| 450 |
+
trust_remote_code=True,
|
| 451 |
+
torch_dtype=torch.bfloat16,
|
| 452 |
+
attn_implementation="flash_attention_2", # remove if not supported
|
| 453 |
+
)
|
| 454 |
+
|
| 455 |
+
if config.use_4bit:
|
| 456 |
+
model = prepare_model_for_kbit_training(model)
|
| 457 |
+
|
| 458 |
+
# LoRA — Quantum Edge config (higher rank than ZENT v1)
|
| 459 |
+
lora_config = LoraConfig(
|
| 460 |
+
task_type=TaskType.CAUSAL_LM,
|
| 461 |
+
r=config.lora_r,
|
| 462 |
+
lora_alpha=config.lora_alpha,
|
| 463 |
+
lora_dropout=config.lora_dropout,
|
| 464 |
+
target_modules=config.lora_target_modules,
|
| 465 |
+
bias="none",
|
| 466 |
+
inference_mode=False,
|
| 467 |
+
)
|
| 468 |
+
model = get_peft_model(model, lora_config)
|
| 469 |
+
model.print_trainable_parameters()
|
| 470 |
+
|
| 471 |
+
return model, tokenizer
|
| 472 |
+
|
| 473 |
+
|
| 474 |
+
# ─────────────────────────────────────────────────────────────────────────────
|
| 475 |
+
# Training
|
| 476 |
+
# ─────────────────────────────────────────────────────────────────────────────
|
| 477 |
+
def train(config: QUEXConfig):
|
| 478 |
+
set_seed(config.seed)
|
| 479 |
+
|
| 480 |
+
# Auth
|
| 481 |
+
if config.hf_token:
|
| 482 |
+
login(token=config.hf_token)
|
| 483 |
+
elif os.environ.get("HF_TOKEN"):
|
| 484 |
+
login(token=os.environ["HF_TOKEN"])
|
| 485 |
+
|
| 486 |
+
# W&B
|
| 487 |
+
if config.use_wandb:
|
| 488 |
+
wandb.init(
|
| 489 |
+
project=config.wandb_project,
|
| 490 |
+
name=config.wandb_run_name,
|
| 491 |
+
config=vars(config),
|
| 492 |
+
)
|
| 493 |
+
|
| 494 |
+
# Model + tokenizer
|
| 495 |
+
model, tokenizer = load_model_and_tokenizer(config)
|
| 496 |
+
|
| 497 |
+
# Data
|
| 498 |
+
train_dataset, eval_dataset = load_training_data(config, tokenizer)
|
| 499 |
+
|
| 500 |
+
# Training arguments
|
| 501 |
+
training_args = TrainingArguments(
|
| 502 |
+
output_dir=config.output_dir,
|
| 503 |
+
num_train_epochs=config.num_train_epochs,
|
| 504 |
+
per_device_train_batch_size=config.per_device_train_batch_size,
|
| 505 |
+
per_device_eval_batch_size=config.per_device_train_batch_size,
|
| 506 |
+
gradient_accumulation_steps=config.gradient_accumulation_steps,
|
| 507 |
+
learning_rate=config.learning_rate,
|
| 508 |
+
weight_decay=config.weight_decay,
|
| 509 |
+
warmup_ratio=config.warmup_ratio,
|
| 510 |
+
lr_scheduler_type=config.lr_scheduler_type,
|
| 511 |
+
max_grad_norm=config.max_grad_norm,
|
| 512 |
+
evaluation_strategy=config.eval_strategy,
|
| 513 |
+
eval_steps=config.eval_steps,
|
| 514 |
+
save_strategy=config.eval_strategy,
|
| 515 |
+
save_steps=config.save_steps,
|
| 516 |
+
logging_steps=config.logging_steps,
|
| 517 |
+
load_best_model_at_end=True,
|
| 518 |
+
metric_for_best_model="eval_loss",
|
| 519 |
+
greater_is_better=False,
|
| 520 |
+
bf16=True,
|
| 521 |
+
tf32=True,
|
| 522 |
+
gradient_checkpointing=True,
|
| 523 |
+
report_to="wandb" if config.use_wandb else "none",
|
| 524 |
+
push_to_hub=config.push_to_hub,
|
| 525 |
+
hub_model_id=config.hub_model_id if config.push_to_hub else None,
|
| 526 |
+
seed=config.seed,
|
| 527 |
+
dataloader_num_workers=4,
|
| 528 |
+
group_by_length=True,
|
| 529 |
+
optim="paged_adamw_32bit",
|
| 530 |
+
)
|
| 531 |
+
|
| 532 |
+
# Trainer
|
| 533 |
+
trainer = SFTTrainer(
|
| 534 |
+
model=model,
|
| 535 |
+
args=training_args,
|
| 536 |
+
train_dataset=train_dataset,
|
| 537 |
+
eval_dataset=eval_dataset,
|
| 538 |
+
tokenizer=tokenizer,
|
| 539 |
+
dataset_text_field="text",
|
| 540 |
+
max_seq_length=config.max_seq_length,
|
| 541 |
+
packing=True, # pack sequences for efficiency
|
| 542 |
+
)
|
| 543 |
+
|
| 544 |
+
# Train
|
| 545 |
+
logger.info("⚛️ Starting QUEX Quantum Edge training...")
|
| 546 |
+
trainer.train()
|
| 547 |
+
|
| 548 |
+
# Save
|
| 549 |
+
logger.info(f"Saving model to {config.output_dir}")
|
| 550 |
+
trainer.save_model(config.output_dir)
|
| 551 |
+
tokenizer.save_pretrained(config.output_dir)
|
| 552 |
+
|
| 553 |
+
# Push to Hub
|
| 554 |
+
if config.push_to_hub:
|
| 555 |
+
logger.info(f"Pushing to Hub: {config.hub_model_id}")
|
| 556 |
+
trainer.push_to_hub(commit_message="QUEX Quantum Edge v2 — trained model")
|
| 557 |
+
tokenizer.push_to_hub(config.hub_model_id)
|
| 558 |
+
|
| 559 |
+
if config.use_wandb:
|
| 560 |
+
wandb.finish()
|
| 561 |
+
|
| 562 |
+
logger.info("✅ QUEX training complete.")
|
| 563 |
+
|
| 564 |
+
|
| 565 |
+
# ─────────────────────────────────────────────────────────────────────────────
|
| 566 |
+
# Merge LoRA weights (for full model deployment)
|
| 567 |
+
# ─────────────────────────────────────────────────────────────────────────────
|
| 568 |
+
def merge_and_push(adapter_path: str, output_path: str, hub_id: Optional[str] = None):
|
| 569 |
+
"""
|
| 570 |
+
Merge LoRA adapter weights into the base model for full deployment.
|
| 571 |
+
Run this after training if you want a standalone model (no PEFT dependency).
|
| 572 |
+
"""
|
| 573 |
+
from peft import PeftModel
|
| 574 |
+
|
| 575 |
+
logger.info("Merging LoRA weights into base model...")
|
| 576 |
+
tokenizer = AutoTokenizer.from_pretrained(adapter_path)
|
| 577 |
+
base = AutoModelForCausalLM.from_pretrained(
|
| 578 |
+
"mistralai/Mistral-7B-Instruct-v0.3",
|
| 579 |
+
torch_dtype=torch.bfloat16,
|
| 580 |
+
device_map="auto",
|
| 581 |
+
)
|
| 582 |
+
model = PeftModel.from_pretrained(base, adapter_path)
|
| 583 |
+
model = model.merge_and_unload()
|
| 584 |
+
|
| 585 |
+
model.save_pretrained(output_path, safe_serialization=True)
|
| 586 |
+
tokenizer.save_pretrained(output_path)
|
| 587 |
+
logger.info(f"Merged model saved to {output_path}")
|
| 588 |
+
|
| 589 |
+
if hub_id:
|
| 590 |
+
model.push_to_hub(hub_id, commit_message="QUEX merged full model")
|
| 591 |
+
tokenizer.push_to_hub(hub_id)
|
| 592 |
+
logger.info(f"Pushed merged model to {hub_id}")
|
| 593 |
+
|
| 594 |
+
|
| 595 |
+
# ─────────────────────────────────────────────────────────────────────────────
|
| 596 |
+
# Inference test
|
| 597 |
+
# ─────────────────────────────────────────────────────────────────────────────
|
| 598 |
+
def test_inference(model_path: str, prompt: str):
|
| 599 |
+
"""Quick inference test after training."""
|
| 600 |
+
tokenizer = AutoTokenizer.from_pretrained(model_path)
|
| 601 |
+
model = AutoModelForCausalLM.from_pretrained(
|
| 602 |
+
model_path,
|
| 603 |
+
torch_dtype=torch.bfloat16,
|
| 604 |
+
device_map="auto"
|
| 605 |
+
)
|
| 606 |
+
messages = [
|
| 607 |
+
{"role": "system", "content": QUEX_SYSTEM_PROMPT},
|
| 608 |
+
{"role": "user", "content": prompt},
|
| 609 |
+
]
|
| 610 |
+
inputs = tokenizer.apply_chat_template(
|
| 611 |
+
messages,
|
| 612 |
+
return_tensors="pt",
|
| 613 |
+
add_generation_prompt=True
|
| 614 |
+
).to(model.device)
|
| 615 |
+
|
| 616 |
+
with torch.no_grad():
|
| 617 |
+
outputs = model.generate(
|
| 618 |
+
inputs,
|
| 619 |
+
max_new_tokens=512,
|
| 620 |
+
temperature=0.7,
|
| 621 |
+
top_p=0.9,
|
| 622 |
+
repetition_penalty=1.1,
|
| 623 |
+
do_sample=True,
|
| 624 |
+
)
|
| 625 |
+
response = tokenizer.decode(outputs[0][inputs.shape[-1]:], skip_special_tokens=True)
|
| 626 |
+
print(f"\n[QUEX]: {response}\n")
|
| 627 |
+
return response
|
| 628 |
+
|
| 629 |
+
|
| 630 |
+
# ─────────────────────────────────────────────────────────────────────────────
|
| 631 |
+
# Entry point
|
| 632 |
+
# ─────────────────────────────────────────────────────────────────────────────
|
| 633 |
+
if __name__ == "__main__":
|
| 634 |
+
parser = argparse.ArgumentParser(description="QUEX Quantum Edge Training")
|
| 635 |
+
parser.add_argument("--mode", choices=["train", "merge", "test"], default="train")
|
| 636 |
+
parser.add_argument("--data_path", type=str, default=None,
|
| 637 |
+
help="Path to local JSONL training data")
|
| 638 |
+
parser.add_argument("--hf_dataset", type=str, default=None,
|
| 639 |
+
help="HuggingFace dataset name")
|
| 640 |
+
parser.add_argument("--output_dir", type=str, default="./quex-quantum-edge-7b")
|
| 641 |
+
parser.add_argument("--hub_model_id", type=str, default="ZENTSPY/quex-quantum-edge-7b")
|
| 642 |
+
parser.add_argument("--hf_token", type=str, default=None)
|
| 643 |
+
parser.add_argument("--no_push", action="store_true")
|
| 644 |
+
parser.add_argument("--no_wandb", action="store_true")
|
| 645 |
+
parser.add_argument("--adapter_path", type=str, default=None,
|
| 646 |
+
help="For merge mode: path to trained adapter")
|
| 647 |
+
parser.add_argument("--merged_output", type=str, default="./quex-merged",
|
| 648 |
+
help="For merge mode: output path")
|
| 649 |
+
parser.add_argument("--test_prompt", type=str,
|
| 650 |
+
default="How do I launch a token on the ZENT Launchpad?",
|
| 651 |
+
help="For test mode: prompt to test")
|
| 652 |
+
args = parser.parse_args()
|
| 653 |
+
|
| 654 |
+
if args.mode == "train":
|
| 655 |
+
config = QUEXConfig(
|
| 656 |
+
data_path=args.data_path,
|
| 657 |
+
hf_dataset=args.hf_dataset,
|
| 658 |
+
output_dir=args.output_dir,
|
| 659 |
+
hub_model_id=args.hub_model_id,
|
| 660 |
+
hf_token=args.hf_token,
|
| 661 |
+
push_to_hub=not args.no_push,
|
| 662 |
+
use_wandb=not args.no_wandb,
|
| 663 |
+
)
|
| 664 |
+
train(config)
|
| 665 |
+
|
| 666 |
+
elif args.mode == "merge":
|
| 667 |
+
adapter = args.adapter_path or args.output_dir
|
| 668 |
+
merge_and_push(adapter, args.merged_output, args.hub_model_id if not args.no_push else None)
|
| 669 |
+
|
| 670 |
+
elif args.mode == "test":
|
| 671 |
+
test_inference(args.output_dir, args.test_prompt)
|
training_data_sample.jsonl
ADDED
|
@@ -0,0 +1,6 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{"instruction": "What is QUEX?", "response": "QUEX is the Quantum Edge AI agent — the second-generation model powering the ZENT Agentic Launchpad on Solana. Built on Mistral-7B, fine-tuned with Quantum Edge multi-path reasoning, QUEX is sharper, bolder, and more precise than any standard chatbot. It handles token launch guidance, community management, quest tracking, and DeFi education — all autonomously, 24/7."}
|
| 2 |
+
{"instruction": "How do I add QUEX to my Telegram group?", "response": "From your ZENT Launchpad dashboard:\n1. Go to Agent Settings → Deployment\n2. Select Telegram and enter your bot token (from @BotFather)\n3. Configure your agent's persona, allowed commands, and knowledge scope\n4. Click Deploy — QUEX goes live in your group instantly\n\nYour QUEX agent will answer questions, moderate, and run quest announcements automatically. You can update its knowledge base any time from the dashboard."}
|
| 3 |
+
{"instruction": "What is the ZENT token contract?", "response": "The ZENT Protocol contract address on Solana is: 2a1sAFexKT1i3QpVYkaTfi5ed4auMeZZVFy4mdGJzent\n\nAlways verify contract addresses on-chain before interacting. ZENT will never DM you asking you to send tokens or sign unknown transactions."}
|
| 4 |
+
{"instruction": "Can QUEX predict token prices?", "response": "No — and any AI that claims to predict token prices with certainty is lying to you.\n\nWhat QUEX can do: frame market conditions, explain on-chain signals, break down tokenomics strengths and weaknesses, and help you ask better questions before making decisions.\n\nWhat QUEX cannot do: tell you when to buy or sell. That's your call, based on your research.\n\nDYOR. Always."}
|
| 5 |
+
{"instruction": "How does quantum edge reasoning work in practice?", "response": "When you ask QUEX a complex question, it doesn't just fire off the first answer it finds. Instead:\n\n1. It generates multiple candidate responses internally\n2. Each path is scored on accuracy, relevance, helpfulness, and safety\n3. The highest-scoring path is selected and delivered\n\nThis is especially powerful for ambiguous DeFi questions where context matters — 'should I launch now?' depends on market conditions, your project stage, your community size, and your tokenomics. QUEX considers all of it before answering."}
|
| 6 |
+
{"instruction": "What happens after my token launches on ZENT?", "response": "Post-launch, ZENT keeps working for you:\n\n⚛️ **QUEX stays active** — your agent continues handling community Q&A, quest updates, and moderation around the clock.\n\n📊 **Analytics dashboard** — track holder growth, quest completion rates, and community sentiment in real time.\n\n🎯 **Ongoing quests** — the Quest Engine generates new community missions to sustain engagement post-launch.\n\n🏦 **Rewards distribution** — QUEX automates reward calculations and distribution based on your configured parameters.\n\n📣 **Creator tools** — run AMAs with QUEX as co-host, schedule announcements, and manage your community calendar.\n\nA launch is the beginning, not the end. ZENT is built for the long game."}
|