last update
Browse files
app.py
CHANGED
@@ -96,9 +96,8 @@ theme = gr.themes.Default(primary_hue="blue").set(
|
|
96 |
|
97 |
)
|
98 |
|
99 |
-
demo = gr.ChatInterface(get_text_response,clear_btn=
|
100 |
chatbot= gr.Chatbot(bubble_full_width=False,label='Kum bot',show_label=True,height=350,show_share_button=False,
|
101 |
avatar_images=('https://res.cloudinary.com/dtbarluca/image/upload/v1692694826/user_1177568_mmmdi6.png','https://res.cloudinary.com/dtbarluca/image/upload/v1690875247/hlogo.ico_nqdhd6.png')),examples=["Where did you learn this techonologies?","What are your interests?","Which places do you like to visit?","Your greatest Achievements?","how can connect to you through linkedin?"])
|
102 |
-
|
103 |
if __name__ == "__main__":
|
104 |
demo.launch() #To create a public link, set `share=True` in `launch()`. To enable errors and logs, set `debug=True` in `launch()`.
|
|
|
96 |
|
97 |
)
|
98 |
|
99 |
+
demo = gr.ChatInterface(get_text_response,clear_btn=None,retry_btn=None,stop_btn=None,undo_btn=None,theme=theme,
|
100 |
chatbot= gr.Chatbot(bubble_full_width=False,label='Kum bot',show_label=True,height=350,show_share_button=False,
|
101 |
avatar_images=('https://res.cloudinary.com/dtbarluca/image/upload/v1692694826/user_1177568_mmmdi6.png','https://res.cloudinary.com/dtbarluca/image/upload/v1690875247/hlogo.ico_nqdhd6.png')),examples=["Where did you learn this techonologies?","What are your interests?","Which places do you like to visit?","Your greatest Achievements?","how can connect to you through linkedin?"])
|
|
|
102 |
if __name__ == "__main__":
|
103 |
demo.launch() #To create a public link, set `share=True` in `launch()`. To enable errors and logs, set `debug=True` in `launch()`.
|