Placed the message for the imagery condition to be text for the diffusor
Browse files
app.py
CHANGED
@@ -164,6 +164,7 @@ def bot_comms(message, history):
|
|
164 |
|
165 |
if mode == "imagery":
|
166 |
logger.debug("Processing imagery prompt.")
|
|
|
167 |
image = diffusing(message)
|
168 |
yield image
|
169 |
return
|
|
|
164 |
|
165 |
if mode == "imagery":
|
166 |
logger.debug("Processing imagery prompt.")
|
167 |
+
message = message["text"]
|
168 |
image = diffusing(message)
|
169 |
yield image
|
170 |
return
|