Update app.py
Browse files
app.py
CHANGED
@@ -58,4 +58,15 @@ if submit:
|
|
58 |
image_data = input_image_setup(uploaded_file)
|
59 |
response=get_gemini_response(input_prompt,image_data, input)
|
60 |
st.subheader("Output :")
|
61 |
-
st.write(response)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
58 |
image_data = input_image_setup(uploaded_file)
|
59 |
response=get_gemini_response(input_prompt,image_data, input)
|
60 |
st.subheader("Output :")
|
61 |
+
st.write(response)
|
62 |
+
|
63 |
+
st.Examples (examples =
|
64 |
+
[
|
65 |
+
[
|
66 |
+
"./examples/Business_card.jpg",
|
67 |
+
],
|
68 |
+
[
|
69 |
+
"./examples/Business_card10.jpg",
|
70 |
+
]
|
71 |
+
]
|
72 |
+
)
|