Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -43,7 +43,7 @@ def launch(input):
|
|
43 |
instruction=input,
|
44 |
response="",
|
45 |
)
|
46 |
-
out = gemma_lm.generate(prompt, max_length=
|
47 |
ind = out.index('Response') + len('Response')+2
|
48 |
return out[ind:]
|
49 |
|
|
|
43 |
instruction=input,
|
44 |
response="",
|
45 |
)
|
46 |
+
out = gemma_lm.generate(prompt, max_length=256)
|
47 |
ind = out.index('Response') + len('Response')+2
|
48 |
return out[ind:]
|
49 |
|