ziyadsuper2017 commited on
Commit
bdedc35
·
1 Parent(s): d351071

Multiple image support

Browse files
Files changed (1) hide show
  1. app.py +23 -23
app.py CHANGED
@@ -84,30 +84,30 @@ uploaded_files = st.file_uploader("Upload one or more images here", type=["png",
84
  # Text input for asking questions about the images
85
  image_question = st.text_input("Ask something about the images:")
86
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
87
  # Loop through the uploaded files and display them
88
  for uploaded_file in uploaded_files:
89
  # Display the image
90
  st.image(uploaded_file)
91
-
92
- # Check if the user has entered a question
93
- if image_question:
94
- image_parts = [
95
- {
96
- "mime_type": uploaded_file.type,
97
- "data": uploaded_file.read()
98
- },
99
- ]
100
-
101
- prompt_parts = [
102
- image_question,
103
- image_parts[0],
104
- ]
105
-
106
- model = genai.GenerativeModel(
107
- model_name="gemini-pro-vision",
108
- generation_config=generation_config,
109
- safety_settings=safety_settings
110
- )
111
-
112
- response = model.generate_content(prompt_parts)
113
- st.markdown(f"**Model's answer for {uploaded_file.name}:** {response.text}")
 
84
  # Text input for asking questions about the images
85
  image_question = st.text_input("Ask something about the images:")
86
 
87
+ # Check if the user has entered a question
88
+ if image_question:
89
+ # Create a list of image parts from the uploaded files
90
+ image_parts = []
91
+ for uploaded_file in uploaded_files:
92
+ image_parts.append({
93
+ "mime_type": uploaded_file.type,
94
+ "data": uploaded_file.read()
95
+ })
96
+
97
+ # Create a prompt parts list with the question and the image parts
98
+ prompt_parts = [image_question] + image_parts
99
+
100
+ # Use the gemini-pro-vision model to generate a response
101
+ model = genai.GenerativeModel(
102
+ model_name="gemini-pro-vision",
103
+ generation_config=generation_config,
104
+ safety_settings=safety_settings
105
+ )
106
+
107
+ response = model.generate_content(prompt_parts)
108
+ st.markdown(f"**Model's answer:** {response.text}")
109
+
110
  # Loop through the uploaded files and display them
111
  for uploaded_file in uploaded_files:
112
  # Display the image
113
  st.image(uploaded_file)