placed strip(' ') with a space
Browse files
app.py
CHANGED
@@ -35,9 +35,9 @@ def output_list(output: list):
|
|
35 |
and returns it as a string as a response
|
36 |
"""
|
37 |
output_text = " ".join(output)
|
38 |
-
clean_output = output_text.strip("")
|
39 |
|
40 |
-
return
|
41 |
|
42 |
# Place just input pass and return generation output
|
43 |
def llama_generation(input_text: str,
|
|
|
35 |
and returns it as a string as a response
|
36 |
"""
|
37 |
output_text = " ".join(output)
|
38 |
+
clean_output = output_text.strip(" ")
|
39 |
|
40 |
+
return clean_output
|
41 |
|
42 |
# Place just input pass and return generation output
|
43 |
def llama_generation(input_text: str,
|