I’ll take a look. Some quick notes:
-
If you’d like to bring
gr.Chatbot()
into the main Blocks, just setrender=False
, e.g.gr.Chatbot(render=False)
-
But in your code example you shouldn’t even need to define a
gr.Chatbot
since you’re using the default implementation ofgr.ChatInterface
which creates agr.Chatbot
for you. So you can just skip thechatbot
parameter and everything will be the same.
Does that fix anything for you?