Spaces:
Runtime error
Runtime error
File size: 980 Bytes
2376116 d7ab09b 2376116 f7be4fc 2376116 f48c97f f4af02c 2376116 f7be4fc 2376116 f7be4fc 2376116 f7be4fc 2376116 aa9cf31 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 |
from flask import Flask, render_template
from flask_socketio import SocketIO, emit
from flask_cors import cross_origin, CORS
from main import run
import threading
app = Flask(__name__)
app.config['SECRET_KEY'] = 'secret!'
socketio = SocketIO(app, cors_allowed_origins="*", async_mode='gevent')
cors = CORS(app)
thread_lock = threading.Lock()
thread_count = 0
@app.route('/')
def index():
return render_template('index.html')
@socketio.on('message')
def handle_message(data):
global thread_count
with thread_lock:
if thread_count >= 4:
emit('response', {'response': 'Server is busy. Please try again later.'})
return
else:
thread_count += 1
question = data['question']
print("question: " + question)
response = run(question)
with thread_lock:
thread_count -= 1
emit('response', {'response': response})
if __name__ == '__main__':
socketio.run(app, host="0.0.0.0", port=7860)
|