Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -22,12 +22,12 @@ 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)
|
29 |
print(stream["choices"][0]["text"])
|
30 |
-
yield
|
|
|
31 |
|
32 |
history =["init",str(input_text_with_history)]
|
33 |
|
|
|
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"], stream=True)
|
|
|
26 |
for out in output:
|
27 |
stream = copy.deepcopy(out)
|
28 |
print(stream["choices"][0]["text"])
|
29 |
+
yield output.text
|
30 |
+
|
31 |
|
32 |
history =["init",str(input_text_with_history)]
|
33 |
|