File size: 358 Bytes
4bbc5e0
b28f06f
33df8d5
 
87df5c7
6e45585
d5f1ff9
33df8d5
 
4bbc5e0
6e45585
33df8d5
 
4bbc5e0
6e45585
33df8d5
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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)