File size: 367 Bytes
42f39de |
1 2 3 4 5 6 7 8 9 10 11 12 13 |
import gradio as gr
from menu_chromadb_semantic_search import search_dishes
iface = gr.Interface(
fn=search_dishes,
inputs=gr.Textbox(label="Search for a dish"),
outputs=gr.Textbox(label="Top 5 Similar Dishes"),
title="Menu Item Semantic Search",
description="Type a dish name to find the top 5 similar menu items."
)
iface.launch()
|