Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -21,10 +21,15 @@ def generate_text(input_text, history):
|
|
21 |
input_text_with_history += f"Q: {input_text} \n A:"
|
22 |
print("new input", input_text_with_history)
|
23 |
output = llm(input_text_with_history, max_tokens=1024, stop=["Q:", "\n"], stream=True)
|
|
|
24 |
for out in output:
|
25 |
stream = copy.deepcopy(out)
|
26 |
print(stream["choices"][0]["text"])
|
27 |
yield str(stream["choices"][0]["text"])
|
|
|
|
|
|
|
|
|
28 |
history =["init",input_text_with_history]
|
29 |
|
30 |
|
|
|
21 |
input_text_with_history += f"Q: {input_text} \n A:"
|
22 |
print("new input", input_text_with_history)
|
23 |
output = llm(input_text_with_history, max_tokens=1024, stop=["Q:", "\n"], stream=True)
|
24 |
+
|
25 |
for out in output:
|
26 |
stream = copy.deepcopy(out)
|
27 |
print(stream["choices"][0]["text"])
|
28 |
yield str(stream["choices"][0]["text"])
|
29 |
+
response = "".join(stream)
|
30 |
+
|
31 |
+
print("out", out)
|
32 |
+
print("response", response)
|
33 |
history =["init",input_text_with_history]
|
34 |
|
35 |
|