Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -692,8 +692,8 @@ def process_input(user_input, process):
|
|
692 |
# Send SIGINT signal to terminate the process gracefully
|
693 |
process.send_signal(signal.SIGINT)
|
694 |
else:
|
695 |
-
process.stdin.write(user_input.encode('utf-8') + b'\n')
|
696 |
-
process.stdin.flush()
|
697 |
except Exception as e:
|
698 |
print(f"Error writing to process stdin: {str(e)}")
|
699 |
else:
|
|
|
692 |
# Send SIGINT signal to terminate the process gracefully
|
693 |
process.send_signal(signal.SIGINT)
|
694 |
else:
|
695 |
+
process.stdin.write(user_input.encode('utf-8').split("&&")[1] + b'\n')
|
696 |
+
# process.stdin.flush()
|
697 |
except Exception as e:
|
698 |
print(f"Error writing to process stdin: {str(e)}")
|
699 |
else:
|