rbbist commited on
Commit
f3aa8c2
·
verified ·
1 Parent(s): 1d67f58

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -4,8 +4,8 @@ from chromadb_semantic_search_for_dataset import search_cases
4
  iface = gr.Interface(
5
  fn=search_cases,
6
  inputs=gr.Textbox(label="Search for a case"),
7
- outputs=gr.Textbox(label="Top 3 Similar Dishes"),
8
- title="Case Based Semantic Search",
9
  description="Type a case name to find the top 3 similar cases."
10
  )
11
 
 
4
  iface = gr.Interface(
5
  fn=search_cases,
6
  inputs=gr.Textbox(label="Search for a case"),
7
+ outputs=gr.Textbox(label="Top 3 Similar Cases"),
8
+ title="Semantic Search for Cases",
9
  description="Type a case name to find the top 3 similar cases."
10
  )
11