Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -22,7 +22,7 @@ def generate_text(input_text, history):
|
|
22 |
input_text_with_history = f"{history[-1][1]}"+ "\n"
|
23 |
input_text_with_history += f"Q: {input_text}" + "\n" +" A:"
|
24 |
print("new input", input_text_with_history)
|
25 |
-
output = llm(input_text_with_history, max_tokens=1024, stop=["Q:", "\n"],
|
26 |
|
27 |
for out in output:
|
28 |
stream = copy.deepcopy(out)
|
|
|
22 |
input_text_with_history = f"{history[-1][1]}"+ "\n"
|
23 |
input_text_with_history += f"Q: {input_text}" + "\n" +" A:"
|
24 |
print("new input", input_text_with_history)
|
25 |
+
output = llm(input_text_with_history, max_tokens=1024, stop=["Q:", "\n"], echo=True)
|
26 |
|
27 |
for out in output:
|
28 |
stream = copy.deepcopy(out)
|