Spaces:
Running
Running
delete img
Browse files
app.py
CHANGED
@@ -106,19 +106,20 @@ def create_pptx(api_key, instruction, model_name="gpt-4o", max_tokens=4096):
|
|
106 |
temp_files = files_after - files_before # Identify newly created files
|
107 |
|
108 |
# Convert the pptx to jpg for preview
|
109 |
-
preview_image = "image_previews/output.jpg"
|
110 |
-
command = [
|
111 |
-
|
112 |
-
|
113 |
-
|
114 |
-
|
115 |
-
|
116 |
-
]
|
117 |
-
subprocess.run(command)
|
118 |
-
temp_files.add(preview_image)
|
119 |
|
120 |
# If successful, return the result
|
121 |
-
return "Slide generated successfully! Download your slide below.", pptx_path
|
|
|
122 |
except subprocess.CalledProcessError as e:
|
123 |
print(f"Attempt {attempt + 1} failed: {e.stderr}")
|
124 |
|
@@ -167,8 +168,8 @@ ppt.save("output.pptx")
|
|
167 |
|
168 |
# Create a Gradio interface
|
169 |
def gradio_demo(api_key, instruction):
|
170 |
-
status, pptx_path
|
171 |
-
return status, pptx_path
|
172 |
|
173 |
iface = gr.Interface(
|
174 |
fn=gradio_demo,
|
@@ -179,7 +180,7 @@ iface = gr.Interface(
|
|
179 |
outputs=[
|
180 |
gr.Textbox(label="Status"),
|
181 |
gr.File(label="Download Slide"),
|
182 |
-
gr.Image(label="Slide Preview", type="filepath")
|
183 |
],
|
184 |
title="AutoPresent",
|
185 |
description="Automatically Generate a presentation slide"
|
|
|
106 |
temp_files = files_after - files_before # Identify newly created files
|
107 |
|
108 |
# Convert the pptx to jpg for preview
|
109 |
+
# preview_image = "image_previews/output.jpg"
|
110 |
+
# command = [
|
111 |
+
# "libreoffice",
|
112 |
+
# "--headless",
|
113 |
+
# "--convert-to", "jpg",
|
114 |
+
# "--outdir", "image_previews",
|
115 |
+
# pptx_path
|
116 |
+
# ]
|
117 |
+
# subprocess.run(command)
|
118 |
+
# temp_files.add(preview_image)
|
119 |
|
120 |
# If successful, return the result
|
121 |
+
return "Slide generated successfully! Download your slide below.", pptx_path
|
122 |
+
# , preview_image
|
123 |
except subprocess.CalledProcessError as e:
|
124 |
print(f"Attempt {attempt + 1} failed: {e.stderr}")
|
125 |
|
|
|
168 |
|
169 |
# Create a Gradio interface
|
170 |
def gradio_demo(api_key, instruction):
|
171 |
+
status, pptx_path = create_pptx(api_key, instruction)
|
172 |
+
return status, pptx_path
|
173 |
|
174 |
iface = gr.Interface(
|
175 |
fn=gradio_demo,
|
|
|
180 |
outputs=[
|
181 |
gr.Textbox(label="Status"),
|
182 |
gr.File(label="Download Slide"),
|
183 |
+
# gr.Image(label="Slide Preview", type="filepath")
|
184 |
],
|
185 |
title="AutoPresent",
|
186 |
description="Automatically Generate a presentation slide"
|