Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -57,6 +57,8 @@ cfg.description = f'''<center> <h2>{cfg.description}</h2>
|
|
57 |
if cfg.examples:
|
58 |
cfg.examples = cfg.examples.split(",")
|
59 |
|
|
|
|
|
60 |
demo = gr.ChatInterface(respond, title = cfg.title, description = cfg.description,
|
61 |
chatbot = gr.Chatbot(value = [[None, "How may I help you?"]], scale=3), examples = cfg.examples)
|
62 |
|
|
|
57 |
if cfg.examples:
|
58 |
cfg.examples = cfg.examples.split(",")
|
59 |
|
60 |
+
logging.debug(f'Examples before function call: {cfg.examples}; type: {type(cfg.examples)}')
|
61 |
+
|
62 |
demo = gr.ChatInterface(respond, title = cfg.title, description = cfg.description,
|
63 |
chatbot = gr.Chatbot(value = [[None, "How may I help you?"]], scale=3), examples = cfg.examples)
|
64 |
|