Update app.py
Browse files
app.py
CHANGED
|
@@ -168,6 +168,7 @@ def generate_video(
|
|
| 168 |
enhance_prompt=enhance_prompt,
|
| 169 |
input_image=image_input,
|
| 170 |
seed=current_seed,
|
|
|
|
| 171 |
api_name="/encode_prompt"
|
| 172 |
)
|
| 173 |
embedding_path = result[0] # Path to .pt file
|
|
@@ -313,4 +314,4 @@ css = '''
|
|
| 313 |
.gradio-container .contain{max-width: 1200px !important; margin: 0 auto !important}
|
| 314 |
'''
|
| 315 |
if __name__ == "__main__":
|
| 316 |
-
demo.launch(theme=gr.themes.Citrus(), css=css)
|
|
|
|
| 168 |
enhance_prompt=enhance_prompt,
|
| 169 |
input_image=image_input,
|
| 170 |
seed=current_seed,
|
| 171 |
+
negative_prompt="",
|
| 172 |
api_name="/encode_prompt"
|
| 173 |
)
|
| 174 |
embedding_path = result[0] # Path to .pt file
|
|
|
|
| 314 |
.gradio-container .contain{max-width: 1200px !important; margin: 0 auto !important}
|
| 315 |
'''
|
| 316 |
if __name__ == "__main__":
|
| 317 |
+
demo.launch(theme=gr.themes.Citrus(), css=css, share=True)
|