File size: 486 Bytes
af1fcae
4564cfc
 
 
 
 
 
 
ce43058
af1fcae
 
4564cfc
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#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__)

@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)