Staticaliza
commited on
Commit
•
4716681
1
Parent(s):
7822b29
Update app.py
Browse files
app.py
CHANGED
@@ -31,7 +31,7 @@ def format(instruction, history, input, preoutput):
|
|
31 |
sy_l, sy_r = SPECIAL_SYMBOLS[0], SPECIAL_SYMBOLS[1]
|
32 |
formatted_history = "".join(f"{sy_l}{message[0]}{sy_r}\n{sy_l}{message[1]}{sy_r}\n" for message in history)
|
33 |
formatted_input = f"{sy_l}System: {instruction}{sy_r}\n{formatted_history}{sy_l}{input}{sy_r}\n"
|
34 |
-
return formatted_input,
|
35 |
|
36 |
def predict(instruction, history, input, preoutput, access_key, model, temperature, top_p, top_k, rep_p, max_tokens, stop_seqs, seed):
|
37 |
|
|
|
31 |
sy_l, sy_r = SPECIAL_SYMBOLS[0], SPECIAL_SYMBOLS[1]
|
32 |
formatted_history = "".join(f"{sy_l}{message[0]}{sy_r}\n{sy_l}{message[1]}{sy_r}\n" for message in history)
|
33 |
formatted_input = f"{sy_l}System: {instruction}{sy_r}\n{formatted_history}{sy_l}{input}{sy_r}\n"
|
34 |
+
return formatted_input, f"{formatted_input}{sy_l}{preoutput}"
|
35 |
|
36 |
def predict(instruction, history, input, preoutput, access_key, model, temperature, top_p, top_k, rep_p, max_tokens, stop_seqs, seed):
|
37 |
|