Spaces:
Runtime error
Runtime error
update method
Browse files
app.py
CHANGED
@@ -34,4 +34,4 @@ def generate(text: str,n: int):
|
|
34 |
output = pipe("contexto: "+text,num_return_sequences=n,num_beams=n)
|
35 |
|
36 |
# Return the generated text in a JSON response
|
37 |
-
return {"output": [output[i]["generated_text"] for i in len(output)]}
|
|
|
34 |
output = pipe("contexto: "+text,num_return_sequences=n,num_beams=n)
|
35 |
|
36 |
# Return the generated text in a JSON response
|
37 |
+
return {"output": [output[i]["generated_text"] for i in range(len(output))]}
|