Spaces:
Runtime error
Runtime error
Reshinth Adithyan
commited on
Commit
·
9d648a5
1
Parent(s):
c5f913a
Bug Fix
Browse files- src/agent.py +1 -1
src/agent.py
CHANGED
@@ -22,7 +22,7 @@ class Cerebrum:
|
|
22 |
def random_first_choice(self)->str:
|
23 |
return random.choice(self.init_word_list)
|
24 |
|
25 |
-
def random_n_choice(self,hash_output
|
26 |
if len(hash_output) == 1:
|
27 |
return random.choice(hash_output[0])
|
28 |
else:
|
|
|
22 |
def random_first_choice(self)->str:
|
23 |
return random.choice(self.init_word_list)
|
24 |
|
25 |
+
def random_n_choice(self,hash_output)->str:
|
26 |
if len(hash_output) == 1:
|
27 |
return random.choice(hash_output[0])
|
28 |
else:
|