Spaces:
Build error
Build error
Update app.py
Browse files
app.py
CHANGED
@@ -79,7 +79,7 @@ class ConversationBot:
|
|
79 |
tool = res['intermediate_steps'][0][0].tool
|
80 |
if tool == "Generate Image From User Input Text":
|
81 |
print("======>Current memory:\n %s" % self.agent.memory)
|
82 |
-
|
83 |
image_filename = res['intermediate_steps'][0][1]
|
84 |
response = res['output'] + f""
|
85 |
state = state + [(text, response)]
|
@@ -157,7 +157,7 @@ class ConversationBot:
|
|
157 |
print("Inputs:", state)
|
158 |
print("======>Previous memory:\n %s" % self.agent.memory)
|
159 |
inpaint = Inpaint(device="cpu")
|
160 |
-
new_image_filename, new_audio_filename = inpaint.
|
161 |
AI_prompt = "Here are the predict audio and the mel spectrum." + f"*{new_audio_filename}*" + f"*{new_image_filename}*"
|
162 |
self.agent.memory.buffer = self.agent.memory.buffer + 'AI: ' + AI_prompt
|
163 |
print("======>Current memory:\n %s" % self.agent.memory)
|
|
|
79 |
tool = res['intermediate_steps'][0][0].tool
|
80 |
if tool == "Generate Image From User Input Text":
|
81 |
print("======>Current memory:\n %s" % self.agent.memory)
|
82 |
+
response = re.sub('(image/\S*png)', lambda m: f'})*{m.group(0)}*', res['output'])
|
83 |
image_filename = res['intermediate_steps'][0][1]
|
84 |
response = res['output'] + f""
|
85 |
state = state + [(text, response)]
|
|
|
157 |
print("Inputs:", state)
|
158 |
print("======>Previous memory:\n %s" % self.agent.memory)
|
159 |
inpaint = Inpaint(device="cpu")
|
160 |
+
new_image_filename, new_audio_filename = inpaint.predict(audio_filename, image_filename)
|
161 |
AI_prompt = "Here are the predict audio and the mel spectrum." + f"*{new_audio_filename}*" + f"*{new_image_filename}*"
|
162 |
self.agent.memory.buffer = self.agent.memory.buffer + 'AI: ' + AI_prompt
|
163 |
print("======>Current memory:\n %s" % self.agent.memory)
|