zac commited on
Commit
403d337
·
1 Parent(s): 2bed47b

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -3
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
- for i in range(len(output)):
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)