eduardo-alvarez commited on
Commit
fee1876
1 Parent(s): 654a6ea

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +6 -6
app.py CHANGED
@@ -52,12 +52,12 @@ with demo:
52
  #chat_model_selection = chat_model_dropdown.value
53
  chat_model_selection = 'Intel/neural-chat-7b-v1-1'
54
 
55
- def slow_echo(message, history):
56
- for i in range(len(message)):
57
- time.sleep(0.3)
58
- yield "You typed: " + message[: i+1]
59
-
60
- gr.ChatInterface(slow_echo).launch()
61
 
62
  #def call_api_and_stream_response(query, chat_model):
63
  # """
 
52
  #chat_model_selection = chat_model_dropdown.value
53
  chat_model_selection = 'Intel/neural-chat-7b-v1-1'
54
 
55
+ #def slow_echo(message, history):
56
+ # for i in range(len(message)):
57
+ # time.sleep(0.3)
58
+ # yield "You typed: " + message[: i+1]
59
+ #
60
+ #gr.ChatInterface(slow_echo).launch()
61
 
62
  #def call_api_and_stream_response(query, chat_model):
63
  # """