Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -685,7 +685,7 @@ async def handle_user_input(websocket,key, process, connected):
|
|
685 |
pass
|
686 |
|
687 |
def process_input(user_input, process):
|
688 |
-
|
689 |
if process:
|
690 |
try:
|
691 |
print(user_input.encode('utf-8').split("&&")[1],2)
|
@@ -694,7 +694,7 @@ def process_input(user_input, process):
|
|
694 |
# Send SIGINT signal to terminate the process gracefully
|
695 |
process.send_signal(signal.SIGINT)
|
696 |
else:
|
697 |
-
process.stdin.write(
|
698 |
# process.stdin.flush()
|
699 |
except Exception as e:
|
700 |
print(f"Error writing to process stdin: {str(e)}")
|
|
|
685 |
pass
|
686 |
|
687 |
def process_input(user_input, process):
|
688 |
+
|
689 |
if process:
|
690 |
try:
|
691 |
print(user_input.encode('utf-8').split("&&")[1],2)
|
|
|
694 |
# Send SIGINT signal to terminate the process gracefully
|
695 |
process.send_signal(signal.SIGINT)
|
696 |
else:
|
697 |
+
process.stdin.write(user_input.encode('utf-8') + b'\n')
|
698 |
# process.stdin.flush()
|
699 |
except Exception as e:
|
700 |
print(f"Error writing to process stdin: {str(e)}")
|