hotelvoicechat / app.py
prasanth345's picture
Update app.py
d5f1ff9 verified
raw
history blame
335 Bytes
import gradio as gr
def chatbot_response(text):
# Placeholder for actual AI logic
return f"You said: {text}"
# Create Gradio interface
gr.Interface(
fn=chatbot_response,
inputs="text",
outputs="text",
title="Hotel Booking Voice AI Chatbot",
description="Ask anything related to hotel booking",
).launch()