Update project_model.py
Browse files- project_model.py +2 -2
project_model.py
CHANGED
|
@@ -204,8 +204,8 @@ def process_inputs(
|
|
| 204 |
|
| 205 |
# Sends current image and current question to Gemma 3
|
| 206 |
gemma_output = gemma_pipe(
|
| 207 |
-
|
| 208 |
-
|
| 209 |
max_new_tokens=500
|
| 210 |
)
|
| 211 |
|
|
|
|
| 204 |
|
| 205 |
# Sends current image and current question to Gemma 3
|
| 206 |
gemma_output = gemma_pipe(
|
| 207 |
+
images=session.annotated_image,
|
| 208 |
+
text=question,
|
| 209 |
max_new_tokens=500
|
| 210 |
)
|
| 211 |
|