Jofthomas HF staff commited on
Commit
ce88b36
1 Parent(s): 90a0040

Update TextGen/router.py

Browse files
Files changed (1) hide show
  1. TextGen/router.py +3 -2
TextGen/router.py CHANGED
@@ -87,12 +87,13 @@ main_npc_system_prompts={
87
  class Generate(BaseModel):
88
  text:str
89
 
90
- class Invoke(BaseModel):
91
  rooms:List
92
  room_of_interest:List
93
  index_exit:int
 
94
 
95
- class Rooms(BaseModel):
96
  system_prompt:str
97
  message:str
98
 
 
87
  class Generate(BaseModel):
88
  text:str
89
 
90
+ class Rooms(BaseModel):
91
  rooms:List
92
  room_of_interest:List
93
  index_exit:int
94
+ possible_entities:List
95
 
96
+ class Invoke(BaseModel):
97
  system_prompt:str
98
  message:str
99