nekoniii3 commited on
Commit
17c3d50
1 Parent(s): dbdf09f

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -7
app.py CHANGED
@@ -23,7 +23,7 @@ file_format = {".png", ".jpeg", ".jpg", ".webp", ".gif", ".PNG", ".JPEG", ".JPG"
23
  # IMG_FOLDER = "sample_data" #"images"
24
 
25
  # 各種メッセージ
26
- PLACEHOLDER = "DaLL-E3を利用の場合「『○○』で作ってください。」\nVisionを利用の場合「この画像について説明して下さい。」など入力して下さい。"
27
  # IMG_MSG = "(画像ファイルを追加しました。リセットボタンの上に表示されています。)"
28
  DEL_MSG = "こちらをクリックして表示"
29
  ANT_MSG = "(下部の[出力ファイル]にファイルを追加しました。)"
@@ -258,8 +258,7 @@ def bot(state, history, image_path):
258
  image_name = dt.strftime("%Y%m%d%H%M%S") + ".png"
259
 
260
  # ファイルパスは手動設定(誤りがないように)
261
- # out_image_path = user_id + "/" + image_name
262
- out_image_path = "cat.jpg"
263
 
264
  # dall-e3のとき"image_path"は出力ファイルパス
265
  func_args["image_path"] = out_image_path
@@ -303,11 +302,8 @@ def bot(state, history, image_path):
303
  for i, tool_call in enumerate(tool_calls):
304
 
305
  if i > 0:
306
- # print(history_outputs[-(i+1)])
307
- # # 最新のものからセット
308
- # tool_outputs.append({"tool_call_id": history_outputs[-(i+1)]["tool_call_id"], "output": history_outputs[-(i+1)]["output"]})
309
 
310
- # ダミー をセットする
311
  tool_outputs.append({"tool_call_id": tool_call.id, "output": '{"answer" : ""}'})
312
 
313
  print(tool_outputs)
@@ -600,6 +596,7 @@ with gr.Blocks() as demo:
600
  gr.Markdown("<h3>" + caution + "</h3>")
601
 
602
 
 
603
  def request_DallE3(client, prompt, size, quality, out_image_path):
604
 
605
  err_msg = ""
 
23
  # IMG_FOLDER = "sample_data" #"images"
24
 
25
  # 各種メッセージ
26
+ PLACEHOLDER = "DaLL-E3を利用の場合「『○○』で画像を作ってください。」\nVisionを利用の場合「この画像について説明して下さい。」など入力して下さい。"
27
  # IMG_MSG = "(画像ファイルを追加しました。リセットボタンの上に表示されています。)"
28
  DEL_MSG = "こちらをクリックして表示"
29
  ANT_MSG = "(下部の[出力ファイル]にファイルを追加しました。)"
 
258
  image_name = dt.strftime("%Y%m%d%H%M%S") + ".png"
259
 
260
  # ファイルパスは手動設定(誤りがないように)
261
+ out_image_path = user_id + "/" + image_name
 
262
 
263
  # dall-e3のとき"image_path"は出力ファイルパス
264
  func_args["image_path"] = out_image_path
 
302
  for i, tool_call in enumerate(tool_calls):
303
 
304
  if i > 0:
 
 
 
305
 
306
+ # ダミー をセットする
307
  tool_outputs.append({"tool_call_id": tool_call.id, "output": '{"answer" : ""}'})
308
 
309
  print(tool_outputs)
 
596
  gr.Markdown("<h3>" + caution + "</h3>")
597
 
598
 
599
+
600
  def request_DallE3(client, prompt, size, quality, out_image_path):
601
 
602
  err_msg = ""