Spaces:
Running
on
Zero
Running
on
Zero
add num_inference_steps to gr.Interface and create_presentation function
Browse files
app.py
CHANGED
@@ -10,7 +10,7 @@ from src.font import Font
|
|
10 |
logs_dir = "logs"
|
11 |
fonts_dir = "fonts"
|
12 |
|
13 |
-
def create_presentation(description: str, slides_num: int, language: str):
|
14 |
# Select the appropriate prompt configuration based on the selected language
|
15 |
if language == "English":
|
16 |
prompt_config = en_gigachat_config
|
@@ -34,6 +34,7 @@ def create_presentation(description: str, slides_num: int, language: str):
|
|
34 |
slides_num=slides_num,
|
35 |
font=font,
|
36 |
output_dir=output_dir,
|
|
|
37 |
)
|
38 |
|
39 |
filename = f'{output_dir}/presentation.pptx'
|
@@ -88,7 +89,32 @@ iface = gr.Interface(
|
|
88 |
label="Language",
|
89 |
choices=["English", "Русский"],
|
90 |
value="English"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
91 |
)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
92 |
],
|
93 |
outputs=gr.File(
|
94 |
label="Download Presentation"
|
|
|
10 |
logs_dir = "logs"
|
11 |
fonts_dir = "fonts"
|
12 |
|
13 |
+
def create_presentation(description: str, slides_num: int, language: str, num_inference_steps: int): # width: int, height: int
|
14 |
# Select the appropriate prompt configuration based on the selected language
|
15 |
if language == "English":
|
16 |
prompt_config = en_gigachat_config
|
|
|
34 |
slides_num=slides_num,
|
35 |
font=font,
|
36 |
output_dir=output_dir,
|
37 |
+
num_inference_steps=num_inference_steps
|
38 |
)
|
39 |
|
40 |
filename = f'{output_dir}/presentation.pptx'
|
|
|
89 |
label="Language",
|
90 |
choices=["English", "Русский"],
|
91 |
value="English"
|
92 |
+
),
|
93 |
+
gr.Slider(
|
94 |
+
label="number of diffusion steps",
|
95 |
+
minimum=2,
|
96 |
+
maximum=50,
|
97 |
+
step=1,
|
98 |
+
value=50,
|
99 |
)
|
100 |
+
########
|
101 |
+
# gr.Slider(
|
102 |
+
# label="width of the slide image",
|
103 |
+
# minimum=256,
|
104 |
+
# maximum=MAX_IMAGE_SIZE,
|
105 |
+
# step=32,
|
106 |
+
# value=1024, #Replace with defaults that work for your model
|
107 |
+
# )
|
108 |
+
|
109 |
+
# gr.Slider(
|
110 |
+
# label="height of the slide image",
|
111 |
+
# minimum=256,
|
112 |
+
# maximum=MAX_IMAGE_SIZE,
|
113 |
+
# step=32,
|
114 |
+
# value=1024, #Replace with defaults that work for your model
|
115 |
+
# )
|
116 |
+
|
117 |
+
|
118 |
],
|
119 |
outputs=gr.File(
|
120 |
label="Download Presentation"
|