Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -16,9 +16,7 @@ def generate_text(input_text, history):
|
|
16 |
output = llm(full_conversation, max_tokens=1024, stop=["Q:", "\n"], echo=True)
|
17 |
response = output['choices'][0]['text']
|
18 |
history.append([input_text, response])
|
19 |
-
|
20 |
-
time.sleep(0.3)
|
21 |
-
yield "You typed: " + output[: i+1]
|
22 |
|
23 |
|
24 |
demo = gr.ChatInterface(generate_text)
|
|
|
16 |
output = llm(full_conversation, max_tokens=1024, stop=["Q:", "\n"], echo=True)
|
17 |
response = output['choices'][0]['text']
|
18 |
history.append([input_text, response])
|
19 |
+
return "" , history
|
|
|
|
|
20 |
|
21 |
|
22 |
demo = gr.ChatInterface(generate_text)
|