rbbist's picture
Update app.py
f3aa8c2 verified
raw
history blame contribute delete
354 Bytes
import gradio as gr
from chromadb_semantic_search_for_dataset import search_cases
iface = gr.Interface(
fn=search_cases,
inputs=gr.Textbox(label="Search for a case"),
outputs=gr.Textbox(label="Top 3 Similar Cases"),
title="Semantic Search for Cases",
description="Type a case name to find the top 3 similar cases."
)
iface.launch()