Spaces:
Running
Running
File size: 12,562 Bytes
f18ef61 | 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 | from fastapi import FastAPI,UploadFile,File,Body
from fastapi.responses import FileResponse,StreamingResponse
from fastapi.staticfiles import StaticFiles
from fastapi.middleware.cors import CORSMiddleware
import aiofiles
import asyncio
import json
from llm import chat_llm
import uvicorn
from chatbot import chatbot_followup
import uuid
from workflow import pipeline
import os
os.makedirs("uploads", exist_ok=True)
os.makedirs("outputs", exist_ok=True)
app=FastAPI()
app.mount("/templates",StaticFiles(directory="templates"))
jobs={}
app.add_middleware(
CORSMiddleware,
allow_origins=["*"],
allow_methods=["*"],
allow_headers=["*"],
)
@app.get("/")
def home():
return FileResponse("templates/index.html")
@app.get("/sample_sales")
def get_sample():
return FileResponse("templates/sample_sales.csv",media_type="text/csv",filename="sample_sales.csv")
async def workflow_runner(job_id: str, filepath: str):
try:
jobs[job_id]["status"] = "processing"
config = {"configurable": {"thread_id": job_id}, "recursion_limit": 100}
# Start the pipeline - it will stop at check_report due to interrupt_before
result = await asyncio.to_thread(
pipeline.invoke,
{'filepath': filepath},
config=config
)
# Loop to handle multiple approval steps
while True:
# Check what node we're paused at
state = await asyncio.to_thread(pipeline.get_state, config)
next_nodes = list(state.next) if state and state.next else []
print(f"\n{'='*70}")
print(f"[STATUS CHECK] Next nodes: {next_nodes}")
print(f"{'='*70}\n")
# No more nodes = we're done
if not next_nodes:
print("[COMPLETE] No more nodes - workflow finished")
break
# Handle report approval pause
if "check_report" in next_nodes:
print("[PAUSE] Waiting at check_report")
jobs[job_id]["status"] = "pending_report"
print(f"[STATUS_UPDATE] Set status to pending_report for {job_id}")
# Store current state values
if state and state.values:
jobs[job_id]["result"] = state.values
else:
jobs[job_id]["result"] = result
# Wait for user approval
await jobs[job_id]["report_event"].wait()
jobs[job_id]["report_event"].clear()
approval = jobs[job_id]["approval_response"]
print(f"[RECEIVED] Report approval: {approval}")
# Set status to processing so frontend doesn't re-show report screen
jobs[job_id]["status"] = "processing"
# Update state with approval
await asyncio.to_thread(
pipeline.update_state,
config,
{
"report_approved": approval["approved"],
"report_feedback": approval.get("feedback", "")
}
)
# Resume pipeline - it will run to next interrupt (check_dashboard)
print("[RESUME] Continuing pipeline after report approval...")
result = await asyncio.to_thread(pipeline.invoke, None, config=config)
print("[RESUMED] Pipeline continued")
continue
# Handle dashboard approval pause
if "check_dashboard" in next_nodes:
print("[PAUSE] Waiting at check_dashboard")
jobs[job_id]["status"] = "pending_dashboard"
print(f"[STATUS_UPDATE] Set status to pending_dashboard for {job_id}")
# Store current state values with charts_html
if state and state.values:
jobs[job_id]["result"] = state.values
print(f"[DEBUG] Stored state values, keys: {list(state.values.keys())}")
else:
jobs[job_id]["result"] = result
# Wait for user approval
await jobs[job_id]["dashboard_event"].wait()
jobs[job_id]["dashboard_event"].clear()
approval = jobs[job_id]["approval_response"]
print(f"[RECEIVED] Dashboard approval: {approval}")
# Set status to processing so frontend doesn't re-show dashboard screen
jobs[job_id]["status"] = "processing"
# Update state with approval
await asyncio.to_thread(
pipeline.update_state,
config,
{
"dashboard_approved": approval["approved"],
"dashboard_feedback": approval.get("feedback", "")
}
)
# Resume pipeline
print("[RESUME] Continuing pipeline after dashboard approval...")
result = await asyncio.to_thread(pipeline.invoke, None, config=config)
print("[RESUMED] Pipeline continued")
continue
# Unexpected node
print(f"[WARNING] Unexpected next nodes: {next_nodes}")
break
# Check if the final result contains an error
if isinstance(result, dict) and result.get('error'):
jobs[job_id]["status"] = "failed"
jobs[job_id]["result"] = result
print(f"[ERROR] Pipeline encountered error: {result.get('error')}")
else:
jobs[job_id]["status"] = "completed"
jobs[job_id]["result"] = result
print(f"[SUCCESS] Job {job_id} completed successfully!")
except Exception as e:
jobs[job_id]["status"] = "failed"
jobs[job_id]["result"] = {"error": str(e)}
print(f"[ERROR] Job failed: {e}")
import traceback
traceback.print_exc()
@app.post("/upload")
async def analyze(data:UploadFile=File(...)):
if not data.filename.endswith(".csv"):
return {"error":"Invalid file format. Please upload csv file only."}
job_id=str(uuid.uuid4())[:10]
jobs[job_id]={
"status": "uploading",
"filepath": None,
"result": None,
"report_event": asyncio.Event(),
"dashboard_event": asyncio.Event(),
"approval_response": None,
"chat_history":[]
}
FILEPATH=f"uploads/{data.filename}"
async with aiofiles.open(FILEPATH,"wb") as buffer:
await buffer.write(await data.read())
asyncio.create_task(workflow_runner(job_id,FILEPATH))
return {'job_id':job_id,'filepath':FILEPATH,'msg':'File uploaded successfully. Processing will begin shortly.'}
@app.get("/status/{job_id}")
def get_status(job_id:str):
if job_id not in jobs:
return {"error":"Invalid job ID.", "status":"failed"}
status = jobs[job_id]["status"]
response = {"job_id":job_id, "status": status}
result = jobs[job_id].get("result", {})
# Check for errors in result dict regardless of status
if isinstance(result, dict) and result.get('error'):
response["status"] = "failed"
response["error"] = result.get("error", "Unknown error occurred")
elif status == "failed":
response["error"] = result.get("error", "Unknown error occurred") if isinstance(result, dict) else "Pipeline failed"
print(f"[STATUS] Job {job_id}: returning status={response['status']}")
return response
@app.get("/download_report/{job_id}")
async def download_report(job_id:str):
if job_id not in jobs:
return {"error":"Invalid job ID."}
if jobs[job_id]["status"]!="completed":
return {"error":"Job not completed yet."}
report_path="outputs/report.pdf"
return FileResponse(path=report_path, media_type="application/pdf", filename="report.pdf")
@app.get("/download_dashboard/{job_id}")
async def download_dashboard(job_id:str):
if job_id not in jobs:
return {"error":"Invalid job ID."}
if jobs[job_id]["status"]!="completed":
return {"error":"Job not completed yet."}
dashboard_path="outputs/dashboard.html"
return FileResponse(path=dashboard_path, media_type="text/html", filename="dashboard.html")
@app.get("/stream/{job_id}")
async def stream_output(job_id:str):
if job_id not in jobs:
return {'error':"Invalid job ID."}
async def event_generator():
while True:
status=jobs[job_id]['status']
yield f"data:{json.dumps({'status': status})}\n\n"
if status in ['completed','failed']:
break
await asyncio.sleep(2)
return StreamingResponse(event_generator(),media_type="text/event-stream")
@app.get("/report/{job_id}")
async def get_report(job_id:str):
if job_id not in jobs:
return {'error':"Invalid job ID."}
if jobs[job_id]['status'] not in ['pending_report','completed']:
return {'error':"Report not ready yet."}
report=jobs[job_id]["result"].get("report",{})
return {"report":report}
@app.get("/dashboard/{job_id}")
async def get_dashboard(job_id:str):
if job_id not in jobs:
print(f"[DASHBOARD] Job {job_id} not found")
return {'error':"Invalid job ID."}
status = jobs[job_id]['status']
print(f"[DASHBOARD] Job {job_id}: status={status}")
if status not in ['pending_dashboard','completed']:
print(f"[DASHBOARD] Job {job_id}: Dashboard not ready (status={status})")
return {'error':"Dashboard not ready yet."}
# During pending_dashboard, return charts recommendations
if status == 'pending_dashboard':
result = jobs[job_id]["result"]
print(f"[DASHBOARD] Pending: result keys = {list(result.keys()) if isinstance(result, dict) else 'not a dict'}")
# Keep charts as JSON string - don't parse it, just return it as-is
charts = result.get("charts", "No charts yet") if isinstance(result, dict) else "No charts yet"
print(f"[DASHBOARD] Returning charts as {type(charts).__name__}: {charts[:100] if isinstance(charts, str) else 'not a string'}...")
return {"dashboard": charts}
# After completion, return final dashboard
dashboard = jobs[job_id]["result"].get("dashboard", {}) if isinstance(jobs[job_id]["result"], dict) else {}
return {"dashboard": dashboard}
@app.post("/approve_report/{job_id}")
async def approve_report(job_id:str,approval:dict=Body(...)):
feedback=approval.get("feedback","")
approved=approval.get("approved",True)
if job_id not in jobs:
return {'error':"Invalid job ID."}
if jobs[job_id]['status']!="pending_report":
return {'error':"Report not ready for approval."}
jobs[job_id]["approval_response"]={"approved": approved, "feedback": feedback}
jobs[job_id]["report_event"].set()
return {"msg":"Report approval received."}
@app.post("/approve_dashboard/{job_id}")
async def approve_dashboard(job_id:str,approval:dict=Body(...)):
feedback=approval.get("feedback","")
approved=approval.get("approved",True)
if job_id not in jobs:
return {'error':"Invalid job ID."}
if jobs[job_id]['status']!="pending_dashboard":
return {'error':"Dashboard not ready for approval."}
jobs[job_id]["approval_response"]={"approved": approved, "feedback": feedback}
jobs[job_id]["dashboard_event"].set()
return {"msg":"Dashboard approval received."}
@app.post("/chat_with_argus/{job_id}")
def chat_with_argus(job_id:str,message:dict=Body(...)):
if job_id not in jobs:
return {'error':"Invalid job ID."}
if jobs[job_id]['status']!="completed":
return {'error':"Job not completed yet."}
result=jobs[job_id]["result"]
chat_history=jobs[job_id].setdefault("chat_history",[])
user_message=message.get("message")
reply=chatbot_followup(result,chat_llm,chat_history,user_message)
return {"response":reply}
if __name__=="__main__":
uvicorn.run(app,host="0.0.0.0",port=7860)
|