harishnair04 commited on
Commit
1fa9cf0
1 Parent(s): b56bfa5

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -48,7 +48,7 @@ def respond(input):
48
  instruction=input,
49
  response="",
50
  )
51
- out = gemma_model.generate(prompt, max_length=1024)
52
  ind = out.index('Response') + len('Response')+2
53
  return out[ind:]
54
 
 
48
  instruction=input,
49
  response="",
50
  )
51
+ out = gemma_model.generate(prompt, max_length=128)
52
  ind = out.index('Response') + len('Response')+2
53
  return out[ind:]
54