Spaces:
Sleeping
Sleeping
File size: 22,065 Bytes
407171a | 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 | """
InStatic CMS β AI Build Pipeline
Daviddolor/instatic-cms on HuggingFace Spaces
Pipeline: Prompt β Analyze β Plan β Split β Code β Validate β AutoFix β Deploy
Docs brain: WordPress + GitHub + Android + FastAPI markdown
"""
import os, json, asyncio, time, re
from pathlib import Path
from contextlib import asynccontextmanager
from typing import AsyncGenerator
from fastapi import FastAPI, HTTPException, BackgroundTasks
from fastapi.middleware.cors import CORSMiddleware
from fastapi.responses import StreamingResponse
from pydantic import BaseModel, Field
from typing import Optional, Literal
import httpx
# ββ Docs Brain Loader ββββββββββββββββββββββββββββββββββββββββββββββββββββββ
DOCS_DIR = Path(__file__).parent / "docs_brain"
def load_docs() -> dict[str, str]:
"""Load all markdown docs into memory at startup."""
docs = {}
for md_file in DOCS_DIR.glob("*.md"):
docs[md_file.stem] = md_file.read_text(encoding="utf-8")
return docs
DOCS: dict[str, str] = {}
# ββ LLM Provider Fallback Chain βββββββββββββββββββββββββββββββββββββββββββ
PROVIDERS = [
{
"name": "groq",
"url": "https://api.groq.com/openai/v1/chat/completions",
"key_env": "GROQ_API_KEY",
"model": "llama-3.3-70b-versatile",
"max_tokens": 8192,
},
{
"name": "openrouter",
"url": "https://openrouter.ai/api/v1/chat/completions",
"key_env": "OPENROUTER_API_KEY",
"model": "meta-llama/llama-3.3-70b-instruct",
"max_tokens": 8192,
},
{
"name": "cerebras",
"url": "https://api.cerebras.ai/v1/chat/completions",
"key_env": "CEREBRAS_API_KEY",
"model": "llama3.1-70b",
"max_tokens": 8192,
},
]
async def call_llm(messages: list, max_tokens: int = 4096, json_mode: bool = False) -> str:
"""Call LLM with GroqβOpenRouterβCerebras fallback."""
for provider in PROVIDERS:
key = os.getenv(provider["key_env"])
if not key:
continue
try:
body = {
"model": provider["model"],
"max_tokens": min(max_tokens, provider["max_tokens"]),
"messages": messages,
"temperature": 0.2,
}
if json_mode:
body["response_format"] = {"type": "json_object"}
async with httpx.AsyncClient(timeout=90) as client:
resp = await client.post(
provider["url"],
headers={"Authorization": f"Bearer {key}"},
json=body,
)
resp.raise_for_status()
return resp.json()["choices"][0]["message"]["content"]
except Exception as e:
print(f"[LLM:{provider['name']}] failed: {e}")
continue
raise RuntimeError("All LLM providers exhausted β check API keys")
async def stream_llm(messages: list, max_tokens: int = 4096) -> AsyncGenerator[str, None]:
"""Streaming LLM call."""
for provider in PROVIDERS:
key = os.getenv(provider["key_env"])
if not key:
continue
try:
async with httpx.AsyncClient(timeout=120) as client:
async with client.stream(
"POST",
provider["url"],
headers={"Authorization": f"Bearer {key}"},
json={
"model": provider["model"],
"max_tokens": max_tokens,
"messages": messages,
"stream": True,
"temperature": 0.2,
},
) as response:
response.raise_for_status()
async for line in response.aiter_lines():
if line.startswith("data: "):
chunk = line[6:]
if chunk.strip() == "[DONE]":
return
try:
data = json.loads(chunk)
content = data["choices"][0]["delta"].get("content", "")
if content:
yield content
except Exception:
pass
return # success β don't try next provider
except Exception as e:
print(f"[STREAM:{provider['name']}] failed: {e}")
continue
# ββ Pipeline Stages ββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
def get_doc_context(target: str) -> str:
"""Build relevant doc context based on build target."""
docs_map = {
"website": ["fastapi", "github"],
"wordpress": ["wordpress", "github"],
"android": ["android", "github"],
"api": ["fastapi", "github"],
"fullstack": ["fastapi", "github", "wordpress", "android"],
}
keys = docs_map.get(target, ["fastapi", "github"])
parts = []
for key in keys:
if key in DOCS:
# Include first 3000 chars of each doc to stay within context
parts.append(f"## {key.upper()} DOCS REFERENCE\n{DOCS[key][:3000]}")
return "\n\n---\n\n".join(parts)
async def stage_analyze(prompt: str, target: str) -> dict:
"""Stage 1: Analyze the prompt and understand requirements."""
doc_ctx = get_doc_context(target)
messages = [
{
"role": "system",
"content": f"""You are an expert software architect. Analyze user requirements and extract structured information.
Always respond with valid JSON only.
DOCUMENTATION CONTEXT:
{doc_ctx}
""",
},
{
"role": "user",
"content": f"""Analyze this build request and return JSON:
PROMPT: {prompt}
TARGET: {target}
Return JSON with these fields:
{{
"project_type": "website|api|android|wordpress",
"project_name": "kebab-case-name",
"description": "one sentence description",
"features": ["list", "of", "features"],
"tech_stack": ["list", "of", "technologies"],
"complexity": "simple|medium|complex",
"ui_style": "description of visual style or null",
"api_endpoints": ["list of needed endpoints or empty"],
"data_models": ["list of data entities"],
"has_auth": true|false,
"has_database": true|false,
"deployment_target": "cloudflare|render|hf-spaces|playstore|vercel"
}}
""",
},
]
raw = await call_llm(messages, max_tokens=1024, json_mode=True)
try:
return json.loads(raw)
except Exception:
# Best-effort extraction
return {"project_type": target, "description": prompt[:100], "features": [], "tech_stack": []}
async def stage_plan(analysis: dict, prompt: str) -> dict:
"""Stage 2: Create a detailed build plan with file list."""
messages = [
{
"role": "system",
"content": "You are a software architect. Create a detailed file-by-file build plan. Return valid JSON only.",
},
{
"role": "user",
"content": f"""Based on this analysis, create a build plan:
ANALYSIS: {json.dumps(analysis, indent=2)}
ORIGINAL PROMPT: {prompt}
Return JSON:
{{
"plan_summary": "2-3 sentence build plan",
"files": [
{{
"path": "relative/file/path",
"type": "html|css|js|python|kotlin|json|yaml|md",
"description": "what this file does",
"priority": 1
}}
],
"build_order": ["ordered", "list", "of", "file", "paths"],
"dependencies": ["npm package or pip package"],
"env_vars": ["REQUIRED_ENV_VAR"],
"estimated_files": 5
}}
""",
},
]
raw = await call_llm(messages, max_tokens=2048, json_mode=True)
try:
return json.loads(raw)
except Exception:
return {"plan_summary": "Generating files...", "files": [], "build_order": []}
async def stage_generate_file(
file_info: dict,
analysis: dict,
plan: dict,
prompt: str,
target: str,
previously_generated: list[dict],
) -> str:
"""Stage 3: Generate actual file content."""
doc_ctx = get_doc_context(target)
context_summary = "\n".join(
f"- {f['path']}: {f['description']}" for f in previously_generated[-3:]
)
messages = [
{
"role": "system",
"content": f"""You are an expert {file_info['type']} developer.
Generate complete, production-ready file content.
Output ONLY the raw file content β no markdown fences, no explanations.
DOCS REFERENCE:
{doc_ctx[:2000]}
""",
},
{
"role": "user",
"content": f"""Generate the complete content for this file:
FILE: {file_info['path']}
TYPE: {file_info['type']}
PURPOSE: {file_info['description']}
PROJECT: {analysis.get('project_name', 'project')}
STACK: {', '.join(analysis.get('tech_stack', []))}
FEATURES: {', '.join(analysis.get('features', []))}
UI STYLE: {analysis.get('ui_style', 'clean, modern')}
ALREADY GENERATED:
{context_summary}
ORIGINAL REQUEST: {prompt}
Generate the COMPLETE file content now:
""",
},
]
return await call_llm(messages, max_tokens=4096)
async def stage_validate(file_path: str, content: str, file_type: str) -> dict:
"""Stage 4: Validate generated code for correctness."""
messages = [
{
"role": "system",
"content": "You are a code reviewer. Find real bugs and errors. Return JSON only.",
},
{
"role": "user",
"content": f"""Review this {file_type} file for bugs:
FILE: {file_path}
CONTENT:
{content[:3000]}
Return JSON:
{{
"valid": true|false,
"score": 0-100,
"errors": ["list of actual bugs"],
"warnings": ["list of style/perf issues"],
"fix_instructions": "if not valid: specific instructions to fix"
}}
""",
},
]
raw = await call_llm(messages, max_tokens=512, json_mode=True)
try:
return json.loads(raw)
except Exception:
return {"valid": True, "score": 80, "errors": [], "warnings": []}
async def stage_autofix(
file_path: str, content: str, file_type: str, errors: list, fix_instructions: str
) -> str:
"""Stage 5: Auto-fix validation errors."""
messages = [
{
"role": "system",
"content": "You are a code fixer. Fix the bugs and return only the corrected file content.",
},
{
"role": "user",
"content": f"""Fix the bugs in this {file_type} file:
FILE: {file_path}
ERRORS TO FIX:
{chr(10).join(f'- {e}' for e in errors)}
INSTRUCTIONS: {fix_instructions}
CURRENT CONTENT:
{content[:3000]}
Return ONLY the corrected file content:
""",
},
]
return await call_llm(messages, max_tokens=4096)
async def stage_final_validate(files: list[dict], analysis: dict) -> dict:
"""Stage 6: Final cross-file validation."""
file_list = "\n".join(f"- {f['path']}: {f['description']}" for f in files)
messages = [
{
"role": "system",
"content": "You are a senior developer doing final review. Return JSON only.",
},
{
"role": "user",
"content": f"""Final validation of this build:
PROJECT: {analysis.get('project_name')}
TYPE: {analysis.get('project_type')}
FILES GENERATED:
{file_list}
Check:
1. Are all required files present?
2. Is anything missing for deployment?
3. Are imports/dependencies consistent?
Return JSON:
{{
"ready_to_deploy": true|false,
"missing_files": ["list or empty"],
"deployment_steps": ["step 1", "step 2"],
"summary": "brief summary of what was built"
}}
""",
},
]
raw = await call_llm(messages, max_tokens=512, json_mode=True)
try:
return json.loads(raw)
except Exception:
return {"ready_to_deploy": True, "missing_files": [], "deployment_steps": [], "summary": "Build complete"}
# ββ In-memory job store ββββββββββββββββββββββββββββββββββββββββββββββββββββ
JOBS: dict[str, dict] = {}
async def run_pipeline(job_id: str, prompt: str, target: str):
"""Full pipeline runner β updates JOBS[job_id] as it progresses."""
job = JOBS[job_id]
job["status"] = "running"
job["stages"] = []
def log(stage: str, msg: str, data: dict | None = None):
entry = {"stage": stage, "message": msg, "ts": time.time()}
if data:
entry["data"] = data
job["stages"].append(entry)
print(f"[{job_id}] [{stage}] {msg}")
try:
# ββ Stage 1: Analyze ββ
log("analyze", "Analyzing requirements...")
analysis = await stage_analyze(prompt, target)
job["analysis"] = analysis
log("analyze", "Analysis complete", analysis)
# ββ Stage 2: Plan ββ
log("plan", "Creating build plan...")
plan = await stage_plan(analysis, prompt)
job["plan"] = plan
log("plan", f"Plan ready β {len(plan.get('files', []))} files", plan)
# ββ Stage 3: Generate files ββ
files_to_generate = plan.get("files", [])
if not files_to_generate:
# Fallback: generate a single index.html
files_to_generate = [
{"path": "index.html", "type": "html", "description": "Main page", "priority": 1}
]
generated_files: list[dict] = []
job["files"] = []
for i, file_info in enumerate(files_to_generate[:10]): # Cap at 10 files
log("generate", f"Generating {file_info['path']} ({i+1}/{len(files_to_generate)})...")
try:
content = await stage_generate_file(
file_info, analysis, plan, prompt, target, generated_files
)
# ββ Stage 4: Validate ββ
log("validate", f"Validating {file_info['path']}...")
validation = await stage_validate(file_info["path"], content, file_info["type"])
# ββ Stage 5: AutoFix if needed ββ
if not validation.get("valid", True) and validation.get("errors"):
log("autofix", f"Auto-fixing {file_info['path']}...")
content = await stage_autofix(
file_info["path"],
content,
file_info["type"],
validation["errors"],
validation.get("fix_instructions", "Fix all errors"),
)
log("autofix", f"Fixed {file_info['path']}")
file_result = {
"path": file_info["path"],
"type": file_info["type"],
"description": file_info["description"],
"content": content,
"validation": validation,
"fixed": not validation.get("valid", True),
}
generated_files.append(file_result)
job["files"].append(file_result)
log("generate", f"β {file_info['path']} (score: {validation.get('score', 80)})")
except Exception as e:
log("generate", f"β {file_info['path']}: {e}")
# ββ Stage 6: Final Validation ββ
log("final_validate", "Running final validation...")
final = await stage_final_validate(generated_files, analysis)
job["final_validation"] = final
log("final_validate", final.get("summary", "Complete"), final)
job["status"] = "complete"
job["completed_at"] = time.time()
except Exception as e:
job["status"] = "failed"
job["error"] = str(e)
log("error", f"Pipeline failed: {e}")
# ββ FastAPI App ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
@asynccontextmanager
async def lifespan(app: FastAPI):
global DOCS
DOCS = load_docs()
print(f"β
Docs brain loaded: {list(DOCS.keys())}")
yield
app = FastAPI(
title="InStatic CMS",
description="AI-powered build pipeline with WordPress, GitHub, Android, and FastAPI docs brain",
version="1.0.0",
lifespan=lifespan,
)
app.add_middleware(
CORSMiddleware,
allow_origins=["*"],
allow_credentials=True,
allow_methods=["*"],
allow_headers=["*"],
)
# ββ Schemas ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
class BuildRequest(BaseModel):
prompt: str = Field(..., min_length=10, max_length=4000, description="What to build")
target: Literal["website", "wordpress", "android", "api", "fullstack"] = "website"
class ChatRequest(BaseModel):
messages: list[dict]
stream: bool = False
# ββ Routes ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
@app.get("/health")
async def health():
return {
"status": "ok",
"service": "instatic-cms",
"docs_loaded": list(DOCS.keys()),
"providers": [p["name"] for p in PROVIDERS if os.getenv(p["key_env"])],
}
@app.get("/docs-brain")
async def list_docs():
"""List available documentation brain files."""
return {
"docs": [
{"name": k, "size": len(v), "preview": v[:200]}
for k, v in DOCS.items()
]
}
@app.get("/docs-brain/{doc_name}")
async def get_doc(doc_name: str):
"""Get a specific doc from the brain."""
if doc_name not in DOCS:
raise HTTPException(404, f"Doc '{doc_name}' not found. Available: {list(DOCS.keys())}")
return {"name": doc_name, "content": DOCS[doc_name]}
@app.post("/build")
async def start_build(req: BuildRequest, background_tasks: BackgroundTasks):
"""Start an AI build pipeline job. Returns job_id immediately."""
import uuid
job_id = str(uuid.uuid4())[:8]
JOBS[job_id] = {
"id": job_id,
"prompt": req.prompt,
"target": req.target,
"status": "queued",
"created_at": time.time(),
"stages": [],
"files": [],
}
background_tasks.add_task(run_pipeline, job_id, req.prompt, req.target)
return {"job_id": job_id, "status": "queued", "message": "Pipeline started"}
@app.get("/build/{job_id}")
async def get_build(job_id: str):
"""Get build job status and results."""
if job_id not in JOBS:
raise HTTPException(404, f"Job {job_id} not found")
return JOBS[job_id]
@app.get("/build/{job_id}/stream")
async def stream_build(job_id: str):
"""Stream build progress as SSE."""
if job_id not in JOBS:
raise HTTPException(404, f"Job {job_id} not found")
async def event_stream():
last_stage_count = 0
while True:
job = JOBS.get(job_id, {})
stages = job.get("stages", [])
# Send new stages
for stage in stages[last_stage_count:]:
yield f"data: {json.dumps(stage)}\n\n"
last_stage_count = len(stages)
if job.get("status") in ("complete", "failed"):
yield f"data: {json.dumps({'stage': 'done', 'status': job['status'], 'job': job})}\n\n"
break
await asyncio.sleep(0.5)
return StreamingResponse(event_stream(), media_type="text/event-stream",
headers={"Cache-Control": "no-cache", "X-Accel-Buffering": "no"})
@app.get("/builds")
async def list_builds():
"""List all build jobs."""
return {
"builds": [
{
"id": j["id"],
"prompt": j["prompt"][:80],
"target": j["target"],
"status": j["status"],
"files": len(j.get("files", [])),
"created_at": j["created_at"],
}
for j in sorted(JOBS.values(), key=lambda x: x["created_at"], reverse=True)
]
}
@app.post("/chat")
async def chat(req: ChatRequest):
"""Direct LLM chat with docs brain context."""
# Inject docs as system context
doc_names = [m.get("doc") for m in req.messages if isinstance(m, dict) and m.get("doc")]
doc_ctx = ""
for name in doc_names:
if name in DOCS:
doc_ctx += f"\n\n## {name.upper()} DOCS:\n{DOCS[name][:2000]}"
system = f"You are an expert developer assistant for the DOLOR3V / Traveler Dev Studio ecosystem. You have access to documentation for WordPress, GitHub, Android, and FastAPI.{doc_ctx}"
messages = [{"role": "system", "content": system}] + [
m for m in req.messages if m.get("role") in ("user", "assistant")
]
if req.stream:
async def gen():
async for chunk in stream_llm(messages):
yield f"data: {json.dumps({'content': chunk})}\n\n"
yield "data: [DONE]\n\n"
return StreamingResponse(gen(), media_type="text/event-stream")
content = await call_llm(messages)
return {"content": content}
@app.post("/analyze")
async def analyze_prompt(req: BuildRequest):
"""Just run the analysis stage β useful for previewing before building."""
analysis = await stage_analyze(req.prompt, req.target)
plan = await stage_plan(analysis, req.prompt)
return {"analysis": analysis, "plan": plan}
if __name__ == "__main__":
import uvicorn
uvicorn.run("app:app", host="0.0.0.0", port=7860, reload=False)
|