Ramesh-vani commited on
Commit
c8e6651
·
verified ·
1 Parent(s): a6fbfdf

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -1
app.py CHANGED
@@ -570,7 +570,10 @@ async def handle_user_input(websocket,key, process, connected):
570
  def process_input(user_input, process):
571
  if process:
572
  try:
573
- process.stdin.write(user_input.encode('utf-8') + b'\n')
 
 
 
574
  #process.stdin.flush()
575
  except Exception as e:
576
  # print(f"Error writing to process stdin: {str(e)}")
 
570
  def process_input(user_input, process):
571
  if process:
572
  try:
573
+ if user_input=='Ctrl+C':
574
+ process.send_signal(signal.SIGINT)
575
+ else:
576
+ process.stdin.write(user_input.encode('utf-8') + b'\n')
577
  #process.stdin.flush()
578
  except Exception as e:
579
  # print(f"Error writing to process stdin: {str(e)}")