saa231 commited on
Commit
30f2e8e
·
verified ·
1 Parent(s): 727b8c6

Update project_model.py

Browse files
Files changed (1) hide show
  1. 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
- image=session.annotated_image,
208
- question=question,
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