Rahatara commited on
Commit
c922ff3
·
verified ·
1 Parent(s): 0881787

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +5 -5
app.py CHANGED
@@ -33,11 +33,6 @@ demo = gr.ChatInterface(
33
  fn=respond,
34
  title="🎬 Storyboard Generator AI",
35
  description="Create professional storyboards for films, animations, and more!",
36
- examples=[
37
- "Create a storyboard for a 30-second coffee commercial",
38
- "Generate a horror movie opening scene storyboard",
39
- "Design a storyboard for a romantic comedy meet-cute at a bookstore",
40
- ],
41
  additional_inputs=[
42
  gr.Dropdown(
43
  choices=[
@@ -68,6 +63,11 @@ demo = gr.ChatInterface(
68
  info="Maximum length of the response"
69
  ),
70
  ],
 
 
 
 
 
71
  theme="soft",
72
  )
73
 
 
33
  fn=respond,
34
  title="🎬 Storyboard Generator AI",
35
  description="Create professional storyboards for films, animations, and more!",
 
 
 
 
 
36
  additional_inputs=[
37
  gr.Dropdown(
38
  choices=[
 
63
  info="Maximum length of the response"
64
  ),
65
  ],
66
+ examples=[
67
+ ["Create a storyboard for a 30-second coffee commercial"],
68
+ ["Generate a horror movie opening scene storyboard"],
69
+ ["Design a storyboard for a romantic comedy meet-cute at a bookstore"],
70
+ ],
71
  theme="soft",
72
  )
73