Spaces:
Sleeping
Sleeping
#https://www.sourcecodester.com/javascript/17396/voice-recorder-app-using-html-css-and-javascript-source-code.html | |
from flask import Flask, request, jsonify, render_template | |
import os | |
app = Flask(__name__) | |
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) | |