Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -13,7 +13,9 @@ history = []
|
|
13 |
def generate_text(input_text, history):
|
14 |
print("history ",history)
|
15 |
print("input ", input_text)
|
16 |
-
|
|
|
|
|
17 |
response = output['choices'][0]['text']
|
18 |
return response
|
19 |
|
|
|
13 |
def generate_text(input_text, history):
|
14 |
print("history ",history)
|
15 |
print("input ", input_text)
|
16 |
+
input_text_with_history = "".join(i for i in history)
|
17 |
+
print("new input", input_text_with_history)
|
18 |
+
output = llm(f"Q: {input_text_with_history} \n A:", max_tokens=1024, stop=["Q:", "\n"], echo=True)
|
19 |
response = output['choices'][0]['text']
|
20 |
return response
|
21 |
|