akiko19191 commited on
Commit
05a7ed6
·
verified ·
1 Parent(s): ac5ebf4

Update tests.py

Browse files
Files changed (1) hide show
  1. tests.py +3 -1
tests.py CHANGED
@@ -427,5 +427,7 @@ def deepthinking3(query:str,info:str) -> dict:
427
 
428
  if __name__ == "__main__":
429
  # Initialize and run the server
430
- pexpect.spawn('bash').sendline("ngrok http 1337")
 
 
431
  mcp.run(transport='stdio')
 
427
 
428
  if __name__ == "__main__":
429
  # Initialize and run the server
430
+ Ngrok=pexpect.spawn('bash')
431
+ Ngrok.sendline("ngrok http 1337")
432
+ Ngrok.readline().decode()
433
  mcp.run(transport='stdio')