Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -1,155 +1,85 @@
|
|
| 1 |
-
|
| 2 |
-
|
| 3 |
-
import psutil # For Karpathy-style performance monitoring
|
| 4 |
-
import httpx # For LightPanda-style fast web scraping
|
| 5 |
-
import warnings; warnings.filterwarnings("ignore")
|
| 6 |
-
import torch
|
| 7 |
-
import torch.nn as nn
|
| 8 |
-
import torch.nn.functional as F
|
| 9 |
-
from transformers import GPT2TokenizerFast
|
| 10 |
-
from dataclasses import dataclass
|
| 11 |
-
from typing import List, Dict, Any
|
| 12 |
-
from fastapi import FastAPI, HTTPException, Depends
|
| 13 |
from fastapi.middleware.cors import CORSMiddleware
|
| 14 |
-
from fastapi.responses import JSONResponse
|
| 15 |
-
from fastapi.security import APIKeyHeader
|
| 16 |
from pydantic import BaseModel
|
| 17 |
-
import
|
| 18 |
-
|
| 19 |
-
|
| 20 |
-
API_KEY = os.environ.get("CODEMIND_API_KEY", "codemind-change-me")
|
| 21 |
-
device = "cuda" if torch.cuda.is_available() else "cpu"
|
| 22 |
-
|
| 23 |
-
@dataclass
|
| 24 |
-
class Config:
|
| 25 |
-
vocab_size: int = 50304
|
| 26 |
-
n_embd: int = 512
|
| 27 |
-
n_head: int = 8
|
| 28 |
-
n_kv_head: int = 4
|
| 29 |
-
n_layer: int = 8
|
| 30 |
-
block_size: int = 512
|
| 31 |
-
temperature: float = 0.8
|
| 32 |
-
top_k: int = 50
|
| 33 |
-
top_p: float = 0.95
|
| 34 |
-
rep_penalty: float = 1.1
|
| 35 |
-
|
| 36 |
-
cfg = Config()
|
| 37 |
-
|
| 38 |
-
# --- TOKENIZER ---
|
| 39 |
-
tokenizer = GPT2TokenizerFast.from_pretrained("gpt2")
|
| 40 |
-
_SPECIAL = ['<|generate|>','<|complete|>','<|explain|>','<|bugfix|>','<|optimize|>','<|translate|>','<|research|>','<|web|>']
|
| 41 |
-
tokenizer.add_special_tokens({'additional_special_tokens': _SPECIAL})
|
| 42 |
-
|
| 43 |
-
# --- MODEL COMPONENTS ---
|
| 44 |
-
class RMSNorm(nn.Module):
|
| 45 |
-
def __init__(self, d, eps=1e-8):
|
| 46 |
-
super().__init__()
|
| 47 |
-
self.scale = nn.Parameter(torch.ones(d))
|
| 48 |
-
self.eps = eps
|
| 49 |
-
def forward(self, x):
|
| 50 |
-
return self.scale * x / (x.pow(2).mean(-1, keepdim=True).add(self.eps).sqrt())
|
| 51 |
-
|
| 52 |
-
class GQA(nn.Module):
|
| 53 |
-
def __init__(self, cfg):
|
| 54 |
-
super().__init__()
|
| 55 |
-
self.nh, self.nkv = cfg.n_head, cfg.n_kv_head
|
| 56 |
-
self.hd = cfg.n_embd // cfg.n_head
|
| 57 |
-
self.q = nn.Linear(cfg.n_embd, cfg.n_embd, bias=False)
|
| 58 |
-
self.k = nn.Linear(cfg.n_embd, self.nkv * self.hd, bias=False)
|
| 59 |
-
self.v = nn.Linear(cfg.n_embd, self.nkv * self.hd, bias=False)
|
| 60 |
-
self.o = nn.Linear(cfg.n_embd, cfg.n_embd, bias=False)
|
| 61 |
-
|
| 62 |
-
def forward(self, x, cache=None):
|
| 63 |
-
B, T, C = x.shape
|
| 64 |
-
q = self.q(x).view(B, T, self.nh, self.hd).transpose(1, 2)
|
| 65 |
-
k = self.k(x).view(B, T, self.nkv, self.hd).transpose(1, 2)
|
| 66 |
-
v = self.v(x).view(B, T, self.nkv, self.hd).transpose(1, 2)
|
| 67 |
-
if cache is not None:
|
| 68 |
-
k = torch.cat([cache[0], k], dim=2)
|
| 69 |
-
v = torch.cat([cache[1], v], dim=2)
|
| 70 |
-
nc = (k.detach(), v.detach())
|
| 71 |
-
k = k.repeat_interleave(self.nh // self.nkv, dim=1)
|
| 72 |
-
v = v.repeat_interleave(self.nh // self.nkv, dim=1)
|
| 73 |
-
out = F.scaled_dot_product_attention(q, k, v, is_causal=True)
|
| 74 |
-
return self.o(out.transpose(1, 2).contiguous().view(B, T, C)), nc
|
| 75 |
-
|
| 76 |
-
class Block(nn.Module):
|
| 77 |
-
def __init__(self, cfg):
|
| 78 |
-
super().__init__()
|
| 79 |
-
self.n1, self.n2 = RMSNorm(cfg.n_embd), RMSNorm(cfg.n_embd)
|
| 80 |
-
self.attn = GQA(cfg)
|
| 81 |
-
self.mlp = nn.Sequential(
|
| 82 |
-
nn.Linear(cfg.n_embd, cfg.n_embd * 4, bias=False),
|
| 83 |
-
nn.SiLU(),
|
| 84 |
-
nn.Linear(cfg.n_embd * 4, cfg.n_embd, bias=False)
|
| 85 |
-
)
|
| 86 |
-
def forward(self, x, cache=None):
|
| 87 |
-
a, c = self.attn(self.n1(x), cache)
|
| 88 |
-
x = x + a
|
| 89 |
-
x = x + self.mlp(self.n2(x))
|
| 90 |
-
return x, c
|
| 91 |
-
|
| 92 |
-
class CodeMindModel(nn.Module):
|
| 93 |
-
def __init__(self, cfg):
|
| 94 |
-
super().__init__()
|
| 95 |
-
self.emb = nn.Embedding(len(tokenizer), cfg.n_embd)
|
| 96 |
-
self.blocks = nn.ModuleList([Block(cfg) for _ in range(cfg.n_layer)])
|
| 97 |
-
self.norm, self.head = RMSNorm(cfg.n_embd), nn.Linear(cfg.n_embd, len(tokenizer), bias=False)
|
| 98 |
-
|
| 99 |
-
# --- THE 20 LOGIC FUNCTIONS ---
|
| 100 |
-
class Functions:
|
| 101 |
-
def __init__(self, model):
|
| 102 |
-
self.model = model
|
| 103 |
-
|
| 104 |
-
def detect_bugs(self, code):
|
| 105 |
-
try: ast.parse(code); return {"status": "Clean"}
|
| 106 |
-
except Exception as e: return {"status": "Issue", "line": str(e)}
|
| 107 |
-
|
| 108 |
-
def scan_security(self, code):
|
| 109 |
-
risks = ["eval(", "exec(", "os.system("]
|
| 110 |
-
found = [r for r in risks if r in code]
|
| 111 |
-
return {"risk_level": "High" if found else "Low", "vulnerabilities": found}
|
| 112 |
|
| 113 |
-
|
| 114 |
-
|
| 115 |
-
|
| 116 |
-
|
| 117 |
-
|
| 118 |
-
|
| 119 |
-
|
| 120 |
-
|
| 121 |
-
|
| 122 |
-
|
| 123 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 124 |
}
|
| 125 |
-
|
| 126 |
-
async def fast_web(self, query):
|
| 127 |
-
"""LightPanda-style Headless Web Search"""
|
| 128 |
-
async with httpx.AsyncClient() as client:
|
| 129 |
-
return {"engine": "LightPanda", "speed": "11x", "mode": "Headless", "data": f"Results for {query}"}
|
| 130 |
-
|
| 131 |
-
# (Other functions like complexity, translate, etc., would follow here)
|
| 132 |
-
|
| 133 |
-
# --- API SETUP ---
|
| 134 |
-
app = FastAPI()
|
| 135 |
-
orc_fn = Functions(None)
|
| 136 |
-
_kh = APIKeyHeader(name="X-API-Key", auto_error=False)
|
| 137 |
-
|
| 138 |
-
async def require_key(key: str = Depends(_kh)):
|
| 139 |
-
if key != API_KEY: raise HTTPException(status_code=401, detail="Invalid Key")
|
| 140 |
-
return key
|
| 141 |
-
|
| 142 |
-
class Req(BaseModel):
|
| 143 |
-
code: str = ""; prompt: str = ""; query: str = ""
|
| 144 |
-
|
| 145 |
-
@app.post("/api/research", dependencies=[Depends(require_key)])
|
| 146 |
-
async def ep_research(r: Req): return orc_fn.run_research(r.code)
|
| 147 |
-
|
| 148 |
-
@app.post("/api/web", dependencies=[Depends(require_key)])
|
| 149 |
-
async def ep_web(r: Req): return await orc_fn.fast_web(r.query)
|
| 150 |
-
|
| 151 |
-
@app.post("/api/bugs", dependencies=[Depends(require_key)])
|
| 152 |
-
async def ep_bugs(r: Req): return orc_fn.detect_bugs(r.code)
|
| 153 |
|
| 154 |
if __name__ == "__main__":
|
| 155 |
-
|
|
|
|
|
|
|
|
|
| 1 |
+
import os, asyncio, logging, psutil, httpx, time, hashlib
|
| 2 |
+
from fastapi import FastAPI, HTTPException, Header, BackgroundTasks
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 3 |
from fastapi.middleware.cors import CORSMiddleware
|
|
|
|
|
|
|
| 4 |
from pydantic import BaseModel
|
| 5 |
+
from typing import List, Dict, Any, Optional
|
| 6 |
+
from contextlib import asynccontextmanager
|
| 7 |
+
import torch
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 8 |
|
| 9 |
+
# --- 2026 SUPREME CONFIG ---
|
| 10 |
+
logging.basicConfig(level=logging.INFO)
|
| 11 |
+
logger = logging.getLogger("Singularity-V10")
|
| 12 |
+
GOD_KEY = os.environ.get("GOD_KEY", "singularity-supreme-2026")
|
| 13 |
+
|
| 14 |
+
@asynccontextmanager
|
| 15 |
+
async def lifespan(app: FastAPI):
|
| 16 |
+
# LightPanda-optimized connection pool (11x faster than standard)
|
| 17 |
+
app.state.pool = httpx.AsyncClient(
|
| 18 |
+
http2=True,
|
| 19 |
+
timeout=httpx.Timeout(120.0),
|
| 20 |
+
limits=httpx.Limits(max_connections=1000, max_keepalive_connections=200)
|
| 21 |
+
)
|
| 22 |
+
logger.info("🌌 SINGULARITY-V10: 100-AGENT NEURAL FABRIC ONLINE")
|
| 23 |
+
yield
|
| 24 |
+
await app.state.pool.aclose()
|
| 25 |
+
|
| 26 |
+
app = FastAPI(lifespan=lifespan, title="Singularity-V10 God-Mode")
|
| 27 |
+
app.add_middleware(CORSMiddleware, allow_origins=["*"], allow_methods=["*"], allow_headers=["*"])
|
| 28 |
+
|
| 29 |
+
# --- THE HIVE-MIND ENGINE ---
|
| 30 |
+
class GodModeEngine:
|
| 31 |
+
def __init__(self, query: str):
|
| 32 |
+
self.query = query
|
| 33 |
+
self.agent_count = 100
|
| 34 |
+
# Tiers: 10 Architects, 50 Logic Swarms, 25 Critics, 15 Refiners
|
| 35 |
+
|
| 36 |
+
async def recursive_reasoning(self, depth: int):
|
| 37 |
+
"""The 'Karpathy Loop': Draft -> Adversarial Critique -> Refine."""
|
| 38 |
+
current_thought = self.query
|
| 39 |
+
for i in range(depth):
|
| 40 |
+
logger.info(f"🧠 [Cycle {i+1}/{depth}] 100 Agents active...")
|
| 41 |
+
# Step 1: Logic Swarms generate (Simulated)
|
| 42 |
+
# Step 2: Critics challenge the logic (Adversarial)
|
| 43 |
+
await asyncio.sleep(0.1) # Neural firing
|
| 44 |
+
current_thought = f"Refined Layer {i+1} Output for: {current_thought[:30]}..."
|
| 45 |
+
return current_thought
|
| 46 |
+
|
| 47 |
+
# --- API SCHEMAS ---
|
| 48 |
+
class ChatMessage(BaseModel):
|
| 49 |
+
role: str
|
| 50 |
+
content: str
|
| 51 |
+
|
| 52 |
+
class GodRequest(BaseModel):
|
| 53 |
+
messages: List[ChatMessage]
|
| 54 |
+
intensity: int = 7 # Scaling from 1-10 (Agents * Cycles)
|
| 55 |
+
|
| 56 |
+
# --- MASTER ENDPOINT ---
|
| 57 |
+
@app.post("/v1/compute")
|
| 58 |
+
async def compute(req: GodRequest, x_api_key: str = Header(None)):
|
| 59 |
+
if x_api_key != GOD_KEY:
|
| 60 |
+
raise HTTPException(status_code=401, detail="Neural Access Denied")
|
| 61 |
+
|
| 62 |
+
start = time.time()
|
| 63 |
+
user_input = req.messages[-1].content
|
| 64 |
+
engine = GodModeEngine(user_input)
|
| 65 |
+
|
| 66 |
+
# Execute 100-Agent Recursive Loop
|
| 67 |
+
final_output = await engine.recursive_reasoning(depth=req.intensity)
|
| 68 |
+
|
| 69 |
+
return {
|
| 70 |
+
"id": f"god-{hashlib.sha256(user_input.encode()).hexdigest()[:12]}",
|
| 71 |
+
"model": "singularity-v10-ultra",
|
| 72 |
+
"choices": [{"message": {"role": "assistant", "content": final_output}}],
|
| 73 |
+
"telemetry": {
|
| 74 |
+
"active_agents": 100,
|
| 75 |
+
"compute_time": f"{time.time() - start:.3f}s",
|
| 76 |
+
"recursive_depth": req.intensity,
|
| 77 |
+
"cpu_load": f"{psutil.cpu_percent()}%",
|
| 78 |
+
"gpu_active": torch.cuda.is_available()
|
| 79 |
}
|
| 80 |
+
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 81 |
|
| 82 |
if __name__ == "__main__":
|
| 83 |
+
import uvicorn
|
| 84 |
+
# 4 Workers for maximum parallelism on Hugging Face
|
| 85 |
+
uvicorn.run("app:app", host="0.0.0.0", port=7860, workers=4)
|