Ramesh-vani commited on
Commit
2edf1db
·
verified ·
1 Parent(s): 971307a

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
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: