Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -53,14 +53,14 @@ def create_interface():
|
|
53 |
title="Unified Query Processing System",
|
54 |
description="Enter a natural language query to search products or get descriptions.",
|
55 |
examples=[
|
56 |
-
["Show me shirts less than
|
57 |
["Show me shirts with red color"],
|
58 |
["Show me T-shirts with M size"]
|
59 |
]
|
60 |
)
|
61 |
|
62 |
return iface
|
63 |
-
|
64 |
if __name__ == "__main__":
|
65 |
iface = create_interface()
|
66 |
-
iface.launch()
|
|
|
53 |
title="Unified Query Processing System",
|
54 |
description="Enter a natural language query to search products or get descriptions.",
|
55 |
examples=[
|
56 |
+
["Show me shirts less than 50 rupee"],
|
57 |
["Show me shirts with red color"],
|
58 |
["Show me T-shirts with M size"]
|
59 |
]
|
60 |
)
|
61 |
|
62 |
return iface
|
63 |
+
|
64 |
if __name__ == "__main__":
|
65 |
iface = create_interface()
|
66 |
+
iface.launch(share=True)
|