Kunal Pai
commited on
Commit
·
263bcfe
1
Parent(s):
434b328
Surprise 🫠
Browse files- HASHIRU.png +3 -0
- HASHIRU_2.png +3 -0
- mainV2.py +4 -1
HASHIRU.png
ADDED
![]() |
Git LFS Details
|
HASHIRU_2.png
ADDED
![]() |
Git LFS Details
|
mainV2.py
CHANGED
@@ -20,7 +20,10 @@ if __name__ == "__main__":
|
|
20 |
return "", history
|
21 |
|
22 |
with gr.Blocks() as demo:
|
23 |
-
chatbot = gr.Chatbot(
|
|
|
|
|
|
|
24 |
input_box = gr.Textbox()
|
25 |
clear = gr.ClearButton([input_box, chatbot])
|
26 |
|
|
|
20 |
return "", history
|
21 |
|
22 |
with gr.Blocks() as demo:
|
23 |
+
chatbot = gr.Chatbot(
|
24 |
+
avatar_images=("HASHIRU_2.png", "HASHIRU.png"),
|
25 |
+
type="messages"
|
26 |
+
)
|
27 |
input_box = gr.Textbox()
|
28 |
clear = gr.ClearButton([input_box, chatbot])
|
29 |
|