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: 13,562 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 | #!/usr/bin/env python3
"""
NeuralAI Tools Service
- Isolated sandbox for code execution
- Terminal access
- File operations
- Image generation (via Zo API)
- Exposes tools API on port 7002
"""
import os
import sys
import json
import subprocess
import tempfile
import asyncio
import requests
from pathlib import Path
from flask import Flask, Response, jsonify, request, send_from_directory
from datetime import datetime
from typing import Dict, Any
# Configuration
PORT = int(os.environ.get("TOOLS_PORT", "7002"))
STORAGE_PATH = os.environ.get("STORAGE_PATH", "/home/workspace/NeuralAI")
IMAGE_PATH = os.environ.get("IMAGE_PATH", "/home/workspace/NeuralAI/images")
MAX_OUTPUT = 10000
DEFAULT_TIMEOUT = 30
# Zo API configuration
ZO_API_URL = "https://api.zo.computer"
ZO_TOKEN = os.environ.get("ZO_CLIENT_IDENTITY_TOKEN", "")
app = Flask(__name__)
# Ensure image directory exists
Path(IMAGE_PATH).mkdir(parents=True, exist_ok=True)
# ====================
# CODE SANDBOX
# ====================
def run_code(code: str, language: str = "python", timeout: int = DEFAULT_TIMEOUT) -> Dict[str, Any]:
"""Execute code in sandboxed environment."""
import time
start = time.time()
# Write to temp file
suffix = ".py" if language == "python" else ".js"
with tempfile.NamedTemporaryFile(mode='w', suffix=suffix, delete=False, encoding='utf-8') as f:
f.write(code)
temp_path = f.name
try:
if language == "python":
result = subprocess.run(
['python3', temp_path],
capture_output=True,
text=True,
timeout=timeout,
env={'PYTHONDONTWRITEBYTECODE': '1', 'PYTHONUNBUFFERED': '1'}
)
else: # javascript
result = subprocess.run(
['node', temp_path],
capture_output=True,
text=True,
timeout=timeout
)
return {
"success": result.returncode == 0,
"output": result.stdout[:MAX_OUTPUT],
"error": result.stderr[:MAX_OUTPUT] if result.returncode != 0 else "",
"exit_code": result.returncode,
"execution_time": time.time() - start
}
except subprocess.TimeoutExpired:
return {
"success": False,
"output": "",
"error": f"Timeout after {timeout}s",
"exit_code": -1,
"execution_time": timeout
}
except Exception as e:
return {
"success": False,
"output": "",
"error": str(e),
"exit_code": -1,
"execution_time": time.time() - start
}
finally:
try:
os.unlink(temp_path)
except:
pass
def run_shell(command: str, timeout: int = DEFAULT_TIMEOUT) -> Dict[str, Any]:
"""Execute shell command."""
import time
start = time.time()
try:
result = subprocess.run(
['bash', '-c', command],
capture_output=True,
text=True,
timeout=timeout,
cwd=tempfile.gettempdir()
)
return {
"success": result.returncode == 0,
"output": result.stdout[:MAX_OUTPUT],
"error": result.stderr[:MAX_OUTPUT] if result.returncode != 0 else "",
"exit_code": result.returncode,
"execution_time": time.time() - start
}
except subprocess.TimeoutExpired:
return {
"success": False,
"output": "",
"error": f"Timeout after {timeout}s",
"exit_code": -1,
"execution_time": timeout
}
except Exception as e:
return {
"success": False,
"output": "",
"error": str(e),
"exit_code": -1,
"execution_time": time.time() - start
}
# ====================
# IMAGE GENERATION
# ====================
def generate_image_via_zo(prompt: str, output_dir: str = IMAGE_PATH) -> Dict[str, Any]:
"""
Generate an image using Zo's image generation capability.
For real AI-generated images, use the main Zo chat interface.
"""
try:
import time
from PIL import Image, ImageDraw, ImageFont
import random
import math
timestamp = int(time.time())
filename = f"generated_{timestamp}.png"
filepath = Path(output_dir) / filename
# Create a visually appealing placeholder with gradient background
img = Image.new('RGB', (512, 512))
draw = ImageDraw.Draw(img)
# Create gradient background (simulating a scene)
for y in range(512):
# Gradient from dark blue to lighter blue (like a sky)
r = int(20 + (y / 512) * 60)
g = int(20 + (y / 512) * 80)
b = int(60 + (y / 512) * 100)
draw.line([(0, y), (512, y)], fill=(r, g, b))
# Add some "scene" elements based on prompt keywords
# Sun/moon for sky themes
if any(word in prompt.lower() for word in ['sun', 'sunset', 'moon', 'sky', 'star']):
# Draw a circle (sun/moon)
cx, cy = 256, 150
for r in range(50, 0, -1):
color = (255, 200, 100) if 'sun' in prompt.lower() else (240, 240, 220)
draw.ellipse([cx-r, cy-r, cx+r, cy+r], fill=color)
# Mountains for landscape themes
if any(word in prompt.lower() for word in ['mountain', 'landscape', 'hill', 'peak']):
# Draw simple mountain shapes
points1 = [(0, 400), (150, 200), (300, 350), (512, 180), (512, 512), (0, 512)]
points2 = [(0, 350), (200, 220), (350, 300), (512, 250), (512, 512), (0, 512)]
draw.polygon(points1, fill=(60, 50, 70))
draw.polygon(points2, fill=(80, 70, 90))
# Water for ocean/sea themes
if any(word in prompt.lower() for word in ['ocean', 'sea', 'water', 'lake', 'river']):
for y in range(400, 512):
r = int(20 + random.randint(0, 20))
g = int(60 + random.randint(0, 40))
b = int(120 + random.randint(0, 30))
draw.line([(0, y), (512, y)], fill=(r, g, b))
# Add prompt text at bottom
text = f"Concept: {prompt[:40]}..."
draw.text((20, 460), text, fill=(200, 200, 200))
draw.text((20, 480), "Generated by NeuralAI (placeholder)", fill=(150, 150, 150))
# Save
filepath.parent.mkdir(parents=True, exist_ok=True)
img.save(filepath)
return {
"success": True,
"image_path": str(filepath),
"image_url": f"/images/{filename}",
"prompt": prompt,
"placeholder": True,
"note": "For real AI-generated images, ask Zo directly or enable spending in billing settings"
}
except Exception as e:
return {
"success": False,
"image_path": "",
"image_url": "",
"prompt": prompt,
"error": str(e)
}
def create_placeholder_image(prompt: str, filepath: Path, error: str = "") -> Dict[str, Any]:
"""Create a placeholder image with text using PIL."""
try:
from PIL import Image, ImageDraw, ImageFont
# Create image
img = Image.new('RGB', (512, 512), color=(20, 20, 30))
draw = ImageDraw.Draw(img)
# Add prompt text
y = 40
words = prompt.split()
line = ""
for word in words:
test_line = line + word + " "
if len(test_line) > 35:
draw.text((20, y), line, fill=(150, 150, 150))
y += 25
line = word + " "
else:
line = test_line
if line:
draw.text((20, y), line, fill=(150, 150, 150))
# Add note
draw.text((20, 450), "Image generation placeholder", fill=(80, 80, 80))
# Save
filepath.parent.mkdir(parents=True, exist_ok=True)
img.save(filepath)
return {
"success": True,
"image_path": str(filepath),
"image_url": f"/images/{filepath.name}",
"prompt": prompt,
"placeholder": True,
"error": error
}
except ImportError:
# PIL not available - return error
return {
"success": False,
"image_path": "",
"image_url": "",
"prompt": prompt,
"error": "Image generation requires PIL. Install with: pip install Pillow"
}
# ====================
# FILE MANAGER
# ====================
def list_files(directory: str = "") -> Dict[str, Any]:
"""List files in NeuralAI storage."""
try:
base = Path(STORAGE_PATH)
target = base / directory if directory else base
if not target.exists():
return {"success": False, "error": f"Directory not found: {directory}"}
files = []
for item in target.iterdir():
files.append({
"name": item.name,
"type": "directory" if item.is_dir() else "file",
"size": item.stat().st_size if item.is_file() else 0,
"modified": datetime.fromtimestamp(item.stat().st_mtime).isoformat()
})
return {
"success": True,
"path": str(target),
"files": sorted(files, key=lambda x: (x["type"], x["name"]))
}
except Exception as e:
return {"success": False, "error": str(e)}
def read_file(filepath: str) -> Dict[str, Any]:
"""Read a file from NeuralAI storage."""
try:
base = Path(STORAGE_PATH)
target = base / filepath
if not target.exists():
return {"success": False, "error": f"File not found: {filepath}"}
with open(target, 'r', encoding='utf-8') as f:
content = f.read()
return {
"success": True,
"path": str(target),
"content": content,
"size": len(content)
}
except Exception as e:
return {"success": False, "error": str(e)}
def write_file(filepath: str, content: str) -> Dict[str, Any]:
"""Write a file to NeuralAI storage."""
try:
base = Path(STORAGE_PATH)
target = base / filepath
target.parent.mkdir(parents=True, exist_ok=True)
with open(target, 'w', encoding='utf-8') as f:
f.write(content)
return {
"success": True,
"path": str(target),
"size": len(content)
}
except Exception as e:
return {"success": False, "error": str(e)}
# ====================
# API ENDPOINTS
# ====================
@app.route("/health", methods=["GET"])
def health():
"""Health check."""
return jsonify({
"status": "ready",
"port": PORT,
"storage": STORAGE_PATH,
"images": IMAGE_PATH
})
@app.route("/images/<filename>", methods=["GET"])
def serve_image(filename):
"""Serve generated images."""
return send_from_directory(IMAGE_PATH, filename)
@app.route("/execute/code", methods=["POST"])
def execute_code():
"""Execute code in sandbox."""
data = request.get_json()
code = data.get("code", "")
language = data.get("language", "python")
timeout = data.get("timeout", DEFAULT_TIMEOUT)
result = run_code(code, language, timeout)
return jsonify(result)
@app.route("/execute/shell", methods=["POST"])
def execute_shell():
"""Execute shell command."""
data = request.get_json()
command = data.get("command", "")
timeout = data.get("timeout", DEFAULT_TIMEOUT)
result = run_shell(command, timeout)
return jsonify(result)
@app.route("/generate/image", methods=["POST"])
def generate_image():
"""Generate an image from a prompt."""
data = request.get_json()
prompt = data.get("prompt", "")
output_dir = data.get("output_dir", IMAGE_PATH)
if not prompt:
return jsonify({"success": False, "error": "No prompt provided"}), 400
result = generate_image_via_zo(prompt, output_dir)
return jsonify(result)
@app.route("/files/list", methods=["GET", "POST"])
def files_list():
"""List files in storage."""
if request.method == "POST":
data = request.get_json()
directory = data.get("directory", "")
else:
directory = request.args.get("directory", "")
result = list_files(directory)
return jsonify(result)
@app.route("/files/read", methods=["POST"])
def files_read():
"""Read a file."""
data = request.get_json()
filepath = data.get("path", "")
result = read_file(filepath)
return jsonify(result)
@app.route("/files/write", methods=["POST"])
def files_write():
"""Write a file."""
data = request.get_json()
filepath = data.get("path", "")
content = data.get("content", "")
result = write_file(filepath, content)
return jsonify(result)
print(f"[Tools Service] Starting on port {PORT}")
print(f"[Tools Service] Storage: {STORAGE_PATH}")
print(f"[Tools Service] Images: {IMAGE_PATH}")
if __name__ == "__main__":
app.run(host="0.0.0.0", port=PORT, debug=False, threaded=True)
|