jayparmar0109 commited on
Commit
bbea512
·
verified ·
1 Parent(s): 69dc581

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +5 -1
app.py CHANGED
@@ -30,7 +30,11 @@ def input_image_setup(uploaded_file): # Check if a file has been uploaded
30
  st.set_page_config(page_title="Gemini Image Demo")
31
 
32
  st.header("Generative AI : Business Card Reader")
33
- st.text("This space is based on Google generative ai API and it uses Gemini pro vision model to extract text data from business card images. You can use your own images for input or find sample images in example folder of files section in this space. You can add input prompt below if you want to get specific imnformation from image. You can modify this space for other input like invoice.")
 
 
 
 
34
  uploaded_file = st.file_uploader("Choose an image...", type=["jpg", "jpeg", "png"])
35
  image=""
36
  if uploaded_file is not None:
 
30
  st.set_page_config(page_title="Gemini Image Demo")
31
 
32
  st.header("Generative AI : Business Card Reader")
33
+ st.text("""This space is based on Google generative ai API and it uses Gemini pro vision model
34
+ to extract text data from business card images. You can use your own images for input
35
+ or find sample images in example folder of files section in this space.
36
+ You can add input prompt below if you want to get specific imnformation from image.
37
+ You can modify this space for other input like invoice.""")
38
  uploaded_file = st.file_uploader("Choose an image...", type=["jpg", "jpeg", "png"])
39
  image=""
40
  if uploaded_file is not None: