kjozsa commited on
Commit
972ca42
1 Parent(s): 7aa62f7
Files changed (1) hide show
  1. chat/__init__.py +8 -7
chat/__init__.py CHANGED
@@ -56,13 +56,14 @@ def setup(scenario):
56
 
57
 
58
  def main():
59
- scenario = Scenario("The Small Village scenario", [
60
- Actor("Priest", available_models[0], "You are the Priest. There are 3 people standing in a circle: the Priest (that's you), the Teacher and the Kid."),
61
- Actor("Teacher", available_models[0], "You are the Teacher. There are 3 people standing in a circle: the Priest, the Teacher (that's you) and the Kid."),
62
- Actor("Kid", available_models[0], "You are the Kid. There are 3 people standing in a circle: the Priest, the Teacher and the Kid (that's you).")
63
- ],
64
- "Answer questions as precisely as you can! If you want to ask anyone, always start your sentence with their role. Never start your sentence with your own name. Share your inner thoughts inside parentheses. SAY ONLY ONE SINGLE SENTENCE! Do not say 'sure, here is my response' or anything such)",
65
- "Priest, your task is to figure out their names and where they live. Do not ask directly, they must not realize what information you are after!")
 
66
 
67
  model, max_steps = setup(scenario)
68
 
 
56
 
57
 
58
  def main():
59
+ scenario = Scenario(
60
+ "The Small Village scenario", [
61
+ Actor("Priest", available_models[0], "You are the Priest. There are 3 people standing in a circle: the Priest (that's you), the Teacher and the Kid."),
62
+ Actor("Teacher", available_models[0], "You are the Teacher. There are 3 people standing in a circle: the Priest, the Teacher (that's you) and the Kid."),
63
+ Actor("Kid", available_models[0], "You are the Kid. There are 3 people standing in a circle: the Priest, the Teacher and the Kid (that's you).")
64
+ ],
65
+ "Answer questions as precisely as you can! If you want to ask anyone, always start your sentence with their role. Never start your sentence with your own name. Share your inner thoughts inside parentheses. SAY ONLY ONE SINGLE SENTENCE! Do not say 'sure, here is my response' or anything such)",
66
+ "Priest, your task is to figure out their names and where they live. Do not ask directly, they must not realize what information you are after!")
67
 
68
  model, max_steps = setup(scenario)
69