fix: examples must be list of lists for ChatInterface with additional_inputs
Browse files
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 |
|