hotelvoicechat / app.py
prasanth345's picture
Update app.py
4bbc5e0 verified
raw
history blame
358 Bytes
from flask import Flask, render_templates
import gradio as gr
from chatbot_ai import chatbot
from voice_ai import voice_ai
app = Flask(__name__)
@app.route("/")
def index():
return render_templates("index.html")
@app.route("/chatbot")
def chatbot_page():
return render_templates("chatbot.html")
if __name__ == "__main__":
app.run(debug=True)