Kunal Pai commited on
Commit
263bcfe
·
1 Parent(s): 434b328

Surprise 🫠

Browse files
Files changed (3) hide show
  1. HASHIRU.png +3 -0
  2. HASHIRU_2.png +3 -0
  3. mainV2.py +4 -1
HASHIRU.png ADDED

Git LFS Details

  • SHA256: d7d84328e4919e8d11ab7d87d2b4d1ee5cca0468e07c852e2e9e58f99f8aabee
  • Pointer size: 132 Bytes
  • Size of remote file: 1.01 MB
HASHIRU_2.png ADDED

Git LFS Details

  • SHA256: 8de6e6140dc04459b027e528f3c6a7525ea2d1c242c2775487b3332f45f80647
  • Pointer size: 131 Bytes
  • Size of remote file: 154 kB
mainV2.py CHANGED
@@ -20,7 +20,10 @@ if __name__ == "__main__":
20
  return "", history
21
 
22
  with gr.Blocks() as demo:
23
- chatbot = gr.Chatbot(type="messages")
 
 
 
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