sandz7 commited on
Commit
f123c86
Β·
1 Parent(s): 2ed6783

placed strip(' ') with a space

Browse files
Files changed (1) hide show
  1. app.py +2 -2
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 output_text
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,