Spaces:
Runtime error
Runtime error
michailroussos
commited on
Commit
·
c4001e3
1
Parent(s):
0acf62f
more
Browse files
app.py
CHANGED
|
@@ -48,6 +48,7 @@ def respond(message, max_new_tokens, temperature, system_message="You are a help
|
|
| 48 |
temperature=temperature,
|
| 49 |
use_cache=True,
|
| 50 |
)
|
|
|
|
| 51 |
|
| 52 |
# Decode the generated tokens back to text
|
| 53 |
generated_text = tokenizer.decode(output[0], skip_special_tokens=True)
|
|
|
|
| 48 |
temperature=temperature,
|
| 49 |
use_cache=True,
|
| 50 |
)
|
| 51 |
+
print("[DEBUG] message:",messages)
|
| 52 |
|
| 53 |
# Decode the generated tokens back to text
|
| 54 |
generated_text = tokenizer.decode(output[0], skip_special_tokens=True)
|