Ramesh-vani commited on
Commit
1232fd2
·
verified ·
1 Parent(s): fed0bff

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
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
- print(user_input.encode('utf-8').split("&&")[1],1)
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(bytes(user_input.encode('utf-8').split("&&")[1], 'utf-8') + b'\n')
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)}")