nguyenbh commited on
Commit
709fb5e
·
1 Parent(s): 45fea98

Update prompts

Browse files
Files changed (1) hide show
  1. app.py +3 -3
app.py CHANGED
@@ -617,21 +617,21 @@ with gr.Blocks(theme=gr.themes.Soft(), css=css) as demo:
617
  img_example1_btn = gr.Button("Run it", size="sm")
618
 
619
  # Example 2
620
- gr.Markdown("Example 2: **Describe the chart in details.**")
621
  gr.Image("https://upload.wikimedia.org/wikipedia/commons/thumb/0/0a/Places_to_visit_in_Vietnam_-_SOTC.jpg/640px-Places_to_visit_in_Vietnam_-_SOTC.jpg", label="Preview")
622
  img_example2_btn = gr.Button("Run it", size="sm")
623
 
624
  # Define handlers for image examples
625
  def run_image_example1():
626
  return process_image_example_direct(
627
- "Describe this image in details.",
628
  "https://upload.wikimedia.org/wikipedia/commons/thumb/3/31/Hanoi_Temple_of_Literature.jpg/640px-Hanoi_Temple_of_Literature.jpg",
629
  [], []
630
  )
631
 
632
  def run_image_example2():
633
  return process_image_example_direct(
634
- "Write a limerick about this image",
635
  "https://upload.wikimedia.org/wikipedia/commons/thumb/0/0a/Places_to_visit_in_Vietnam_-_SOTC.jpg/640px-Places_to_visit_in_Vietnam_-_SOTC.jpg",
636
  [], []
637
  )
 
617
  img_example1_btn = gr.Button("Run it", size="sm")
618
 
619
  # Example 2
620
+ gr.Markdown("Example 2: **Analyze the chart and extract data to a JSON**")
621
  gr.Image("https://upload.wikimedia.org/wikipedia/commons/thumb/0/0a/Places_to_visit_in_Vietnam_-_SOTC.jpg/640px-Places_to_visit_in_Vietnam_-_SOTC.jpg", label="Preview")
622
  img_example2_btn = gr.Button("Run it", size="sm")
623
 
624
  # Define handlers for image examples
625
  def run_image_example1():
626
  return process_image_example_direct(
627
+ "Write a limerick about this image",
628
  "https://upload.wikimedia.org/wikipedia/commons/thumb/3/31/Hanoi_Temple_of_Literature.jpg/640px-Hanoi_Temple_of_Literature.jpg",
629
  [], []
630
  )
631
 
632
  def run_image_example2():
633
  return process_image_example_direct(
634
+ "Analyze the chart and extract data to a JSON",
635
  "https://upload.wikimedia.org/wikipedia/commons/thumb/0/0a/Places_to_visit_in_Vietnam_-_SOTC.jpg/640px-Places_to_visit_in_Vietnam_-_SOTC.jpg",
636
  [], []
637
  )