Update tests.py
Browse files
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')
|
|
|
|
|
|
|
| 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')
|