semabox-mms / app.py
Tri4's picture
Update app.py
4b8363e verified
raw
history blame
371 Bytes
from flask import Flask, request, jsonify, render_template
import os
app = Flask(__name__)
@app.route("/")
def hello():
#return render_template('index.html')
#return render_template('design.html')
return render_template('chatgpt.html')
if __name__ == '__main__':
print("Lets test voice recording\n", flush=True)
app.run(host="0.0.0.0", port=5000)