bhugxer commited on
Commit
91fc46c
·
verified ·
1 Parent(s): 6de9f90

Fix Gradio example inputs

Browse files
Files changed (2) hide show
  1. __pycache__/app.cpython-312.pyc +0 -0
  2. 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
- "How can I prepare a small-batch fermented plant juice safely?",
176
- "What information should I collect before diagnosing poor soil drainage?",
177
- "How do Korean Natural Farming inputs differ from ordinary compost tea?",
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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