lmzjms commited on
Commit
04e3d86
·
1 Parent(s): 9bf0961

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
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
- # response = re.sub('(image/\S*png)', lambda m: f'![](/file={m.group(0)})*{m.group(0)}*', res['output'])
83
  image_filename = res['intermediate_steps'][0][1]
84
  response = res['output'] + f"![](/file={image_filename})"
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.inference(audio_filename, image_filename)
161
  AI_prompt = "Here are the predict audio and the mel spectrum." + f"*{new_audio_filename}*" + f"![](/file={new_image_filename})*{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'![](/file={m.group(0)})*{m.group(0)}*', res['output'])
83
  image_filename = res['intermediate_steps'][0][1]
84
  response = res['output'] + f"![](/file={image_filename})"
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"![](/file={new_image_filename})*{new_image_filename}*"
162
  self.agent.memory.buffer = self.agent.memory.buffer + 'AI: ' + AI_prompt
163
  print("======>Current memory:\n %s" % self.agent.memory)