awacke1 commited on
Commit
7d67450
ยท
verified ยท
1 Parent(s): 614ef28

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +41 -49
app.py CHANGED
@@ -1,13 +1,3 @@
1
- Apologies for the breakup! Hereโ€™s the complete, unbroken code listing for app.py, incorporating the Gradio 5.23.0 features demo without the accept parameter, all in one cohesive block:
2
-
3
- python
4
-
5
- Collapse
6
-
7
- Wrap
8
-
9
- Copy
10
- #!/usr/bin/env python3
11
  # ๐Ÿ˜‚ Shebanginโ€™ it like itโ€™s 1999โ€”Python 3, letโ€™s roll!
12
 
13
  # ๐Ÿงณ Importing the whole circusโ€”get ready for a wild ride!
@@ -130,68 +120,70 @@ def get_dataframe():
130
 
131
  # ๐Ÿ“œ Mermaid.js demoโ€”flowchart fun from 5.23.0!
132
  def get_mermaid_chart():
133
- return """
134
- ```mermaid
135
  graph TD
136
  A[Upload Files] --> B[View Gallery]
137
  B --> C[Select Files]
138
  C --> D[Generate Output]
139
  D --> E[Deep Link to Result]
140
- """
141
 
142
- ๐ŸŽจ Code editor demoโ€”Jedi completion from 5.23.0!
143
  def get_code_snippet():
144
  return "def hello(name):\n return f'Hello, {name}!'"
145
 
146
- ๐ŸŽช Gradio UIโ€”step right up to the AI circus!
147
  with gr.Blocks(title="Gradio 5.23.0 Mastery Demo ๐Ÿš€") as demo:
148
  gr.Markdown(f"# Gradio 5.23.0 Mastery Demo ๐Ÿš€\nRunning Gradio version: {pkg_resources.get_distribution('gradio').version}") # ๐ŸŽ‰ Welcome to the big top with version check!
149
  history = gr.State(value=[]) # ๐Ÿ“œ The ringmasterโ€™s logbook!
150
  selected_files = gr.State(value={}) # โœ… The chosen ones, ready to perform!
151
 
152
  with gr.Row():
153
- with gr.Column(scale=1):
154
- gr.Markdown("## ๐Ÿ“ Files") # ๐Ÿ—ƒ๏ธ The file circus tent!
155
- sidebar_files = gr.Files(label="Downloads", height=300) # ๐Ÿ“ฅ Grab your souvenirs here!
156
 
157
  with gr.Column(scale=3):
158
- with gr.Row():
159
- gr.Markdown("## ๐Ÿ› ๏ธ Toolbar") # ๐Ÿ”ง The circus control panel!
160
- select_btn = gr.Button("โœ… Select") # โœ… Pick your performers!
161
 
162
  with gr.Tabs():
163
- with gr.TabItem("๐Ÿ“ค Upload"): # ๐Ÿ“ค The upload trapeze!
164
- with gr.Row():
165
- img_upload = gr.File(label="๐Ÿ–ผ๏ธ Images (jpg/png)", file_count="multiple") # ๐Ÿ–ผ๏ธ Picture trapeze!
166
- doc_upload = gr.File(label="๐Ÿ“œ Docs (pdf)", file_count="multiple") # ๐Ÿ“œ Doc drop!
167
- with gr.Row():
168
- data_upload = gr.File(label="๐Ÿ“Š Data (csv)", file_count="multiple") # ๐Ÿ“Š Data dive!
169
- upload_status = gr.Textbox(label="Status") # ๐Ÿ“ข Ringmasterโ€™s update!
170
- gr.Button("๐Ÿ“ค Upload Images").click(upload_images, inputs=[img_upload, history, selected_files], outputs=[upload_status, history, selected_files]).then(update_galleries, inputs=[history, selected_files], outputs=[gr.Gallery(), gr.Gallery(), gr.Gallery(), history, selected_files]).then(update_sidebar, inputs=[history, selected_files], outputs=[sidebar_files, history])
171
- gr.Button("๐Ÿ“ค Upload Docs").click(upload_documents, inputs=[doc_upload, history, selected_files], outputs=[upload_status, history, selected_files]).then(update_galleries, inputs=[history, selected_files], outputs=[gr.Gallery(), gr.Gallery(), gr.Gallery(), history, selected_files]).then(update_sidebar, inputs=[history, selected_files], outputs=[sidebar_files, history])
172
- gr.Button("๐Ÿ“ค Upload Data").click(upload_datasets, inputs=[data_upload, history, selected_files], outputs=[upload_status, history, selected_files]).then(update_galleries, inputs=[history, selected_files], outputs=[gr.Gallery(), gr.Gallery(), gr.Gallery(), history, selected_files]).then(update_sidebar, inputs=[history, selected_files], outputs=[sidebar_files, history])
173
 
174
  with gr.TabItem("๐Ÿ–ผ๏ธ Gallery"): # ๐Ÿ–ผ๏ธ The big top showcase!
175
- img_gallery = gr.Gallery(label="๐Ÿ–ผ๏ธ Images (jpg/png)", columns=4, height="auto") # ๐Ÿ–ผ๏ธ Picture parade!
176
- doc_gallery = gr.Gallery(label="๐Ÿ“œ Docs (pdf)", columns=4, height="auto") # ๐Ÿ“œ Doc depot!
177
- data_gallery = gr.Gallery(label="๐Ÿ“Š Data (csv)", columns=4, height="auto") # ๐Ÿ“Š Data den!
178
- gr.Button("๐Ÿ”„ Refresh").click(update_galleries, inputs=[history, selected_files], outputs=[img_gallery, doc_gallery, data_gallery, history, selected_files]).then(update_sidebar, inputs=[history, selected_files], outputs=[sidebar_files, history])
179
 
180
  with gr.TabItem("๐Ÿ” Features"): # ๐Ÿ” The magic trick tent!
181
- gr.Markdown("### ๐Ÿ“Š Dataframe Mastery (5.21.0)") # ๐Ÿ“Š Flexing new dataframe tricks!
182
- df_output = gr.Dataframe(value=get_dataframe, interactive=True, static_columns=["Name"], wrap=True) # ๐Ÿ”ฅ Static columns, drag selection from 5.21.0!
183
- gr.Markdown("### ๐Ÿ“œ Mermaid.js Flowchart (5.23.0)") # ๐Ÿ“œ Mermaid.js from 5.23.0!
184
- mermaid_output = gr.Markdown(value=get_mermaid_chart) # ๐ŸŒ Flowchart fun!
185
- gr.Markdown("### ๐ŸŽจ Code Editor with Jedi Completion (5.23.0)") # ๐ŸŽจ Jedi power from 5.23.0!
186
- code_output = gr.Code(value=get_code_snippet, language="python", interactive=True) # โœ๏ธ Code with autocompletion!
187
- gr.Markdown("### ๐Ÿ’ฅ Deep Link Button (5.23.0)") # ๐Ÿ’ฅ Deep links from 5.23.0!
188
- DeepLinkButton(label="Link to Latest Output", variant="secondary", deep_link="/gallery/images") # ๐Ÿ”ฅ Secondary variant from 5.23.0!
189
-
190
- with gr.TabItem("๐Ÿ“œ History"): # ๐Ÿ“œ The logbook showcase!
191
- history_output = gr.Textbox(label="History", lines=5, value="\n".join(history.value), interactive=False) # ๐Ÿ“œ Whatโ€™s been cooking?
192
-
193
- ๐ŸŽ‰ Auto-update history on loadโ€”Gradio 5.20.1 event listener vibes!
 
 
 
194
  demo.load(lambda h: "\n".join(h[-5:]), inputs=[history], outputs=[history_output])
195
 
196
- ๐ŸŽ‰ Launch the circusโ€”step right up, folks!
197
  demo.launch()
 
 
 
 
 
 
 
 
 
 
 
1
  # ๐Ÿ˜‚ Shebanginโ€™ it like itโ€™s 1999โ€”Python 3, letโ€™s roll!
2
 
3
  # ๐Ÿงณ Importing the whole circusโ€”get ready for a wild ride!
 
120
 
121
  # ๐Ÿ“œ Mermaid.js demoโ€”flowchart fun from 5.23.0!
122
  def get_mermaid_chart():
123
+ return """```mermaid
 
124
  graph TD
125
  A[Upload Files] --> B[View Gallery]
126
  B --> C[Select Files]
127
  C --> D[Generate Output]
128
  D --> E[Deep Link to Result]
129
+ ```"""
130
 
131
+ # ๐ŸŽจ Code editor demoโ€”Jedi completion from 5.23.0!
132
  def get_code_snippet():
133
  return "def hello(name):\n return f'Hello, {name}!'"
134
 
135
+ # ๐ŸŽช Gradio UIโ€”step right up to the AI circus!
136
  with gr.Blocks(title="Gradio 5.23.0 Mastery Demo ๐Ÿš€") as demo:
137
  gr.Markdown(f"# Gradio 5.23.0 Mastery Demo ๐Ÿš€\nRunning Gradio version: {pkg_resources.get_distribution('gradio').version}") # ๐ŸŽ‰ Welcome to the big top with version check!
138
  history = gr.State(value=[]) # ๐Ÿ“œ The ringmasterโ€™s logbook!
139
  selected_files = gr.State(value={}) # โœ… The chosen ones, ready to perform!
140
 
141
  with gr.Row():
142
+ with gr.Column(scale=1):
143
+ gr.Markdown("## ๐Ÿ“ Files") # ๐Ÿ—ƒ๏ธ The file circus tent!
144
+ sidebar_files = gr.Files(label="Downloads", height=300) # ๐Ÿ“ฅ Grab your souvenirs here!
145
 
146
  with gr.Column(scale=3):
147
+ with gr.Row():
148
+ gr.Markdown("## ๐Ÿ› ๏ธ Toolbar") # ๐Ÿ”ง The circus control panel!
149
+ select_btn = gr.Button("โœ… Select") # โœ… Pick your performers!
150
 
151
  with gr.Tabs():
152
+ with gr.TabItem("๐Ÿ“ค Upload"): # ๐Ÿ“ค The upload trapeze!
153
+ with gr.Row():
154
+ img_upload = gr.File(label="๐Ÿ–ผ๏ธ Images (jpg/png)", file_count="multiple") # ๐Ÿ–ผ๏ธ Picture trapeze!
155
+ doc_upload = gr.File(label="๐Ÿ“œ Docs (pdf)", file_count="multiple") # ๐Ÿ“œ Doc drop!
156
+ with gr.Row():
157
+ data_upload = gr.File(label="๐Ÿ“Š Data (csv)", file_count="multiple") # ๐Ÿ“Š Data dive!
158
+ upload_status = gr.Textbox(label="Status") # ๐Ÿ“ข Ringmasterโ€™s update!
159
+ gr.Button("๐Ÿ“ค Upload Images").click(upload_images, inputs=[img_upload, history, selected_files], outputs=[upload_status, history, selected_files]).then(update_galleries, inputs=[history, selected_files], outputs=[gr.Gallery(), gr.Gallery(), gr.Gallery(), history, selected_files]).then(update_sidebar, inputs=[history, selected_files], outputs=[sidebar_files, history])
160
+ gr.Button("๐Ÿ“ค Upload Docs").click(upload_documents, inputs=[doc_upload, history, selected_files], outputs=[upload_status, history, selected_files]).then(update_galleries, inputs=[history, selected_files], outputs=[gr.Gallery(), gr.Gallery(), gr.Gallery(), history, selected_files]).then(update_sidebar, inputs=[history, selected_files], outputs=[sidebar_files, history])
161
+ gr.Button("๐Ÿ“ค Upload Data").click(upload_datasets, inputs=[data_upload, history, selected_files], outputs=[upload_status, history, selected_files]).then(update_galleries, inputs=[history, selected_files], outputs=[gr.Gallery(), gr.Gallery(), gr.Gallery(), history, selected_files]).then(update_sidebar, inputs=[history, selected_files], outputs=[sidebar_files, history])
162
 
163
  with gr.TabItem("๐Ÿ–ผ๏ธ Gallery"): # ๐Ÿ–ผ๏ธ The big top showcase!
164
+ img_gallery = gr.Gallery(label="๐Ÿ–ผ๏ธ Images (jpg/png)", columns=4, height="auto") # ๐Ÿ–ผ๏ธ Picture parade!
165
+ doc_gallery = gr.Gallery(label="๐Ÿ“œ Docs (pdf)", columns=4, height="auto") # ๐Ÿ“œ Doc depot!
166
+ data_gallery = gr.Gallery(label="๐Ÿ“Š Data (csv)", columns=4, height="auto") # ๐Ÿ“Š Data den!
167
+ gr.Button("๐Ÿ”„ Refresh").click(update_galleries, inputs=[history, selected_files], outputs=[img_gallery, doc_gallery, data_gallery, history, selected_files]).then(update_sidebar, inputs=[history, selected_files], outputs=[sidebar_files, history])
168
 
169
  with gr.TabItem("๐Ÿ” Features"): # ๐Ÿ” The magic trick tent!
170
+ gr.Markdown("### ๐Ÿ“Š Dataframe Mastery (5.21.0)") # ๐Ÿ“Š Flexing new dataframe tricks!
171
+ df_output = gr.Dataframe(value=get_dataframe, interactive=True, static_columns=["Name"], wrap=True) # ๐Ÿ”ฅ Static columns, drag selection from 5.21.0!
172
+
173
+ gr.Markdown("### ๐Ÿ“œ Mermaid.js Flowchart (5.23.0)") # ๐Ÿ“œ Mermaid.js from 5.23.0!
174
+ mermaid_output = gr.Markdown(value=get_mermaid_chart) # ๐ŸŒ Flowchart fun!
175
+
176
+ gr.Markdown("### ๐ŸŽจ Code Editor with Jedi Completion (5.23.0)") # ๐ŸŽจ Jedi power from 5.23.0!
177
+ code_output = gr.Code(value=get_code_snippet, language="python", interactive=True) # โœ๏ธ Code with autocompletion!
178
+
179
+ gr.Markdown("### ๐Ÿ’ฅ Deep Link Button (5.23.0)") # ๐Ÿ’ฅ Deep links from 5.23.0!
180
+ DeepLinkButton(label="Link to Latest Output", variant="secondary", deep_link="/gallery/images") # ๐Ÿ”ฅ Secondary variant from 5.23.0!
181
+
182
+ with gr.TabItem("๐Ÿ“œ History"): # ๐Ÿ“œ The logbook showcase!
183
+ history_output = gr.Textbox(label="History", lines=5, value="\n".join(history.value), interactive=False) # ๐Ÿ“œ Whatโ€™s been cooking?
184
+
185
+ # ๐ŸŽ‰ Auto-update history on loadโ€”Gradio 5.20.1 event listener vibes!
186
  demo.load(lambda h: "\n".join(h[-5:]), inputs=[history], outputs=[history_output])
187
 
188
+ # ๐ŸŽ‰ Launch the circusโ€”step right up, folks!
189
  demo.launch()