nielsr HF staff hysts HF staff commited on
Commit
c38d0f4
·
1 Parent(s): 953e4d8

- Fix the camption prompt for Fuyu-8b (abc0647db365eec76b89ba4408fd91f5d9881501)


Co-authored-by: hysts <[email protected]>

Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -110,7 +110,7 @@ def generate_caption_fuyu(image_path: str, return_job: bool = False) -> str | Jo
110
  try:
111
  client = Client("adept/fuyu-8b-demo")
112
  fn = client.submit if return_job else client.predict
113
- return fn(image_path, "Generate a coco style caption.", fn_index=3)
114
  except Exception:
115
  gr.Warning("The Fuyu-8B Space is currently unavailable. Please try again later.")
116
  return ""
 
110
  try:
111
  client = Client("adept/fuyu-8b-demo")
112
  fn = client.submit if return_job else client.predict
113
+ return fn(image_path, "Generate a coco style caption.\n", fn_index=3)
114
  except Exception:
115
  gr.Warning("The Fuyu-8B Space is currently unavailable. Please try again later.")
116
  return ""