Spaces:
Running
on
Zero
Running
on
Zero
git commit -m "feat: add more example images for frontend testing"
Browse files
app.py
CHANGED
|
@@ -55,7 +55,7 @@ def get_example_images():
|
|
| 55 |
for file in os.listdir(example_dir):
|
| 56 |
if file.lower().endswith((".png", ".jpg", ".jpeg")):
|
| 57 |
examples.append(os.path.join(example_dir, file))
|
| 58 |
-
return examples[:
|
| 59 |
|
| 60 |
|
| 61 |
# Create Gradio interface
|
|
|
|
| 55 |
for file in os.listdir(example_dir):
|
| 56 |
if file.lower().endswith((".png", ".jpg", ".jpeg")):
|
| 57 |
examples.append(os.path.join(example_dir, file))
|
| 58 |
+
return examples[:10] # Limit to 3 examples
|
| 59 |
|
| 60 |
|
| 61 |
# Create Gradio interface
|