I have a blenderbot2 notebook in google collab (https://colab.research.google.com/drive/1ShpZlXMslxdS56OmNfvanqZT-3TRUuLf#scrollTo=u6BYFz39ynHF)
I run blenderbot2 using the following interactive mode
!parlai interactive -mf zoo:blenderbot2/blenderbot2_3B/model --search-server relevant_search_server
If you don't know, blenderbot2 is the latest deep learning chatbot from Facebook AI, which uses online internet search to keep its knowledge of the world up to date. I was able to run Blenderbot2, but it seems like anytime I ask a question, it would prompt the bot to search new information through a server and then causes a crash. The crash error message would be as follows:
requests.exceptions.ConnectionError: HTTPConnectionPool(host='relevant_search_server', port=80): Max retries exceeded with url: / (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7fc85fbd1410>: Failed to establish a new connection: [Errno -2] Name or service not known'))
How do I configure the google collab notebook so that I can provide it the relevant search server?