removed other params from diffusors not being used in fn
Browse files
app.py
CHANGED
@@ -144,8 +144,7 @@ def multimodal_and_generation(message, history):
|
|
144 |
# function to take input and generate text tokena
|
145 |
@spaces.GPU(duration=120)
|
146 |
def diffusing(prompt: str,
|
147 |
-
|
148 |
-
high_noise_frac: float):
|
149 |
"""
|
150 |
Takes input, passes it into the pipeline,
|
151 |
get the top 5 scores, and ouput those scores into images
|
|
|
144 |
# function to take input and generate text tokena
|
145 |
@spaces.GPU(duration=120)
|
146 |
def diffusing(prompt: str,
|
147 |
+
history):
|
|
|
148 |
"""
|
149 |
Takes input, passes it into the pipeline,
|
150 |
get the top 5 scores, and ouput those scores into images
|