Montreal Canada

#72
Files changed (1) hide show
  1. app.py +0 -6
app.py CHANGED
@@ -22,13 +22,7 @@ def predict(input, history=[]):
22
  #print('response-->>'+str(response))
23
  return response, history
24
 
25
- description = "This is a chatbot application based on the DialoGPT model of Microsoft. Simply type an input to get started with chatting."
26
- title = "Chat with DialoGPT 👾"
27
- examples = [["What is the meaning of life?"]]
28
  gr.Interface(fn=predict,
29
- title=title,
30
- description=description,
31
- examples=examples,
32
  inputs=["text", "state"],
33
  outputs=["chatbot", "state"]).launch()
34
 
 
22
  #print('response-->>'+str(response))
23
  return response, history
24
 
 
 
 
25
  gr.Interface(fn=predict,
 
 
 
26
  inputs=["text", "state"],
27
  outputs=["chatbot", "state"]).launch()
28