gorkemgoknar commited on
Commit
60290fc
1 Parent(s): caa4027

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +6 -1
app.py CHANGED
@@ -86,8 +86,13 @@ personality_choices = ["Gandalf", "Riddick", "Macleod", "Morpheus", "Neo","Spock
86
 
87
  examples= ["Gandalf", "What is your name?"]
88
 
 
 
 
 
 
89
  #History not implemented in this demo, use metayazar.com/chatbot for a movie and character dropdown chat interface
90
- interface = gr.Interface(fn=get_chat_response, inputs=[gr.inputs.Dropdown(personality_choices) ,"text"], outputs="text")
91
 
92
 
93
  if __name__ == "__main__":
 
86
 
87
  examples= ["Gandalf", "What is your name?"]
88
 
89
+
90
+
91
+ title = "Metayazar - Movie Chatbot"
92
+ description = "Chat with your favorite movie characters. This space demo has simple interface and no history, test it out in metayazar.com/chatbot for more movie/character options and history memorized."
93
+
94
  #History not implemented in this demo, use metayazar.com/chatbot for a movie and character dropdown chat interface
95
+ interface = gr.Interface(fn=get_chat_response, inputs=[gr.inputs.Dropdown(personality_choices) ,"text"], title=title, description=description, outputs="text")
96
 
97
 
98
  if __name__ == "__main__":