tchung1970 Claude commited on
Commit
a189bec
·
1 Parent(s): bdb5e40

Add American Gothic image locally

Browse files

Download and use local copy instead of URL for consistency with other examples

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>

Files changed (3) hide show
  1. .gitattributes +1 -0
  2. american_gothic.jpg +3 -0
  3. app.py +1 -1
.gitattributes CHANGED
@@ -38,3 +38,4 @@ grumpy.png filter=lfs diff=lfs merge=lfs -text
38
  wednesday.png filter=lfs diff=lfs merge=lfs -text
39
  monkey.jpg filter=lfs diff=lfs merge=lfs -text
40
  tool_of_the_sea.png filter=lfs diff=lfs merge=lfs -text
 
 
38
  wednesday.png filter=lfs diff=lfs merge=lfs -text
39
  monkey.jpg filter=lfs diff=lfs merge=lfs -text
40
  tool_of_the_sea.png filter=lfs diff=lfs merge=lfs -text
41
+ american_gothic.jpg filter=lfs diff=lfs merge=lfs -text
american_gothic.jpg ADDED

Git LFS Details

  • SHA256: aa135b2efb57f27770d0e3cece5c2241dcd189176e87cd10097d3076907b50af
  • Pointer size: 131 Bytes
  • Size of remote file: 925 kB
app.py CHANGED
@@ -292,7 +292,7 @@ with gr.Blocks(theme=gr.themes.Citrus(), css=css) as demo:
292
  # Examples
293
  gr.Examples(
294
  examples=[
295
- ["https://upload.wikimedia.org/wikipedia/commons/thumb/c/cc/Grant_Wood_-_American_Gothic_-_Google_Art_Project.jpg/1697px-Grant_Wood_-_American_Gothic_-_Google_Art_Project.jpg", 0, 0, 0, False, 0, True, 1.0, 4, 1024, 768],
296
  ["tool_of_the_sea.png", 90, 0, 0, False, 0, True, 1.0, 4, 568, 1024],
297
  ["monkey.jpg", -90, 0, 0, False, 0, True, 1.0, 4, 704, 1024],
298
  ["metropolis.jpg", 0, 0, -1, False, 0, True, 1.0, 4, 816, 1024],
 
292
  # Examples
293
  gr.Examples(
294
  examples=[
295
+ ["american_gothic.jpg", 0, 0, 0, False, 0, True, 1.0, 4, 1024, 768],
296
  ["tool_of_the_sea.png", 90, 0, 0, False, 0, True, 1.0, 4, 568, 1024],
297
  ["monkey.jpg", -90, 0, 0, False, 0, True, 1.0, 4, 704, 1024],
298
  ["metropolis.jpg", 0, 0, -1, False, 0, True, 1.0, 4, 816, 1024],