import prisoner as pages from . import * c = cu class PlayerBot(Bot): def play_round(self): import random yield Introduction yield Explanation yield ControlQuestions yield InputPrime, dict(prime1=random.choice(C.CHAT_GPT_PRIME_LIST)) yield Decision, dict(has_cooperated1=random.choice([True,False])) yield InputPrime2, dict(prime2=random.choice(C.CHAT_GPT_PRIME_LIST)) yield Decision2, dict(has_cooperated2=random.choice([True,False])) yield Beliefs, dict(belief_opponent_round = random.randint(1,2)) yield Demographic, dict(age=random.randint(16,110), gender=random.choice(['m','f','d']), ai_expert=random.randint(1,7))