diff --git a/imitation/imitation/server.py b/imitation/imitation/server.py index 11846341f708221b5bb4fa7dd257b7a32af76d76..4332ba1db5043a7b00f5670fa2f48540fd1fa584 100644 --- a/imitation/imitation/server.py +++ b/imitation/imitation/server.py @@ -117,11 +117,11 @@ class Interrogator(Interlocutor): def handle(self): self.log.info("connecting...") self.write(f""" -Welcome to the Imitation Game. Your role is "interrogator". You -get to ask {self.n} questions of your interlocutor to determine if -they are a human or a machine. At the end of the session you -will be asked which you think they are and why. If you have made -up your mind and want to end the session early, type "END" all caps. +Welcome to the Imitation Game. Your role is "interrogator". You get to +ask {self.n} questions of your interlocutor to determine if they are a +human or a machine. At the end of the session you will be asked which +you think they are and why. If you have made up your mind and want to +end the session early, type "END" all caps. Good luck! @@ -181,10 +181,10 @@ class Human(Interlocutor): def handle(self): self.log.info("connecting...") self.write(f""" -Welcome to the Imitation Game. Your role is HUMAN. You will be -asked {self.n} questions by an interlocutor who is attempting -to find out if you are a human or a machine. Your task is to -convince them that you are human. Good luck! +Welcome to the Imitation Game. Your role is HUMAN. You will be asked +{self.n} questions by an interlocutor who is attempting to find out if +you are a human or a machine. Your task is to convince them that you +are human. Good luck! Please wait to be connected to an interlocutor...""", colour=self.serv_colour) diff --git a/imitation/setup.py b/imitation/setup.py index 635b36de5de34da851583b2829859a779dc9a853..f77d1c9f05209ccf605d26def19c73eb3d0aa23b 100644 --- a/imitation/setup.py +++ b/imitation/setup.py @@ -3,7 +3,7 @@ from setuptools import setup, find_packages setup(name='imitation', - version='0.1', + version='0.2', description='Turing Test', author=['William Waites'], author_email='william.waites@strath.ac.uk',