File size: 5,655 Bytes
c705438 532a35b 512651f 707e062 c705438 512651f c705438 512651f c705438 707e062 512651f c705438 707e062 c705438 532a35b c705438 532a35b 512651f 532a35b 512651f b5d7148 532a35b 512651f 532a35b 512651f c705438 512651f c705438 512651f b5d7148 512651f 532a35b 512651f 532a35b b5d7148 512651f b5d7148 532a35b 512651f 532a35b b5d7148 512651f 532a35b 512651f 532a35b c705438 512651f c705438 512651f c705438 512651f c705438 532a35b 512651f 707e062 532a35b 707e062 512651f 532a35b 512651f 532a35b 707e062 512651f b5d7148 532a35b 512651f c705438 512651f c705438 512651f c705438 512651f c705438 532a35b c705438 512651f 532a35b 512651f c705438 532a35b 512651f 532a35b 512651f 532a35b c705438 b5d7148 512651f b5d7148 532a35b 512651f 532a35b 512651f 532a35b c705438 512651f c705438 532a35b c705438 512651f c705438 512651f c705438 532a35b c705438 532a35b c705438 512651f c705438 512651f c705438 512651f c705438 532a35b c705438 512651f c705438 512651f 532a35b c705438 512651f c705438 512651f c705438 512651f c705438 512651f c705438 512651f c705438 512651f 532a35b 512651f 532a35b 512651f 532a35b 512651f 532a35b 512651f 532a35b 512651f c705438 532a35b 512651f 532a35b c705438 512651f c705438 512651f c705438 512651f c705438 b5d7148 512651f c705438 532a35b c705438 532a35b c705438 532a35b c705438 512651f c705438 532a35b 512651f 532a35b 512651f | 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 | import os
import uuid
import json
import time
import requests
from pathlib import Path
from fastapi import FastAPI, Request
from fastapi.responses import JSONResponse, HTMLResponse
from fastapi.templating import Jinja2Templates
# =========================
# APP CORE
# =========================
app = FastAPI(title="PyRunner PAO v5 SaaS Core", version="5.0")
BASE_DIR = Path(__file__).resolve().parent
# SAFE TEMPLATE LOADING (prevents your Jinja crash)
TEMPLATE_DIR = BASE_DIR / "templates"
templates = Jinja2Templates(directory=str(TEMPLATE_DIR))
# =========================
# CONFIG
# =========================
OLLAMA_URL = os.getenv("OLLAMA_URL", "http://localhost:11434")
MODELS = {
"planner": "qwen2.5:1.5b",
"worker": "qwen2.5-coder:1.5b",
"critic": "deepseek-coder:1.3b",
"synth": "llama3.2:1b"
}
# =========================
# MEMORY SYSTEM (replace later with Supabase/Postgres)
# =========================
MEMORY = {}
def memory_store(task_id, data):
MEMORY[task_id] = data
def memory_get(task_id):
return MEMORY.get(task_id, {})
# =========================
# EVENT SYSTEM (lightweight observability)
# =========================
EVENTS = []
def emit(event_type, payload):
EVENTS.append({
"id": str(uuid.uuid4()),
"type": event_type,
"payload": payload,
"ts": time.time()
})
def drain_events():
data = EVENTS[:]
EVENTS.clear()
return data
# =========================
# LLM CALL
# =========================
def call_llm(prompt, model):
try:
r = requests.post(
f"{OLLAMA_URL}/api/generate",
json={
"model": model,
"prompt": prompt,
"stream": False
},
timeout=120
)
return r.json().get("response", "")
except Exception as e:
return f"LLM_ERROR: {str(e)}"
# =========================
# DAG PLANNER (FIXED JSON SAFETY)
# =========================
def plan_task(task: str):
prompt = f"""
Return ONLY valid JSON.
Break task into steps:
Task: {task}
Format:
[
"step 1",
"step 2",
"step 3"
]
"""
raw = call_llm(prompt, MODELS["planner"])
try:
steps = json.loads(raw)
# ensure list safety
if isinstance(steps, list):
return [{"step": s} for s in steps]
except:
pass
# fallback (always safe)
return [{"step": task}]
# =========================
# TOOL SYSTEM
# =========================
def tool_calculator(expr: str):
try:
return eval(expr, {"__builtins__": {}})
except:
return "calc_error"
TOOLS = {
"calculator": tool_calculator
}
def run_tools(text: str):
if "calc:" in text:
expr = text.replace("calc:", "").strip()
return str(TOOLS["calculator"](expr))
return text
# =========================
# WORKER NODE
# =========================
def worker(step: str, context: str):
prompt = f"""
Execute this instruction clearly:
Step: {step}
Context:
{context}
"""
return call_llm(prompt, MODELS["worker"])
# =========================
# CRITIC (QUALITY CHECK)
# =========================
def critic(task, output):
prompt = f"""
Rate and improve:
Task: {task}
Output: {output}
Return short improvement suggestion.
"""
return call_llm(prompt, MODELS["critic"])
# =========================
# SYNTHESIZER
# =========================
def synth(outputs):
combined = "\n".join(outputs)
prompt = f"""
Create final clean response:
{combined}
"""
return call_llm(prompt, MODELS["synth"])
# =========================
# EXECUTION ENGINE
# =========================
def run_dag(task: str):
task_id = str(uuid.uuid4())
emit("task_started", {"task_id": task_id, "task": task})
dag = plan_task(task)
results = []
context = task
for node in dag:
step = node["step"]
emit("step_started", {"step": step})
raw = worker(step, context)
processed = run_tools(raw)
_crit = critic(task, processed)
results.append(processed)
context = processed
emit("step_done", {
"step": step,
"output": processed,
"critique": _crit
})
final = synth(results)
memory_store(task_id, {
"task": task,
"result": final,
"steps": results
})
emit("task_done", {"task_id": task_id})
return {
"task_id": task_id,
"dag": dag,
"events": drain_events(),
"final": final
}
# =========================
# API ROUTES
# =========================
@app.get("/", response_class=HTMLResponse)
async def home(request: Request):
# SAFE CHECK: prevents template crash
if not (TEMPLATE_DIR / "index.html").exists():
return HTMLResponse("<h1>Missing index.html</h1>", status_code=500)
return templates.TemplateResponse("index.html", {"request": request})
@app.get("/builder", response_class=HTMLResponse)
async def builder(request: Request):
if not (TEMPLATE_DIR / "builder.html").exists():
return HTMLResponse("<h1>Missing builder.html</h1>", status_code=500)
return templates.TemplateResponse("builder.html", {"request": request})
@app.post("/api/run")
async def run(request: Request):
body = await request.json()
task = body.get("task", "")
if not task:
return JSONResponse({"error": "missing task"}, status_code=400)
return run_dag(task)
@app.get("/api/memory/{task_id}")
def get_memory(task_id: str):
return memory_get(task_id)
@app.get("/api/events")
def get_events():
return {"events": EVENTS} |