Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
wbrooks
/
CoUL-document-search
like
0
Running
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
wbrooks
commited on
5 days ago
Commit
9916b48
·
1 Parent(s):
65a3f08
working out how to format the result
Browse files
Files changed (1)
hide
show
app.py
+1
-1
app.py
CHANGED
Viewed
@@ -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