Spaces:
Sleeping
Sleeping
Update TextGen/router.py
Browse files- 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
|
91 |
rooms:List
|
92 |
room_of_interest:List
|
93 |
index_exit:int
|
|
|
94 |
|
95 |
-
class
|
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 |
|