awacke1 commited on
Commit
191766c
Β·
verified Β·
1 Parent(s): 08244fa

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +114 -90
app.py CHANGED
@@ -2,12 +2,12 @@
2
  import os
3
  import glob
4
  import time
 
5
  import pandas as pd
6
  import torch
7
  from transformers import AutoModelForCausalLM, AutoTokenizer
8
  from diffusers import StableDiffusionPipeline
9
  import fitz
10
- import requests
11
  from PIL import Image
12
  import logging
13
  import asyncio
@@ -82,7 +82,7 @@ class DiffusionBuilder:
82
  def generate(self, prompt: str):
83
  return self.pipeline(prompt, num_inference_steps=20).images[0]
84
 
85
- def generate_filename(sequence, ext="png"):
86
  timestamp = time.strftime("%d%m%Y%H%M%S")
87
  return f"{sequence}_{timestamp}.{ext}"
88
 
@@ -98,35 +98,81 @@ async def process_image_gen(prompt, output_file, builder):
98
  gen_image.save(output_file)
99
  return gen_image
100
 
101
- # Smart Uploader Functions
102
- def upload_files(files, links_title, links_url, history, selected_files):
103
- uploaded = {"images": [], "videos": [], "documents": [], "datasets": [], "links": []}
104
- if files:
105
- for file in files:
106
- ext = file.name.split('.')[-1].lower()
107
- output_path = f"uploaded_{int(time.time())}_{file.name}"
 
 
108
  with open(output_path, "wb") as f:
109
  f.write(file.read())
110
- if ext in ["jpg", "png"]:
111
- uploaded["images"].append(output_path)
112
- elif ext == "mp4":
113
- uploaded["videos"].append(output_path)
114
- elif ext in ["md", "pdf", "docx"]:
115
- uploaded["documents"].append(output_path)
116
- elif ext in ["csv", "xlsx"]:
117
- uploaded["datasets"].append(output_path)
118
- history.append(f"Uploaded: {output_path}")
119
- selected_files[output_path] = False # Default unchecked
120
- if links_title and links_url:
121
- links = list(zip(links_title.split('\n'), links_url.split('\n')))
122
- for title, url in links:
123
- if title and url:
124
- link_entry = f"[{title}]({url})"
125
- uploaded["links"].append(link_entry)
126
- history.append(f"Added Link: {link_entry}")
127
- selected_files[link_entry] = False
128
- return uploaded, history, selected_files
129
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
130
  def update_galleries(history, selected_files):
131
  galleries = {
132
  "images": get_gallery_files(["jpg", "png"]),
@@ -136,15 +182,22 @@ def update_galleries(history, selected_files):
136
  "links": [f for f in selected_files.keys() if f.startswith('[') and '](' in f and f.endswith(')')]
137
  }
138
  gallery_outputs = {
139
- "images": [(Image.open(f), os.path.basename(f)) for f in galleries["images"][:4]],
140
- "videos": [(f, os.path.basename(f)) for f in galleries["videos"][:4]], # Video preview as file path
141
- "documents": [(Image.frombytes("RGB", fitz.open(f)[0].get_pixmap(matrix=fitz.Matrix(0.5, 0.5)).size, fitz.open(f)[0].get_pixmap(matrix=fitz.Matrix(0.5, 0.5)).samples) if f.endswith('.pdf') else f, os.path.basename(f)) for f in galleries["documents"][:4]],
142
- "datasets": [(f, os.path.basename(f)) for f in galleries["datasets"][:4]], # Text preview
143
- "links": [(f, f.split(']')[0][1:]) for f in galleries["links"][:4]]
144
  }
145
  history.append(f"Updated galleries: {sum(len(g) for g in galleries.values())} files")
146
  return gallery_outputs, history, selected_files
147
 
 
 
 
 
 
 
 
148
  def toggle_selection(file_list, selected_files):
149
  for file in file_list:
150
  selected_files[file] = not selected_files.get(file, False)
@@ -169,76 +222,47 @@ with gr.Blocks(title="AI Vision & SFT Titans πŸš€") as demo:
169
 
170
  with gr.Row():
171
  with gr.Column(scale=1):
172
- gr.Markdown("## πŸ“ File Tree")
173
- with gr.Accordion("🌳 Uploads", open=True):
174
- with gr.Row():
175
- gr.Markdown("### πŸ–ΌοΈ Images (jpg/png)")
176
- img_gallery = gr.Gallery(label="Images", columns=4, height="auto")
177
- with gr.Row():
178
- gr.Markdown("### πŸŽ₯ Videos (mp4)")
179
- vid_gallery = gr.Gallery(label="Videos", columns=4, height="auto")
180
- with gr.Row():
181
- gr.Markdown("### πŸ“œ Docs (md/pdf/docx)")
182
- doc_gallery = gr.Gallery(label="Documents", columns=4, height="auto")
183
- with gr.Row():
184
- gr.Markdown("### πŸ“Š Data (csv/xlsx)")
185
- data_gallery = gr.Gallery(label="Datasets", columns=4, height="auto")
186
- with gr.Row():
187
- gr.Markdown("### πŸ”— Links")
188
- link_gallery = gr.Gallery(label="Links", columns=4, height="auto")
189
- gr.Markdown("## πŸ“œ History")
190
- history_output = gr.Textbox(label="Log", lines=5, interactive=False)
191
 
192
  with gr.Column(scale=3):
193
  with gr.Row():
194
  gr.Markdown("## πŸ› οΈ Toolbar")
195
- upload_btn = gr.Button("πŸ“€ Upload")
196
  select_btn = gr.Button("βœ… Select")
197
  gen_btn = gr.Button("🎨 Generate")
198
 
199
  with gr.Tabs():
200
- with gr.TabItem("πŸ“€ Smart Upload"):
201
- file_upload = gr.File(label="Upload Files", file_count="multiple", type="binary")
202
- links_title = gr.Textbox(label="Link Titles (one per line)", lines=3)
203
- links_url = gr.Textbox(label="Link URLs (one per line)", lines=3)
 
 
 
 
 
 
204
  upload_status = gr.Textbox(label="Status")
 
 
 
 
 
 
 
 
 
 
 
 
 
205
 
206
  with gr.TabItem("πŸ” Operations"):
207
  prompt = gr.Textbox(label="Image Gen Prompt", value="Generate a neon version")
208
  op_status = gr.Textbox(label="Status")
209
  op_output = gr.Image(label="Output")
210
-
211
- upload_btn.click(
212
- upload_files,
213
- inputs=[file_upload, links_title, links_url, history, selected_files],
214
- outputs=[upload_status, history, selected_files]
215
- ).then(
216
- update_galleries,
217
- inputs=[history, selected_files],
218
- outputs=[img_gallery, vid_gallery, doc_gallery, data_gallery, link_gallery, history, selected_files]
219
- )
220
-
221
- select_btn.click(
222
- toggle_selection,
223
- inputs=[gr.Dropdown(choices=list(selected_files.value.keys()), multiselect=True, label="Select Files"), selected_files],
224
- outputs=[selected_files]
225
- ).then(
226
- update_galleries,
227
- inputs=[history, selected_files],
228
- outputs=[img_gallery, vid_gallery, doc_gallery, data_gallery, link_gallery, history, selected_files]
229
- )
230
-
231
- gen_btn.click(
232
- image_gen,
233
- inputs=[prompt, builder, history, selected_files],
234
- outputs=[op_status, op_output, history, selected_files]
235
- ).then(
236
- update_galleries,
237
- inputs=[history, selected_files],
238
- outputs=[img_gallery, vid_gallery, doc_gallery, data_gallery, link_gallery, history, selected_files]
239
- )
240
-
241
- # Update history output
242
- demo.load(lambda h: "\n".join(h[-5:]), inputs=[history], outputs=[history_output])
243
 
244
  demo.launch()
 
2
  import os
3
  import glob
4
  import time
5
+ import base64
6
  import pandas as pd
7
  import torch
8
  from transformers import AutoModelForCausalLM, AutoTokenizer
9
  from diffusers import StableDiffusionPipeline
10
  import fitz
 
11
  from PIL import Image
12
  import logging
13
  import asyncio
 
82
  def generate(self, prompt: str):
83
  return self.pipeline(prompt, num_inference_steps=20).images[0]
84
 
85
+ def generate_filename(sequence, ext):
86
  timestamp = time.strftime("%d%m%Y%H%M%S")
87
  return f"{sequence}_{timestamp}.{ext}"
88
 
 
98
  gen_image.save(output_file)
99
  return gen_image
100
 
101
+ # Upload Functions
102
+ def upload_images(files, history, selected_files):
103
+ if not files:
104
+ return "No files uploaded", history, selected_files
105
+ uploaded = []
106
+ for file in files:
107
+ ext = file.name.split('.')[-1].lower()
108
+ if ext in ["jpg", "png"]:
109
+ output_path = f"img_{int(time.time())}_{os.path.basename(file.name)}"
110
  with open(output_path, "wb") as f:
111
  f.write(file.read())
112
+ uploaded.append(output_path)
113
+ history.append(f"Uploaded Image: {output_path}")
114
+ selected_files[output_path] = False
115
+ return f"Uploaded {len(uploaded)} images", history, selected_files
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
116
 
117
+ def upload_videos(files, history, selected_files):
118
+ if not files:
119
+ return "No files uploaded", history, selected_files
120
+ uploaded = []
121
+ for file in files:
122
+ ext = file.name.split('.')[-1].lower()
123
+ if ext == "mp4":
124
+ output_path = f"vid_{int(time.time())}_{os.path.basename(file.name)}"
125
+ with open(output_path, "wb") as f:
126
+ f.write(file.read())
127
+ uploaded.append(output_path)
128
+ history.append(f"Uploaded Video: {output_path}")
129
+ selected_files[output_path] = False
130
+ return f"Uploaded {len(uploaded)} videos", history, selected_files
131
+
132
+ def upload_documents(files, history, selected_files):
133
+ if not files:
134
+ return "No files uploaded", history, selected_files
135
+ uploaded = []
136
+ for file in files:
137
+ ext = file.name.split('.')[-1].lower()
138
+ if ext in ["md", "pdf", "docx"]:
139
+ output_path = f"doc_{int(time.time())}_{os.path.basename(file.name)}"
140
+ with open(output_path, "wb") as f:
141
+ f.write(file.read())
142
+ uploaded.append(output_path)
143
+ history.append(f"Uploaded Document: {output_path}")
144
+ selected_files[output_path] = False
145
+ return f"Uploaded {len(uploaded)} documents", history, selected_files
146
+
147
+ def upload_datasets(files, history, selected_files):
148
+ if not files:
149
+ return "No files uploaded", history, selected_files
150
+ uploaded = []
151
+ for file in files:
152
+ ext = file.name.split('.')[-1].lower()
153
+ if ext in ["csv", "xlsx"]:
154
+ output_path = f"data_{int(time.time())}_{os.path.basename(file.name)}"
155
+ with open(output_path, "wb") as f:
156
+ f.write(file.read())
157
+ uploaded.append(output_path)
158
+ history.append(f"Uploaded Dataset: {output_path}")
159
+ selected_files[output_path] = False
160
+ return f"Uploaded {len(uploaded)} datasets", history, selected_files
161
+
162
+ def upload_links(links_title, links_url, history, selected_files):
163
+ if not links_title or not links_url:
164
+ return "No links provided", history, selected_files
165
+ links = list(zip(links_title.split('\n'), links_url.split('\n')))
166
+ uploaded = []
167
+ for title, url in links:
168
+ if title and url:
169
+ link_entry = f"[{title}]({url})"
170
+ uploaded.append(link_entry)
171
+ history.append(f"Added Link: {link_entry}")
172
+ selected_files[link_entry] = False
173
+ return f"Added {len(uploaded)} links", history, selected_files
174
+
175
+ # Gallery Update
176
  def update_galleries(history, selected_files):
177
  galleries = {
178
  "images": get_gallery_files(["jpg", "png"]),
 
182
  "links": [f for f in selected_files.keys() if f.startswith('[') and '](' in f and f.endswith(')')]
183
  }
184
  gallery_outputs = {
185
+ "images": [(Image.open(f), os.path.basename(f)) for f in galleries["images"]],
186
+ "videos": [(f, os.path.basename(f)) for f in galleries["videos"]], # File path as preview
187
+ "documents": [(Image.frombytes("RGB", fitz.open(f)[0].get_pixmap(matrix=fitz.Matrix(0.5, 0.5)).size, fitz.open(f)[0].get_pixmap(matrix=fitz.Matrix(0.5, 0.5)).samples) if f.endswith('.pdf') else f, os.path.basename(f)) for f in galleries["documents"]],
188
+ "datasets": [(f, os.path.basename(f)) for f in galleries["datasets"]],
189
+ "links": [(f, f.split(']')[0][1:]) for f in galleries["links"]]
190
  }
191
  history.append(f"Updated galleries: {sum(len(g) for g in galleries.values())} files")
192
  return gallery_outputs, history, selected_files
193
 
194
+ # Sidebar Update
195
+ def update_sidebar(history, selected_files):
196
+ all_files = get_gallery_files(["jpg", "png", "mp4", "md", "pdf", "docx", "csv", "xlsx"]) + [f for f in selected_files.keys() if f.startswith('[') and '](' in f and f.endswith(')')]
197
+ file_list = [gr.File(label=os.path.basename(f) if not f.startswith('[') else f.split(']')[0][1:], value=f) for f in all_files]
198
+ return file_list, history
199
+
200
+ # Operations
201
  def toggle_selection(file_list, selected_files):
202
  for file in file_list:
203
  selected_files[file] = not selected_files.get(file, False)
 
222
 
223
  with gr.Row():
224
  with gr.Column(scale=1):
225
+ gr.Markdown("## πŸ“ Files")
226
+ sidebar_files = gr.Files(label="Downloads", height=300)
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
227
 
228
  with gr.Column(scale=3):
229
  with gr.Row():
230
  gr.Markdown("## πŸ› οΈ Toolbar")
 
231
  select_btn = gr.Button("βœ… Select")
232
  gen_btn = gr.Button("🎨 Generate")
233
 
234
  with gr.Tabs():
235
+ with gr.TabItem("πŸ“€ Upload"):
236
+ with gr.Row():
237
+ img_upload = gr.File(label="πŸ–ΌοΈ Images (jpg/png)", file_count="multiple", accept=["image/jpeg", "image/png"])
238
+ vid_upload = gr.File(label="πŸŽ₯ Videos (mp4)", file_count="multiple", accept=["video/mp4"])
239
+ with gr.Row():
240
+ doc_upload = gr.File(label="πŸ“œ Docs (md/pdf/docx)", file_count="multiple", accept=["text/markdown", "application/pdf", "application/vnd.openxmlformats-officedocument.wordprocessingml.document"])
241
+ data_upload = gr.File(label="πŸ“Š Data (csv/xlsx)", file_count="multiple", accept=["text/csv", "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet"])
242
+ with gr.Row():
243
+ links_title = gr.Textbox(label="πŸ”— Link Titles", lines=3)
244
+ links_url = gr.Textbox(label="πŸ”— Link URLs", lines=3)
245
  upload_status = gr.Textbox(label="Status")
246
+ 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(), gr.Gallery(), gr.Gallery(), history, selected_files]).then(update_sidebar, inputs=[history, selected_files], outputs=[sidebar_files, history])
247
+ gr.Button("πŸ“€ Upload Videos").click(upload_videos, inputs=[vid_upload, history, selected_files], outputs=[upload_status, history, selected_files]).then(update_galleries, inputs=[history, selected_files], outputs=[gr.Gallery(), gr.Gallery(), gr.Gallery(), gr.Gallery(), gr.Gallery(), history, selected_files]).then(update_sidebar, inputs=[history, selected_files], outputs=[sidebar_files, history])
248
+ 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(), gr.Gallery(), gr.Gallery(), history, selected_files]).then(update_sidebar, inputs=[history, selected_files], outputs=[sidebar_files, history])
249
+ 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(), gr.Gallery(), gr.Gallery(), history, selected_files]).then(update_sidebar, inputs=[history, selected_files], outputs=[sidebar_files, history])
250
+ gr.Button("πŸ“€ Upload Links").click(upload_links, inputs=[links_title, links_url, history, selected_files], outputs=[upload_status, history, selected_files]).then(update_galleries, inputs=[history, selected_files], outputs=[gr.Gallery(), gr.Gallery(), gr.Gallery(), gr.Gallery(), gr.Gallery(), history, selected_files]).then(update_sidebar, inputs=[history, selected_files], outputs=[sidebar_files, history])
251
+
252
+ with gr.TabItem("πŸ–ΌοΈ Gallery"):
253
+ img_gallery = gr.Gallery(label="πŸ–ΌοΈ Images (jpg/png)", columns=4, height="auto")
254
+ vid_gallery = gr.Gallery(label="πŸŽ₯ Videos (mp4)", columns=4, height="auto")
255
+ doc_gallery = gr.Gallery(label="πŸ“œ Docs (md/pdf/docx)", columns=4, height="auto")
256
+ data_gallery = gr.Gallery(label="πŸ“Š Data (csv/xlsx)", columns=4, height="auto")
257
+ link_gallery = gr.Gallery(label="πŸ”— Links", columns=4, height="auto")
258
+ gr.Button("πŸ”„ Refresh").click(update_galleries, inputs=[history, selected_files], outputs=[img_gallery, vid_gallery, doc_gallery, data_gallery, link_gallery, history, selected_files]).then(update_sidebar, inputs=[history, selected_files], outputs=[sidebar_files, history])
259
 
260
  with gr.TabItem("πŸ” Operations"):
261
  prompt = gr.Textbox(label="Image Gen Prompt", value="Generate a neon version")
262
  op_status = gr.Textbox(label="Status")
263
  op_output = gr.Image(label="Output")
264
+ select_files = gr.Dropdown(choices=list(selected_files.value.keys()), multiselect=True, label="Select Files")
265
+ select_btn.click(toggle_selection, inputs=[select_files, selected_files], outputs=[selected_files]).then(update_sidebar, inputs=[history, selected_files], outputs=[sidebar_files, history])
266
+ gen_btn.click(image_gen, inputs=[prompt, builder, history, selected_files], outputs=[op_status, op_output, history, selected_files]).then(update_galleries, inputs=[history, selected_files], outputs=[img_gallery, vid_gallery, doc_gallery, data_gallery, link_gallery, history, selected_files]).then(update_sidebar, inputs=[history, selected_files], outputs=[sidebar_files, history])
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
267
 
268
  demo.launch()