Spaces:
Sleeping
Sleeping
Fix Gradio example inputs
Browse files- __pycache__/app.cpython-312.pyc +0 -0
- app.py +18 -3
__pycache__/app.cpython-312.pyc
ADDED
|
Binary file (7.93 kB). View file
|
|
|
app.py
CHANGED
|
@@ -172,9 +172,24 @@ demo = gr.ChatInterface(
|
|
| 172 |
"natural-farming questions. Verify recommendations locally before use."
|
| 173 |
),
|
| 174 |
examples=[
|
| 175 |
-
|
| 176 |
-
|
| 177 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 178 |
],
|
| 179 |
)
|
| 180 |
|
|
|
|
| 172 |
"natural-farming questions. Verify recommendations locally before use."
|
| 173 |
),
|
| 174 |
examples=[
|
| 175 |
+
[
|
| 176 |
+
"How can I prepare a small-batch fermented plant juice safely?",
|
| 177 |
+
False,
|
| 178 |
+
512,
|
| 179 |
+
0.6,
|
| 180 |
+
],
|
| 181 |
+
[
|
| 182 |
+
"What information should I collect before diagnosing poor soil drainage?",
|
| 183 |
+
False,
|
| 184 |
+
512,
|
| 185 |
+
0.6,
|
| 186 |
+
],
|
| 187 |
+
[
|
| 188 |
+
"How do Korean Natural Farming inputs differ from ordinary compost tea?",
|
| 189 |
+
False,
|
| 190 |
+
512,
|
| 191 |
+
0.6,
|
| 192 |
+
],
|
| 193 |
],
|
| 194 |
)
|
| 195 |
|