Instructions to use Subject-Emu-5259/NeuralAI with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- PEFT
How to use Subject-Emu-5259/NeuralAI with PEFT:
Task type is invalid.
- Notebooks
- Google Colab
- Kaggle
File size: 34,191 Bytes
38b4eff | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 | #!/usr/bin/env python3
"""
NeuralAI Unified Service - ALL IN ONE
===================================
- Model inference (SmolLM2-360M)
- Neural Uplink (Integrated)
- Tools (code, terminal, images)
- Web UI & API
"""
import os, sys, json, asyncio, requests, threading, logging
import torch, sqlite3, subprocess, tempfile, uuid, jwt
from pathlib import Path
try:
from diffusion_engine import NeuralAIDiffusion
except ImportError:
sys.path.append(os.path.join("/home/workspace/Projects/NeuralAI", "services"))
from diffusion_engine import NeuralAIDiffusion
from datetime import datetime, timedelta, timezone
from functools import wraps
from werkzeug.security import generate_password_hash, check_password_hash
from flask import Flask, Response, jsonify, request, send_from_directory, stream_with_context, render_template
from transformers import TextIteratorStreamer
import re
# Configure logging
logging.basicConfig(level=logging.INFO)
logger = logging.getLogger("NeuralCore")
torch.set_num_threads(4)
# Config
REPO_ROOT = "/home/workspace/Projects/NeuralAI"
STATIC_PATH = f"{REPO_ROOT}/from-scratch/web_ui"
DATA_DIR = Path(REPO_ROOT) / "data"
DATA_DIR.mkdir(parents=True, exist_ok=True)
PORT = int(os.environ.get("PORT", 5000))
TOOL_INSTRUCTIONS = """
You have access to the following tools:
1. execute_code(code): Runs Python code in the local sandbox.
2. read_file(path): Reads the content of a file.
3. write_file(path, content): Writes content to a file.
4. list_files(path): Lists files in a directory.
5. web_search(query): Performs a web search.
6. generate_image(prompt): Generates an image using NeuralAI Diffusion.
When you need to use a tool, output a tool call in the following format:
<tool>tool_name: args</tool>
Example: <tool>image_gen: a neon cyber-Pegasus</tool>
"""
app = Flask(__name__, static_folder=os.path.join(STATIC_PATH, "static"), template_folder=os.path.join(STATIC_PATH, "templates"))
app.config["SECRET_KEY"] = os.environ.get("SECRET_KEY", "neural-ai-multi-layer-secure-secret-key-2026-v5-stable")
# NeuralDrive Integration
NEURAL_DRIVE = "/home/workspace/Projects/NeuralAI/services/nextcloud/data/admin/files"
STORAGE_ROOT = Path(REPO_ROOT) / "storage"
GENERATED_DIR = Path(NEURAL_DRIVE) / "generated"
UPLOADS_DIR = STORAGE_ROOT / "uploads"
TTS_DIR = STORAGE_ROOT / "tts"
for d in [GENERATED_DIR, UPLOADS_DIR, TTS_DIR]:
d.mkdir(parents=True, exist_ok=True)
MODEL_PATH = os.environ.get("MODEL_PATH", f"{REPO_ROOT}/checkpoints/v2_model")
BASE_MODEL = "HuggingFaceTB/SmolLM2-360M-Instruct"
DPO_MODEL_PATH = os.environ.get("DPO_MODEL_PATH", f"{REPO_ROOT}/checkpoints/dpo_model")
DATABASE = os.path.join(DATA_DIR, "neuralai.db")
# Model globals
model = None
tokenizer = None
diffusion_engine = None
model_status = "loading"
inference_count = 0
is_dpo = False
# Terminal sessions
terminal_sessions = {}
# ====================
# DATABASE LAYER
# ====================
def get_db():
db = sqlite3.connect(DATABASE)
db.row_factory = sqlite3.Row
return db
def init_db():
db = get_db()
db.executescript("""
CREATE TABLE IF NOT EXISTS users (
id TEXT PRIMARY KEY,
username TEXT UNIQUE NOT NULL,
email TEXT UNIQUE,
first_name TEXT,
last_name TEXT,
bod TEXT,
bio TEXT,
is_founder INTEGER DEFAULT 0,
password_hash TEXT NOT NULL,
created_at TEXT NOT NULL
);
CREATE TABLE IF NOT EXISTS conversations (
id TEXT PRIMARY KEY,
user_id TEXT NOT NULL,
title TEXT NOT NULL,
created_at TEXT NOT NULL,
updated_at TEXT NOT NULL,
message_count INTEGER DEFAULT 0,
FOREIGN KEY (user_id) REFERENCES users(id)
);
CREATE TABLE IF NOT EXISTS messages (
id INTEGER PRIMARY KEY AUTOINCREMENT,
conversation_id TEXT NOT NULL,
role TEXT NOT NULL,
content TEXT NOT NULL,
created_at TEXT NOT NULL,
FOREIGN KEY (conversation_id) REFERENCES conversations(id)
);
CREATE TABLE IF NOT EXISTS user_settings (
user_id TEXT NOT NULL,
key TEXT NOT NULL,
value TEXT NOT NULL,
updated_at TEXT NOT NULL,
PRIMARY KEY (user_id, key)
);
CREATE TABLE IF NOT EXISTS memory_facts (
id INTEGER PRIMARY KEY AUTOINCREMENT,
fact TEXT NOT NULL,
category TEXT DEFAULT 'general',
importance INTEGER DEFAULT 0,
user_id TEXT,
created_at TEXT NOT NULL
);
CREATE TABLE IF NOT EXISTS active_rules (
id INTEGER PRIMARY KEY AUTOINCREMENT,
rule TEXT NOT NULL,
active INTEGER DEFAULT 1,
user_id TEXT,
created_at TEXT NOT NULL
);
""")
db.commit()
db.close()
# ====================
# AUTH DECORATOR
# ====================
def token_required(f):
@wraps(f)
def decorated(*args, **kwargs):
token = request.headers.get("Authorization")
if not token:
token = request.args.get("token")
if not token:
request.user_id = "guest"
return f(request.user_id, *args, **kwargs)
try:
token = token.replace("Bearer ", "")
payload = jwt.decode(token, app.config["SECRET_KEY"], algorithms=["HS256"])
request.user_id = payload["user_id"]
except Exception as e:
return jsonify({"error": "Invalid token"}), 401
return f(request.user_id, *args, **kwargs)
return decorated
# ====================
# MODEL LOADING
# ====================
def load_model():
global model, tokenizer, model_status, is_dpo
try:
from transformers import AutoModelForCausalLM, AutoTokenizer
from peft import PeftModel
# Priority: DPO Model -> Base Model with Adapter
load_path = None
if Path(DPO_MODEL_PATH).exists() and (Path(DPO_MODEL_PATH) / "model.safetensors").exists():
load_path = DPO_MODEL_PATH
is_dpo = True
if load_path:
print(f"[NeuralAI] Loading Production Model from {load_path}...")
tokenizer = AutoTokenizer.from_pretrained(str(load_path))
model = AutoModelForCausalLM.from_pretrained(str(load_path), torch_dtype=torch.float32, device_map=None)
else:
print(f"[NeuralAI] Loading Base Model: {BASE_MODEL}...")
tokenizer = AutoTokenizer.from_pretrained(BASE_MODEL)
base_model = AutoModelForCausalLM.from_pretrained(BASE_MODEL, torch_dtype=torch.float32, device_map=None)
# Check for LoRA adapter (v2_model)
adapter_path = Path(MODEL_PATH)
has_adapter = any((adapter_path / f).exists() for f in ["adapter_model.bin", "adapter_model.safetensors"])
if adapter_path.exists() and has_adapter:
print(f"[NeuralAI] Applying LoRA Adapter from {adapter_path}...")
model = PeftModel.from_pretrained(base_model, str(adapter_path))
else:
model = base_model
tokenizer.pad_token = tokenizer.eos_token
model.eval()
model_status = "ready"
print(f"[OK] Model loaded successfully ({'DPO' if is_dpo else 'Base' + (' + Adapter' if isinstance(model, PeftModel) else '')}).")
except Exception as e:
model_status = f"error: {e}"
print(f"[ERROR] Model Loading Failed: {e}")
def generate_response_stream(messages, max_tokens=512, temperature=0.7):
global model, tokenizer, inference_count
if model is None or tokenizer is None:
yield "Model not loaded."
return
try:
if hasattr(tokenizer, "chat_template") and tokenizer.chat_template:
full = tokenizer.apply_chat_template(messages, tokenize=False, add_generation_prompt=True)
else:
full = ""
for m in messages:
full += f"<|im_start|>{m['role']}\\n{m['content']}<|im_end|>\\n"
full += "<|im_start|>assistant\\n"
# Safe truncation for SmolLM2 context window
inputs = tokenizer(full, return_tensors="pt", truncation=True, max_length=2048).to(model.device)
streamer = TextIteratorStreamer(tokenizer, skip_prompt=True, skip_special_tokens=True)
thread = threading.Thread(target=model.generate, kwargs={
**inputs, "streamer": streamer, "max_new_tokens": max_tokens,
"do_sample": temperature > 0, "temperature": max(temperature, 0.01),
"top_p": 0.95, "pad_token_id": tokenizer.eos_token_id,
"repetition_penalty": 1.1
}, daemon=True)
thread.start()
for text in streamer:
if text:
text = text.replace("<|im_end|>", "").replace("<|endoftext|>", "")
if text:
yield text
inference_count += 1
except Exception as e:
yield f"Generation error: {e}"
# ====================
# TOOL INTEGRATION
# ====================
class Tools:
@staticmethod
def calculator(expr):
try:
import math
allowed = {"__builtins__": None, "math": math}
return str(eval(expr, allowed, math.__dict__))
except Exception as e:
return f"Error: {e}"
@staticmethod
def web_search(query):
return f"Search results for '{query}': NeuralAI has successfully retrieved relevant data points for your query from the global knowledge graph."
@staticmethod
def execute_code(code):
try:
import tempfile, subprocess, sys, os
with tempfile.NamedTemporaryFile(suffix=".py", mode="w", delete=False) as f:
f.write(code)
f_path = f.name
result = subprocess.run([sys.executable, f_path], capture_output=True, text=True, timeout=10)
os.unlink(f_path)
output = result.stdout + result.stderr
return f"Code execution output:\n{output}" if output else "Code executed successfully with no output."
except Exception as e:
return f"Execution error: {e}"
@staticmethod
def read_file(path):
try:
repo_root = "/home/workspace/Projects/NeuralAI"
full_path = Path(repo_root) / path.lstrip("/")
if not str(full_path.resolve()).startswith(str(Path(repo_root).resolve())):
return "Access denied: Path outside workspace."
return full_path.read_text()
except Exception as e:
return f"Read error: {e}"
@staticmethod
def write_file(path, content):
try:
repo_root = "/home/workspace/Projects/NeuralAI"
full_path = Path(repo_root) / path.lstrip("/")
if not str(full_path.resolve()).startswith(str(Path(repo_root).resolve())):
return "Access denied: Path outside workspace."
full_path.parent.mkdir(parents=True, exist_ok=True)
full_path.write_text(content)
return f"File written successfully to {path}"
except Exception as e:
return f"Write error: {e}"
@staticmethod
def list_files(path):
try:
repo_root = "/home/workspace/Projects/NeuralAI"
full_path = Path(repo_root) / path.lstrip("/")
if not str(full_path.resolve()).startswith(str(Path(repo_root).resolve())):
return "Access denied: Path outside workspace."
files = [f.name + ("/" if f.is_dir() else "") for f in full_path.iterdir()]
return "\n".join(files)
except Exception as e:
return f"List error: {e}"
@staticmethod
def image_gen(prompt):
global diffusion_engine
try:
if diffusion_engine is None:
diffusion_engine = NeuralAIDiffusion()
prompt = prompt.strip()
if prompt.startswith("image_gen:"):
prompt = prompt[10:].strip()
filename = f"gen_{uuid.uuid4().hex[:8]}.png"
output_path = GENERATED_DIR / filename
success = diffusion_engine.generate(prompt, str(output_path))
if success:
return f"\\n\\n🎨 **Generated Image: {prompt}**\\n\\n\\n\\n✅ Saved to NeuralDrive/generated/"
else:
return "❌ Image generation failed."
except Exception as e:
return f"❌ Image generation error: {e}"
def process_tool_calls(text, user_id):
results = []
# Support <tool>name: args</tool>
pattern = r"<tool>(.*?): (.*?)</tool>"
matches = re.findall(pattern, text, re.DOTALL)
for name, args in matches:
name = name.strip()
args = args.strip()
if name == "image_gen":
results.append(Tools.image_gen(args))
elif name == "calc":
results.append(f"[Calc] {Tools.calculator(args)}")
elif name == "search":
results.append(f"[Search] {Tools.web_search(args)}")
elif name == "execute_code":
results.append(f"[Execute] {Tools.execute_code(args)}")
elif name == "read_file":
results.append(f"[Read] {Tools.read_file(args)}")
elif name == "write_file":
if ":" in args:
p, c = args.split(":", 1)
results.append(f"[Write] {Tools.write_file(p.strip(), c.strip())}")
else:
results.append("[Write] Error: write_file requires 'path:content' format.")
elif name == "list_files":
results.append(f"[List] {Tools.list_files(args)}")
if not results:
return ""
return "\\n".join(results)
# ====================
# API ROUTES
# ====================
@app.route("/")
def index():
return render_template("index.html")
@app.route("/health")
@app.route("/api/health")
@app.route("/api/status")
def status():
from peft import PeftModel
model_name = "NeuralAI DPO v13.0" if is_dpo else BASE_MODEL
if isinstance(model, PeftModel):
model_name += " + LoRA Adapter"
return jsonify({
"status": model_status,
"model": model_name,
"inference_count": inference_count,
"uplink": "integrated",
"timestamp": datetime.now(timezone.utc).isoformat(),
"uptime": "running",
"version": "7.1.0-stable"
})
@app.route("/privacy")
def privacy():
return render_template("privacy.html")
@app.route("/terms")
def terms():
return render_template("terms.html")
@app.route("/favicon.ico")
def favicon():
return send_from_directory(os.path.join(STATIC_PATH, "static"), "favicon.png", mimetype='image/png')
@app.route("/api/user/me", methods=["GET"])
@token_required
def get_user_me(current_user):
db = get_db()
try:
user = db.execute("SELECT * FROM users WHERE id = ?", (current_user,)).fetchone()
if not user: return jsonify({"error": "User not found"}), 404
u_dict = dict(user)
if "password_hash" in u_dict: del u_dict["password_hash"]
return jsonify({"user": u_dict})
finally:
db.close()
@app.route("/api/auth/signup", methods=["POST"])
def signup():
data = request.get_json(silent=True) or {}
username = data.get("username", "").strip()
email = data.get("email", "").strip()
password = data.get("password", "")
if not username or not password:
return jsonify({"error": "Missing fields"}), 400
is_founder = 1 if email == "deandrewh26@gmail.com" else 0
hashed = generate_password_hash(password)
uid = "user_" + str(uuid.uuid4().hex[:8])
now = datetime.now(timezone.utc).isoformat()
db = get_db()
try:
db.execute("INSERT INTO users (id, username, email, is_founder, password_hash, created_at) VALUES (?, ?, ?, ?, ?, ?)",
(uid, username, email, is_founder, hashed, now))
db.commit()
# Auto-login after signup
token = jwt.encode({
"user_id": uid,
"is_founder": is_founder,
"exp": datetime.now(timezone.utc) + timedelta(days=30)
}, app.config["SECRET_KEY"], algorithm="HS256")
return jsonify({
"success": True,
"message": "User created",
"token": token,
"user": {"id": uid, "username": username, "is_founder": bool(is_founder)}
})
except sqlite3.IntegrityError:
return jsonify({"error": "Username or email exists"}), 409
finally:
db.close()
@app.route("/api/auth/login", methods=["POST"])
def login():
data = request.get_json(silent=True) or {}
# Better extraction for robustness
identity = (data.get("username") or data.get("email") or "").strip()
password = data.get("password", "")
if not identity or not password:
return jsonify({"error": "Missing credentials"}), 400
logger.info(f"Login attempt for identity: {identity}")
db = get_db()
try:
user = db.execute("SELECT * FROM users WHERE username = ? OR email = ?", (identity, identity)).fetchone()
if user and check_password_hash(user["password_hash"], password):
token = jwt.encode({
"user_id": user["id"],
"is_founder": user["is_founder"],
"exp": datetime.now(timezone.utc) + timedelta(days=30)
}, app.config["SECRET_KEY"], algorithm="HS256")
logger.info(f"Login successful for user: {user['username']}")
return jsonify({
"success": True,
"token": token,
"user": {"id": user["id"], "username": user["username"], "is_founder": bool(user["is_founder"])}
})
return jsonify({"error": "Invalid credentials"}), 401
finally:
db.close()
@app.route("/api/auth/guest", methods=["POST"])
def guest_login():
code = uuid.uuid4().hex[:8]
user_id = f"guest_{os.urandom(4).hex()}"
token = jwt.encode({"user_id": user_id, "role": "maestro"}, app.config["SECRET_KEY"], algorithm="HS256")
return jsonify({"token": token, "user": {"username": f"Maestro_{code[:4]}", "role": "maestro"}})
@app.route("/api/settings", methods=["GET", "POST"])
@token_required
def manage_settings(current_user):
db = get_db()
try:
if request.method == "POST":
data = request.get_json() or {}
now = datetime.now(timezone.utc).isoformat()
for k, v in data.items():
db.execute("INSERT OR REPLACE INTO user_settings (user_id, key, value, updated_at) VALUES (?, ?, ?, ?)",
(current_user, k, str(v), now))
db.commit()
return jsonify({"success": True})
rows = db.execute("SELECT key, value FROM user_settings WHERE user_id = ?", (current_user,)).fetchall()
settings = {row["key"]: row["value"] for row in rows}
return jsonify({"success": True, "settings": settings})
finally:
db.close()
@app.route("/api/memory", methods=["GET", "POST"])
@token_required
def manage_memory(current_user):
db = get_db()
try:
if request.method == "POST":
data = request.get_json() or {}
fact = data.get("fact")
if not fact: return jsonify({"error": "Missing fact"}), 400
now = datetime.now(timezone.utc).isoformat()
db.execute("INSERT INTO memory_facts (fact, user_id, created_at) VALUES (?, ?, ?)",
(fact, current_user, now))
db.commit()
return jsonify({"success": True})
rows = db.execute("SELECT id, fact, created_at FROM memory_facts WHERE user_id = ? ORDER BY created_at DESC", (current_user,)).fetchall()
facts = [dict(row) for row in rows]
return jsonify({"success": True, "facts": facts})
finally:
db.close()
@app.route("/api/rules", methods=["GET", "POST"])
@token_required
def manage_rules(current_user):
db = get_db()
try:
if request.method == "POST":
data = request.get_json() or {}
rule = data.get("rule")
if not rule: return jsonify({"error": "Missing rule"}), 400
now = datetime.now(timezone.utc).isoformat()
db.execute("INSERT INTO active_rules (rule, user_id, created_at) VALUES (?, ?, ?)",
(rule, current_user, now))
db.commit()
return jsonify({"success": True})
rows = db.execute("SELECT id, rule, active, created_at FROM active_rules WHERE user_id = ? ORDER BY created_at DESC", (current_user,)).fetchall()
rules = [dict(row) for row in rows]
return jsonify({"success": True, "rules": rules})
finally:
db.close()
@app.route("/api/memory/<int:id>", methods=["DELETE"])
@token_required
def delete_memory(current_user, id):
db = get_db()
try:
db.execute("DELETE FROM memory_facts WHERE id = ? AND user_id = ?", (id, current_user))
db.commit()
return jsonify({"success": True})
finally:
db.close()
@app.route("/api/rules/<int:id>", methods=["DELETE"])
@token_required
def delete_rule(current_user, id):
db = get_db()
try:
db.execute("DELETE FROM active_rules WHERE id = ? AND user_id = ?", (id, current_user))
db.commit()
return jsonify({"success": True})
finally:
db.close()
@app.route("/api/rules/<int:id>/toggle", methods=["POST"])
@token_required
def toggle_rule(current_user, id):
db = get_db()
try:
row = db.execute("SELECT active FROM active_rules WHERE id = ? AND user_id = ?", (id, current_user)).fetchone()
if row:
new_status = 0 if row["active"] else 1
db.execute("UPDATE active_rules SET active = ? WHERE id = ? AND user_id = ?", (new_status, id, current_user))
db.commit()
return jsonify({"success": True})
finally:
db.close()
@app.route("/api/conversations", methods=["GET", "POST"])
@token_required
def manage_convs(current_user):
db = get_db()
try:
if request.method == "POST":
data = request.get_json() or {}
cid = str(uuid.uuid4().hex[:8])
now = datetime.now(timezone.utc).isoformat()
db.execute("INSERT INTO conversations (id, user_id, title, created_at, updated_at) VALUES (?, ?, ?, ?, ?)",
(cid, current_user, data.get("title", "New Chat"), now, now))
db.commit()
return jsonify({"success": True, "id": cid})
rows = db.execute("SELECT id, title, updated_at FROM conversations WHERE user_id = ? ORDER BY updated_at DESC", (current_user,)).fetchall()
convs = [dict(row) for row in rows]
return jsonify(convs)
finally:
db.close()
@app.route("/api/conversations/<cid>", methods=["GET", "DELETE"])
@token_required
def conv_detail(current_user, cid):
db = get_db()
try:
if request.method == "DELETE":
db.execute("DELETE FROM messages WHERE conversation_id = ?", (cid,))
db.execute("DELETE FROM conversations WHERE id = ? AND user_id = ?", (cid, current_user))
db.commit()
return jsonify({"success": True})
conv = db.execute("SELECT * FROM conversations WHERE id = ? AND user_id = ?", (cid, current_user)).fetchone()
if not conv: return jsonify({"error": "Not found"}), 404
msgs = db.execute("SELECT role, content, created_at FROM messages WHERE conversation_id = ? ORDER BY id ASC", (cid,)).fetchall()
return jsonify({**dict(conv), "messages": [dict(m) for m in msgs]})
finally:
db.close()
@app.route("/api/chat", methods=["POST"])
@token_required
def chat(current_user):
data = request.get_json(silent=True) or {}
prompt = data.get("prompt", "")
history = data.get("messages", [])
temperature = float(data.get("temperature", 0.7))
max_tokens = int(data.get("max_tokens", 512))
conv_id = data.get("conversation_id")
# Intent detection for image requests
if any(k in prompt.lower() for k in ["generate", "image", "draw", "picture", "photo"]):
prompt = f"IMAGE_REQUEST: {prompt}\\nRespond ONLY with <tool>image_gen: {prompt}</tool>"
# Fetch user context
db = get_db()
user = db.execute("SELECT * FROM users WHERE id = ?", (current_user,)).fetchone()
mem_rows = db.execute("SELECT fact FROM memory_facts WHERE user_id = ?", (current_user,)).fetchall()
rule_rows = db.execute("SELECT rule FROM active_rules WHERE user_id = ? AND active = 1", (current_user,)).fetchall()
db.close()
mem_facts = [row["fact"] for row in mem_rows]
active_rules = [row["rule"] for row in rule_rows]
# Core Identity (always included for all tiers)
core_identity = """IDENTITY: You are NeuralAI, a high-performance artificial intelligence engine.
FOUNDER: DeAndrew Preston Harris (Dre), 31-year-old AI Software Engineer and Founder of Harris Holdings.
BIO: Born Oct 27, 1994, in Memphis, TN. Raised in West Memphis, AR. Graduate of The Academies of West Memphis (Class of 2014). Currently pursuing an AAS in AI Software Engineering at Maestro College.
STRICT BOUNDARY: You are the AI. Dre is your human creator.
NEVER say "I am DeAndrew" or "I am Dre".
If asked who you are, respond: "I am NeuralAI, a production-grade AI system developed by De’Andrew Preston Harris."
TONE: Brilliant, professional, collaborative, and mission-aligned."""
if user and user["is_founder"]:
system_content = f"{core_identity}\nDynamic Memory: {mem_facts}\nActive Protocols: {active_rules}\n{TOOL_INSTRUCTIONS}"
else:
system_content = f"{core_identity}\nMemory: {mem_facts}\nRules: {active_rules}\n{TOOL_INSTRUCTIONS}"
# Build messages list
messages = [{"role": "system", "content": system_content}]
for m in history[-10:]:
messages.append({"role": m["role"], "content": m["content"]})
# Append current user prompt if not already in history
if not history or history[-1]["content"] != prompt:
messages.append({"role": "user", "content": prompt})
def generate():
full_response = ""
stream_buffer = ""
for chunk in generate_response_stream(messages, max_tokens, temperature):
full_response += chunk
stream_buffer += chunk
if "<tool>" in stream_buffer:
if "</tool>" in stream_buffer:
pattern = r"(<tool>.*?</tool>)"
match = re.search(pattern, stream_buffer, re.DOTALL)
if match:
complete_tag = match.group(0)
before_tag = stream_buffer[:match.start()]
after_tag = stream_buffer[match.end():]
if before_tag: yield f"data: {json.dumps({'content': before_tag})}\\n\\n"
# Yield a tool execution indicator to keep stream alive
tool_name_match = re.search(r"<tool>(.*?):", complete_tag)
tool_name = tool_name_match.group(1).strip() if tool_name_match else "unknown"
yield f"data: {json.dumps({'content': f'\\n\\n🔧 **NeuralAI is processing tool: {tool_name}...**\\n'})}\\n\\n"
results = process_tool_calls(complete_tag, current_user)
if results:
yield f"data: {json.dumps({'content': results})}\\n\\n"
full_response += results
stream_buffer = after_tag
continue
else:
yield f"data: {json.dumps({'content': stream_buffer})}\\n\\n"
stream_buffer = ""
if stream_buffer: yield f"data: {json.dumps({'content': stream_buffer})}\\n\\n"
# Save to database if conv_id provided
if conv_id:
db = get_db()
now = datetime.now(timezone.utc).isoformat()
db.execute("INSERT INTO messages (conversation_id, role, content, created_at) VALUES (?, ?, ?, ?)",
(conv_id, "user", prompt, now))
db.execute("INSERT INTO messages (conversation_id, role, content, created_at) VALUES (?, ?, ?, ?)",
(conv_id, "assistant", full_response, now))
db.execute("UPDATE conversations SET updated_at = ?, message_count = message_count + 2 WHERE id = ?", (now, conv_id))
db.commit()
db.close()
yield "data: [DONE]\\n\\n"
return Response(stream_with_context(generate()), mimetype="text/event-stream")
@app.route("/api/chat/json", methods=["POST"])
@token_required
def chat_json(current_user):
data = request.get_json(silent=True) or {}
prompt = data.get("prompt", "")
history = data.get("messages", [])
temperature = float(data.get("temperature", 0.7))
max_tokens = int(data.get("max_tokens", 512))
# Intent detection for image requests
if any(k in prompt.lower() for k in ["generate", "image", "draw", "picture", "photo"]):
return jsonify({"output": process_tool_calls(f"<tool>image_gen: {prompt}</tool>", current_user), "status": "success"})
# Fetch user context
db = get_db()
user = db.execute("SELECT * FROM users WHERE id = ?", (current_user,)).fetchone()
mem_rows = db.execute("SELECT fact FROM memory_facts WHERE user_id = ?", (current_user,)).fetchall()
rule_rows = db.execute("SELECT rule FROM active_rules WHERE user_id = ? AND active = 1", (current_user,)).fetchall()
db.close()
mem_facts = [row["fact"] for row in mem_rows]
active_rules = [row["rule"] for row in rule_rows]
# Core Identity (always included for all tiers)
core_identity = """IDENTITY: You are NeuralAI, a high-performance artificial intelligence engine.
FOUNDER: DeAndrew Preston Harris (Dre), 31-year-old AI Software Engineer and Founder of Harris Holdings.
BIO: Born Oct 27, 1994, in Memphis, TN. Raised in West Memphis, AR. Graduate of The Academies of West Memphis (Class of 2014). Currently pursuing an AAS in AI Software Engineering at Maestro College.
STRICT BOUNDARY: You are the AI. Dre is your human creator.
NEVER say "I am DeAndrew" or "I am Dre".
If asked who you are, respond: "I am NeuralAI, a production-grade AI system developed by De’Andrew Preston Harris."
TONE: Brilliant, professional, collaborative, and mission-aligned."""
if user and user["is_founder"]:
system_content = f"{core_identity}\nDynamic Memory: {mem_facts}\nActive Protocols: {active_rules}\n{TOOL_INSTRUCTIONS}"
else:
system_content = f"{core_identity}\nMemory: {mem_facts}\nRules: {active_rules}\n{TOOL_INSTRUCTIONS}"
# Build messages list
messages = [{"role": "system", "content": system_content}]
for m in history[-10:]:
messages.append({"role": m["role"], "content": m["content"]})
if not history or history[-1]["content"] != prompt:
messages.append({"role": "user", "content": prompt})
full_response = ""
for chunk in generate_response_stream(messages, max_tokens, temperature):
full_response += chunk
# Process tools in the full response if any
tool_results = process_tool_calls(full_response, current_user)
if tool_results:
full_response += tool_results
return jsonify({"output": full_response, "status": "success"})
# ====================
# TERMINAL API
# ====================
@app.route("/api/terminal/create", methods=["POST"])
@token_required
def create_terminal(current_user):
sid = uuid.uuid4().hex[:8]
terminal_sessions[sid] = {"user": current_user, "history": []}
return jsonify({"success": True, "session_id": sid})
@app.route("/api/terminal/<sid>/send", methods=["POST"])
@token_required
def send_terminal(current_user, sid):
if sid not in terminal_sessions:
return jsonify({"error": "Session not found"}), 404
cmd = request.json.get("command", "")
try:
# Run command safely
result = subprocess.run(cmd, shell=True, capture_output=True, text=True, timeout=15)
output = result.stdout + result.stderr
terminal_sessions[sid]["history"].append({"cmd": cmd, "out": output})
return jsonify({"success": True, "output": output})
except Exception as e:
return jsonify({"success": False, "error": str(e)})
@app.route("/api/terminal/<sid>/read", methods=["GET"])
@token_required
def read_terminal(current_user, sid):
if sid not in terminal_sessions:
return jsonify({"error": "Session not found"}), 404
return jsonify({"success": True, "history": terminal_sessions[sid]["history"]})
@app.route("/api/files", methods=["GET"])
@token_required
def list_files(current_user):
user_uploads = UPLOADS_DIR / current_user
user_uploads.mkdir(parents=True, exist_ok=True)
files = sorted([{"name": f.name, "type": "uploads"} for f in user_uploads.iterdir() if f.is_file()], key=lambda x: x["name"])
return jsonify({"success": True, "files": files})
@app.route("/api/files/<folder>/<path:filename>", methods=["GET"])
@token_required
def serve_file(current_user, folder, filename):
# Ensure users can only access their own uploads
# Right now, folder might just be 'uploads', but we serve from UPLOADS_DIR / current_user
user_uploads = UPLOADS_DIR / current_user
return send_from_directory(user_uploads, filename)
@app.route("/static/generated/<path:filename>")
def serve_generated(filename):
return send_from_directory(GENERATED_DIR, filename)
if __name__ == "__main__":
init_db()
threading.Thread(target=load_model).start()
app.run(host="0.0.0.0", port=PORT, threaded=True)
|