Spaces:
Paused
Paused
Update app.py
Browse files
app.py
CHANGED
@@ -191,6 +191,7 @@ async def on_message(message):
|
|
191 |
res = await LLM.text_generation(context,
|
192 |
stop_sequences=["<|end_of_turn|>"],
|
193 |
max_new_tokens=48)
|
|
|
194 |
if ("<|res|>" in res and "<|nrs|>" not in res) or guild_name == "Direct":
|
195 |
async with msgchannel.typing():
|
196 |
context += f"GPT4 Correct Assistant:"
|
|
|
191 |
res = await LLM.text_generation(context,
|
192 |
stop_sequences=["<|end_of_turn|>"],
|
193 |
max_new_tokens=48)
|
194 |
+
print(res)
|
195 |
if ("<|res|>" in res and "<|nrs|>" not in res) or guild_name == "Direct":
|
196 |
async with msgchannel.typing():
|
197 |
context += f"GPT4 Correct Assistant:"
|