sagnik-mukherjee commited on
Commit
7da84a1
·
verified ·
1 Parent(s): 78dce47

Deploy provenance-first OpenComic-Continue research UI

Browse files
Files changed (1) hide show
  1. app.py +3 -1
app.py CHANGED
@@ -94,7 +94,9 @@ def generate(
94
  "model_variant": [item.get("model_variant") for item in result.get("scripts", [])],
95
  "routing": result.get("routing", []),
96
  "job_id": result.get("job_id"),
97
- "renderer_status": "RENDERER NOT RUN (visible placeholder panels)",
 
 
98
  }
99
  return images, result.get("scripts", []), result.get("memory"), research
100
 
 
94
  "model_variant": [item.get("model_variant") for item in result.get("scripts", [])],
95
  "routing": result.get("routing", []),
96
  "job_id": result.get("job_id"),
97
+ "renderer": result.get(
98
+ "renderer", {"status": "RENDERER NOT RUN (visible placeholder panels)"}
99
+ ),
100
  }
101
  return images, result.get("scripts", []), result.get("memory"), research
102