SeaWolf-AI commited on
Commit
5082da4
·
verified ·
1 Parent(s): 5b119b6

fix: examples must be list of lists for ChatInterface with additional_inputs

Browse files
Files changed (1) hide show
  1. app.py +3 -3
app.py CHANGED
@@ -293,9 +293,9 @@ def create_app():
293
  title="Chat with Hermes",
294
  description="Ask anything - general questions, coding help, or data analysis guidance.",
295
  examples=[
296
- "What kinds of data analysis can you help me with?",
297
- "Explain the difference between correlation and causation.",
298
- "Write Python code to generate a sample dataset with pandas.",
299
  ],
300
  )
301
 
 
293
  title="Chat with Hermes",
294
  description="Ask anything - general questions, coding help, or data analysis guidance.",
295
  examples=[
296
+ ["What kinds of data analysis can you help me with?"],
297
+ ["Explain the difference between correlation and causation."],
298
+ ["Write Python code to generate a sample dataset with pandas."],
299
  ],
300
  )
301