the error that you encountered specifically the AttributeError: 'list' object has no attribute 'expandtabs' was due to gr.Markdown() trying to handle a list object when it's expecting a string. formatting the returned values as a string, converting the tuple or list into a Markdown-friendly format. this should solve the error for sure if you have any other suggestions please let me know ..
8
the error that you encountered specifically the AttributeError: 'list' object has no attribute 'expandtabs' was due to gr.Markdown() trying to handle a list object when it's expecting a string. formatting the returned values as a string, converting the tuple or list into a Markdown-friendly format. this should solve the error for sure if you have any other suggestions please let me know ..