Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -63,7 +63,7 @@ def combine(a, b, c, d,e,f):
|
|
63 |
total_tokens = ''
|
64 |
for character in llm(prompt,
|
65 |
max_tokens=max_new_tokens,
|
66 |
-
stop=["
|
67 |
temperature = temperature,
|
68 |
repeat_penalty = repeat_penalty,
|
69 |
top_p = top_p, # Example stop token - not necessarily correct for this specific model! Please check before using.
|
|
|
63 |
total_tokens = ''
|
64 |
for character in llm(prompt,
|
65 |
max_tokens=max_new_tokens,
|
66 |
+
stop=["<|eot_id|>"],
|
67 |
temperature = temperature,
|
68 |
repeat_penalty = repeat_penalty,
|
69 |
top_p = top_p, # Example stop token - not necessarily correct for this specific model! Please check before using.
|