Spaces:
Sleeping
Sleeping
change slider min and step values
Browse files
app.py
CHANGED
@@ -174,7 +174,7 @@ def gradio_Interface():
|
|
174 |
fn=gradio_run,
|
175 |
inputs=[
|
176 |
"text",
|
177 |
-
gr.Slider(
|
178 |
gr.Checkbox(label="No Images", info="Don't keep images in output ( gives more spaces for larger text)"),
|
179 |
gr.Checkbox(label="No Chapters", info="Don't use chapter based chunking"),
|
180 |
gr.Dropdown(["pptx", "pdf", "html"], label="file format", info="which file format to generte.")
|
|
|
174 |
fn=gradio_run,
|
175 |
inputs=[
|
176 |
"text",
|
177 |
+
gr.Slider(300, 2000, 50, label="Chunk Size", info="More chunk size = longer text & shorter numbber of slides"),
|
178 |
gr.Checkbox(label="No Images", info="Don't keep images in output ( gives more spaces for larger text)"),
|
179 |
gr.Checkbox(label="No Chapters", info="Don't use chapter based chunking"),
|
180 |
gr.Dropdown(["pptx", "pdf", "html"], label="file format", info="which file format to generte.")
|