Nikhil0987 commited on
Commit
f9b50c9
·
verified ·
1 Parent(s): 10b9f8f

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -36,7 +36,7 @@ def visual_qna():
36
  img = load_image()
37
  if img:
38
  if query := st.chat_input("Enter your message"):
39
- response = model(question=query, image=img,max_length= 50)
40
  with st.chat_message("assistant"):
41
  st.write(response)
42
  else:
 
36
  img = load_image()
37
  if img:
38
  if query := st.chat_input("Enter your message"):
39
+ response = model(question=query, image=img,max_new_tokens= 50)
40
  with st.chat_message("assistant"):
41
  st.write(response)
42
  else: