Update app.py
Browse files
app.py
CHANGED
|
@@ -382,8 +382,8 @@ storyteller = ImageStoryteller()
|
|
| 382 |
|
| 383 |
# Check for local example images
|
| 384 |
example_images = []
|
| 385 |
-
for i in range(1,
|
| 386 |
-
filename = f"
|
| 387 |
if os.path.exists(filename):
|
| 388 |
example_images.append([filename])
|
| 389 |
print(f"Found example image: {filename}")
|
|
|
|
| 382 |
|
| 383 |
# Check for local example images
|
| 384 |
example_images = []
|
| 385 |
+
for i in range(1, 3):
|
| 386 |
+
filename = f"obj_{i:02d}.jpg"
|
| 387 |
if os.path.exists(filename):
|
| 388 |
example_images.append([filename])
|
| 389 |
print(f"Found example image: {filename}")
|