wbrooks commited on
Commit
9916b48
·
1 Parent(s): 65a3f08

working out how to format the result

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -42,7 +42,7 @@ def greet_json(query: str):
42
 
43
 
44
 
45
- return {"result": str(res_combined), "shape": res_combined.shape}
46
 
47
 
48
 
 
42
 
43
 
44
 
45
+ return {"result": res_combined.to_pandas().to_html(), "shape": res_combined.shape}
46
 
47
 
48