stable13 commited on
Commit
b3bf245
1 Parent(s): bf0c5c1

Create app.py

Browse files
Files changed (1) hide show
  1. app.py +14 -0
app.py ADDED
@@ -0,0 +1,14 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+
2
+ from flask import Flask, jsonify, render_template, request, send_file
3
+
4
+ app = Flask(__name__)
5
+
6
+
7
+ @app.route("/")
8
+ def emotion():
9
+
10
+ return jsonify({"output": output})
11
+
12
+
13
+ if __name__ == "__main__":
14
+ app.run(host="0.0.0.0", port=7860)