Spaces:
Runtime error
Runtime error
from flask import Flask, render_templates | |
import gradio as gr | |
from chatbot_ai import chatbot | |
from voice_ai import voice_ai | |
app = Flask(__name__) | |
def index(): | |
return render_templates("index.html") | |
def chatbot_page(): | |
return render_templates("chatbot.html") | |
if __name__ == "__main__": | |
app.run(debug=True) | |